/* ═══════════════════════════════════════════════════════════════
   KICKOFF — LIGHT GAMING ANIMATIONS
═══════════════════════════════════════════════════════════════ */

/* ─── PAGE TRANSITIONS ──────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── LIVE PULSE ────────────────────────────────────────────── */
@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ─── FLOAT ─────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── BOUNCE IN ─────────────────────────────────────────────── */
@keyframes bounceIn {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  80%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}

/* ─── NUMBER POP ────────────────────────────────────────────── */
@keyframes numberPop {
  0%   { transform: scale(0.3) rotate(-10deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); }
}

/* ─── CONFETTI FALL ─────────────────────────────────────────── */
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(220px) rotate(720deg); opacity: 0; }
}

/* ─── FLOAT UP (XP) ─────────────────────────────────────────── */
@keyframes floatUp {
  0%   { transform: translate(-50%, -50%); opacity: 1; }
  100% { transform: translate(-50%, -180%); opacity: 0; }
}

/* ─── SHIMMER ───────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── SLIDE IN FROM RIGHT ───────────────────────────────────── */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── LIVE CARD SUBTLE BOUNCE ───────────────────────────────── */
.live-card {
  animation: liveCardPulse 2.5s ease-in-out infinite;
}
@keyframes liveCardPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
  50%       { box-shadow: 0 8px 32px rgba(242,27,63,0.2), 0 4px 12px rgba(0,0,0,0.08); }
}

/* ─── HIDDEN ────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ─── MODAL ENTRANCE FALLBACK ───────────────────────────────── */
.bonus-modal,
.create-league-sheet,
.auth-modal-sheet,
.modal-sheet { animation: bounceIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* ─── GRADIENT SHIMMER ON LOGO ──────────────────────────────── */
.logo-text {
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

/* ─── FIXTURE ROW STAGGER ───────────────────────────────────── */
.fixture-row { animation: fadeInUp 0.3s ease both; }
