:root {
  --gold: #d4af37;
  --gold-bright: #ffcf40;
  --gold-deep: #a67c00;
  --gray: #9ca3af;
  --dark: #0a0a0a;
}

/* ===== WCMAF Official Seal ===== */
.wcmaf-seal {
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45), 0 0 2px rgba(255, 207, 64, 0.8);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wcmaf-seal:hover {
  box-shadow: 0 0 22px rgba(255, 207, 64, 0.7);
  transform: scale(1.04);
}
.wcmaf-seal-hero {
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.55));
  animation: sealFloat 6s ease-in-out infinite, fadeUp 0.9s ease-out both;
}
@keyframes sealFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.wtmaf-wordmark {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.wtmaf-subtitle {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.acma-display {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

/* Section anchor offset for sticky nav */
section { scroll-margin-top: 80px; }

/* Gold glow button */
.gold-glow {
  box-shadow: 0 0 0 rgba(255, 207, 64, 0);
  animation: pulseGlow 2.8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 207, 64, 0.3); }
  50% { box-shadow: 0 0 26px rgba(255, 207, 64, 0.55); }
}

/* Royal gold divider — WCMAF seal palette */
.belt-stripe {
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-deep) 20%, var(--gold-bright) 50%, var(--gold-deep) 80%, transparent 100%);
  box-shadow: 0 0 8px rgba(255, 207, 64, 0.4);
}

/* Inputs */
.acma-input {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: #eee;
  padding: 0.7rem 0.9rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.acma-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}
.acma-input::placeholder { color: #666; }
select.acma-input { cursor: pointer; }

/* Fade up entrance */
.fade-up {
  animation: fadeUp 0.8s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ticker */
.ticker {
  display: inline-block;
  animation: scrollTicker 30s linear infinite;
}
@keyframes scrollTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Premium sports-site effects ===== */

/* Hero Ken Burns slow zoom */
.hero-kenburns {
  animation: kenburns 24s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes kenburns {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.18); }
}

/* Hero vignette + scanlines */
.hero-vignette {
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.12) 0px, rgba(0,0,0,0.12) 1px, transparent 2px, transparent 4px);
}

/* Stat number glow */
.stat-glow {
  text-shadow: 0 0 18px rgba(255, 207, 64, 0.5);
  animation: statPulse 3s ease-in-out infinite;
}
@keyframes statPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(255, 207, 64, 0.35); }
  50% { text-shadow: 0 0 26px rgba(255, 207, 64, 0.7); }
}

/* Card lift with gold shadow on hover */
.card-lift {
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.card-lift:hover {
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.9), 0 0 22px -6px rgba(255, 207, 64, 0.35);
}

/* Champions section atmospheric backdrop */
.champ-bg {
  background:
    radial-gradient(circle at 15% 30%, rgba(193, 18, 31, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.10) 0%, transparent 45%);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .stat-glow, .gold-glow, .wcmaf-seal-hero, .ticker, .hero-kenburns { animation: none !important; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }