/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 20px rgba(93, 224, 164, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(93, 224, 164, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(93, 224, 164, 0.2);
  }
}

@keyframes slowPan {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Utility Classes */
.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow {
  animation: glowPulse 4s infinite;
}