/* Анимации для thoughtdrivenai */

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grow {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse-growth {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate-fade {
  animation: fade-in 0.8s ease-out;
}

.animate-grow {
  animation: grow 1s ease-out;
}

.animate-shimmer {
  background: linear-gradient(90deg, #10B981 0%, #059669 50%, #10B981 100%);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

.animate-pulse-growth {
  animation: pulse-growth 2s ease-in-out infinite;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out;
}

.animate-fade-out {
  animation: fade-out 0.5s ease-out;
}

