/* Кастомные анимации для lifemindcircut */

/* Анимация роста */
@keyframes grow {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-grow {
  animation: grow 0.6s ease-out;
}

/* Fade in/out */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in;
}

.animate-fade-out {
  animation: fadeOut 0.5s ease-out;
}

/* Мерцание */
@keyframes shimmer {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.animate-shimmer {
  animation: shimmer 2s ease-in-out infinite;
}

/* Пульсация данных */
@keyframes data-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.animate-data-pulse {
  animation: data-pulse 2s ease-in-out infinite;
}

/* Неоновое свечение для аналитики */
@keyframes analytical-glow {
  0%, 100% {
    text-shadow: 0 0 5px #06B6D4, 0 0 10px #06B6D4, 0 0 15px #06B6D4;
  }
  50% {
    text-shadow: 0 0 10px #22C55E, 0 0 20px #22C55E, 0 0 30px #22C55E;
  }
}

.animate-analytical-glow {
  animation: analytical-glow 2s ease-in-out infinite;
}

/* Плавающая анимация */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Появление снизу */
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

/* Пульсация */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.animate-pulse-custom {
  animation: pulse 2s ease-in-out infinite;
}

/* Вращение градиента */
@keyframes rotate-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: rotate-gradient 3s ease infinite;
}

/* Появление с масштабированием */
@keyframes scale-in {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-scale-in {
  animation: scale-in 0.4s ease-out;
}

/* Задержки для последовательного появления */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

