/**
 * DDSE CUP 2026 - LIGHT THEME ANIMATION & CONFETTI SUITE
 */

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) rotate(180deg) scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: translateY(105vh) rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

@keyframes goldShimmerLight {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15) drop-shadow(0 0 15px rgba(245, 158, 11, 0.5));
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes statusPulseGreen {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.4;
  }
}

@keyframes countPulseLight {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    color: #F59E0B;
  }
  100% {
    transform: scale(1);
  }
}

.num-updating {
  animation: countPulseLight 0.25s ease-out;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-pulse.live {
  background-color: #16A34A;
  box-shadow: 0 0 8px #22C55E;
  animation: statusPulseGreen 1.5s infinite;
}

.status-pulse.ready {
  background-color: #0284C7;
  box-shadow: 0 0 8px #38BDF8;
  animation: statusPulseGreen 2s infinite;
}

/* Scroll reveal helper */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
