@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.45);
  }
  80% {
    box-shadow: 0 0 0 18px rgba(245, 166, 35, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.stagger > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.stagger > *:nth-child(1) {
  animation-delay: 0.1s;
}

.stagger > *:nth-child(2) {
  animation-delay: 0.2s;
}

.stagger > *:nth-child(3) {
  animation-delay: 0.3s;
}

.stagger > *:nth-child(4) {
  animation-delay: 0.4s;
}

.stagger > *:nth-child(5) {
  animation-delay: 0.5s;
}

.burst {
  animation: pulseGlow 2.4s ease-in-out infinite;
}
