/* Premium animation utilities */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.16); }
  50% { box-shadow: 0 0 60px 12px rgba(212, 175, 55, 0.16); }
}

@keyframes goldParticle {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 0.6; }
  100% { transform: translateY(-220px) scale(1); opacity: 0; }
}

@keyframes revealText {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

.fade-right {
  transform: translateX(45px);
}

.fade-left {
  transform: translateX(-45px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.92s ease, transform 0.92s ease;
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.floating {
  animation: float 12s ease-in-out infinite;
}

.pulse-glow {
  animation: glowPulse 4s ease-in-out infinite;
}

.text-reveal {
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.text-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  animation: revealText 1.1s ease forwards;
}
