/* Лоадер */
.dots-loader { display: flex; gap: 8px; justify-content: center; align-items: center; }
.dots-loader div { width: 10px; height: 10px; background-color: #3498db; border-radius: 50%; animation: dotsBounce 1.4s infinite ease-in-out both; }
.dots-loader div:nth-child(1) { animation-delay: 0s; }
.dots-loader div:nth-child(2) { animation-delay: 0.2s; }
.dots-loader div:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotsBounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* Анимация появления элементов */
.item-animate { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.item-animate.show { opacity: 1; transform: translateY(0); }