/* 1. Combo name light Effect */
@keyframes shineMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.gold-shimmer-text {
  /* Creates a gradient with a bright white/yellow center */
  background: linear-gradient(
    90deg,
    #fbbf24 0%,
    #d97706 25%,
    #fffbeb 50%,
    #d97706 75%,
    #fbbf24 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* The speed of the shine passing through */
  animation: shineMove 4s linear infinite;
}

/* 2. The Soft Slide-Up Reveal */
@keyframes fadeInUpSoft {
  from {
    opacity: 0;
    transform: translateY(15px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.reveal-text {
  opacity: 0; /* Hidden initially */
  animation: fadeInUpSoft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
/* Delays to make it read naturally */
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.5s;
}

/* 3. Explore Combo Animation */
@keyframes shakeLoop {
  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }
  92% {
    transform: rotate(-4deg);
  }
  94% {
    transform: rotate(4deg);
  }
  96% {
    transform: rotate(-3deg);
  }
  98% {
    transform: rotate(3deg);
  }
}

.shake-loop {
  animation: shakeLoop 3s infinite;
  transform-origin: center;
}

/* Heart Motion */
@keyframes gentleScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.animate-scale {
    animation: gentleScale 2s ease-in-out infinite;
}