/* ============================================================
   FARM DECATHLON — OFFICIAL STYLESHEET
   Cadet, Missouri | Est. 2025
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Barlow:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold: #F5C518;
  --gold-dim: #c9a010;
  --gold-pale: rgba(245,197,24,0.1);
  --red: #D92B2B;
  --red-bright: #ff4444;
  --green: #3dd68c;
  --bg-black: #080808;
  --bg-dark: #0f0f0f;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;
  --bg-section: #111111;
  --border: rgba(255,255,255,0.1);
  --border-gold: rgba(245,197,24,0.3);
  --border-bright: rgba(245,197,24,0.7);
  /* contrast-corrected text */
  --text-white: #FFFFFF;
  --text-bright: #f5f0e8;
  --text-off-white: #d8d0be;
  --text-muted: #a09080;
  --text-dim: #706860;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-height: 64px;
  --shadow: 0 4px 24px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 32px rgba(245,197,24,0.18);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.5);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-black);
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-white); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--text-white);
}

p { color: var(--text-bright); line-height: 1.7; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav-logo .trophy-icon { font-size: 1.4rem; }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0 1rem;
  height: var(--nav-height);
  line-height: var(--nav-height);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--gold);
  z-index: 999;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 1rem 2rem;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-off-white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:hover { color: var(--gold); background: rgba(245,197,24,0.05); }

/* ── PAGE WRAPPER ── */
.page-content { padding-top: var(--nav-height); }

/* ── HERO SECTION ── */
/* ═══════════════════════════════════════════
   CINEMATIC HERO
═══════════════════════════════════════════ */

/* Ken Burns — slow drift, alternating */
@keyframes heroKenBurns {
  0%   { transform: scale(1.12) translate(0px,   0px); }
  100% { transform: scale(1.0)  translate(-8px, -4px); }
}
/* Entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroRevealTitle {
  from { opacity: 0; transform: translateY(40px) scaleY(0.92); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0)    scaleY(1);    filter: blur(0);   }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);  }
  50%       { transform: translateX(-50%) translateY(7px); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #080808;
  padding: 6rem 2rem 8rem;
}

/* Layer 1 — photo (Ken Burns, overshoots edges) */
.hero-bg {
  position: absolute;
  inset: -6%;
  background-image: url('images/hero/group1.jpg');
  background-size: cover;
  background-position: center 30%; /* overridden by applyFocalPoints() */
  background-repeat: no-repeat;
  opacity: 0.48;
  z-index: 0;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

/* Layer 2 — static gradient overlay (doesn't animate with photo) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 100% at 50% 50%,
      transparent 35%, rgba(8,8,8,0.6) 100%),
    linear-gradient(to bottom,
      rgba(8,8,8,0.65)  0%,
      rgba(8,8,8,0.1)  28%,
      rgba(8,8,8,0.1)  55%,
      rgba(8,8,8,0.78) 78%,
      rgba(8,8,8,0.97) 100%);
}

/* Layer 3 — red atmospheric glow */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 20%,
    rgba(217,43,43,0.13) 0%, transparent 65%);
}

/* Layer 4 — scanline grain */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,         transparent         2px,
    rgba(0,0,0,0.055)   2px,
    rgba(0,0,0,0.055)   4px
  );
}

/* Layer 5 — content above everything */
.hero > *:not(.hero-bg):not(.hero-overlay):not(.hero-glow):not(.hero-scanlines) {
  position: relative;
  z-index: 4;
}

/* ── Staggered entrance ── */
.hero-eyebrow   { animation: heroFadeUp      0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.hero-title     { animation: heroRevealTitle 0.95s cubic-bezier(0.22,1,0.36,1) 0.35s both; }
.hero-rule      { animation: heroFadeIn      0.6s ease                         0.75s both; }
.hero-subtitle  { animation: heroFadeUp      0.7s cubic-bezier(0.22,1,0.36,1) 0.9s  both; }
.hero-tagline   { animation: heroFadeUp      0.7s cubic-bezier(0.22,1,0.36,1) 1.1s  both; }
.hero-stats     { animation: heroFadeUp      0.7s cubic-bezier(0.22,1,0.36,1) 1.3s  both; }
.hero-cta-group { animation: heroFadeUp      0.7s cubic-bezier(0.22,1,0.36,1) 1.5s  both; }
.hero-scroll-cue {
  animation:
    heroFadeIn        1s   ease       2s    both,
    heroScrollBounce  2.2s ease-in-out 3s   infinite;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

/* ── Title ── */
.hero-title {
  font-size: clamp(4.5rem, 17vw, 11.5rem);
  color: var(--white);
  line-height: 0.87;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow:
    0 0  80px rgba(245,197,24,0.2),
    0 2px 40px rgba(0,0,0,0.95),
    0 0   1px rgba(255,255,255,0.08);
}
.hero-title .gold {
  color: var(--gold);
  display: block;
  text-shadow:
    0 0  60px rgba(245,197,24,0.45),
    0 2px 40px rgba(0,0,0,0.9);
}

/* ── Gold rule ── */
.hero-rule {
  display: block;
  width: 72px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.75rem auto 1.5rem;
  border: none;
  opacity: 0.65;
}

/* ── Subtitle ── */
.hero-subtitle {
  font-family: var(--font-condensed);
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}

/* ── Tagline ── */
.hero-tagline {
  font-family: var(--font-condensed);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 600;
  color: rgba(245,197,24,0.85);
  margin-bottom: 3.5rem;
}

/* ── Stats bar ── */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
}

.hero-stat {
  text-align: center;
  padding: 1.1rem 2.5rem;
  position: relative;
}
.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255,255,255,0.08);
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat .label {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-top: 0.25rem;
}

.hero-divider { display: none; }

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Scroll cue ── */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
  text-decoration: none;
  cursor: default;
}
.hero-scroll-label {
  font-family: var(--font-condensed);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid rgba(255,255,255,0.25);
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  margin-top: -3px;
}



/* page-hero with secondary hero image (inner pages) */
.page-hero-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-black);
}
.page-hero-img .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.page-hero-img .page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero-img > *:not(.page-hero-bg) { position: relative; z-index: 1; }

/* ── COUNTDOWN ── */
.countdown-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.countdown-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-unit {
  text-align: center;
}

.countdown-unit .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.countdown-unit .unit-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
}
.btn-gold:hover { background: white; color: #000; transform: scale(1.03); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }

.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover { background: var(--red-bright); }

/* ── SECTION CONTAINERS ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-section); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-white);
  line-height: 1;
}

.section-title .accent { color: var(--gold); }

.section-subtitle {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0;
}
.centered .gold-divider { margin: 1rem auto; }

/* ── TICKER ── */
.ticker-bar {
  background: var(--gold);
  color: #000;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: ticker 40s linear infinite;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-content span { margin: 0 3rem; }
.ticker-content .dot { color: var(--red); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CALLOUT CARDS (HOME) ── */
.callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.callout-card {
  background: var(--bg-card);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.callout-card:hover { background: var(--bg-card-hover); }

.callout-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.callout-card.gold::before { background: var(--gold); }
.callout-card.red::before { background: var(--red); }
.callout-card.green::before { background: var(--green); }
.callout-card.white::before { background: var(--text-white); }

.callout-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.callout-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.callout-title {
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.callout-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── HEADLINES ── */
.headlines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.headline-card {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.headline-card:hover { background: var(--bg-card-hover); border-color: var(--red); }

.headline-tag {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.headline-text {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.headline-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── PLAYER CARDS ── */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.player-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.player-card.champion { border-top-color: var(--gold); }
.player-card.contender { border-top-color: var(--red); }
.player-card.dark-horse { border-top-color: #7c5cbf; }

.player-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.player-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.player-header { margin-bottom: 1rem; }

.player-badge {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-bottom: 0.4rem;
  background: var(--red);
  color: white;
}
.player-badge.gold { background: var(--gold); color: #000; }
.player-badge.purple { background: #7c5cbf; }
.player-badge.blue { background: #2980b9; }
.player-badge.green { background: #27ae60; }
.player-badge.orange { background: #e67e22; }

.player-name {
  font-size: 2rem;
  color: var(--text-white);
  line-height: 1;
}

.player-nickname {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.player-archetype {
  font-family: var(--font-condensed);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}

.stat-block { }

.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.stat-value {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-off-white);
}

.stat-value.good { color: var(--green); }
.stat-value.bad { color: var(--red-bright); }

.meter-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 4px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}
.meter-fill.gold { background: var(--gold); }
.meter-fill.red { background: var(--red); }
.meter-fill.green { background: var(--green); }

.player-scouting {
  background: rgba(0,0,0,0.3);
  border-left: 2px solid var(--gold-dim);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.player-knowfor {
  margin: 1rem 0;
}

.knowfor-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.knowfor-item .bullet { color: var(--gold); flex-shrink: 0; }

.odds-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-section);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}

.odds-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.odds-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

/* ── EVENTS PAGE ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,197,24,0.25);
  transform: translateY(-3px);
  border-color: rgba(245,197,24,0.3);
}

.event-header {
  background: var(--bg-section);
  padding: 1.2rem 1.5rem;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(245,197,24,0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.event-icon { font-size: 1.8rem; flex-shrink: 0; }

.event-name {
  font-size: 1.4rem;
  color: var(--text-white);
  line-height: 1.1;
}

.event-body { padding: 1.5rem; }

/* ── Event photo banner ─────────────────────────────────────────
   Sits between the event card header and body.
   Uses aspect-ratio so the container scales naturally at all widths.
   object-position is set per-image inline by renderEventCards(). */
.event-img-banner {
  width: 100%;
  aspect-ratio: 16 / 9;   /* consistent ratio at all screen sizes */
  overflow: hidden;
  position: relative;
  background: var(--bg-section);
  border-radius: 0;        /* inherits card's overflow:hidden */
  display: block;
}
.event-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* fallback; overridden inline per image */
  display: block;
  opacity: 0.9;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  transform: scale(1.0);           /* no pre-scale — full image visible by default */
}
.event-img-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0)   0%,
    rgba(10,10,10,0.08) 55%,
    rgba(10,10,10,0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* Subtle zoom on card hover — stays within the container */
.event-card:hover .event-img-banner img {
  opacity: 1;
  transform: scale(1.03);
}
/* Placeholder for events without photos */
.event-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(245,197,24,0.04),
      rgba(245,197,24,0.04) 10px,
      transparent 10px,
      transparent 20px
    ),
    linear-gradient(135deg, rgba(217,43,43,0.12) 0%, rgba(10,10,10,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.event-img-placeholder .placeholder-icon {
  font-size: 3rem;
  line-height: 1;
  opacity: 0.6;
}
.event-img-placeholder .placeholder-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,197,24,0.4);
}

/* Large player photo on profile pages */
.player-photo-large {
  width: 100%;
  height: 360px;       /* taller so portrait photos have breathing room */
  overflow: hidden;
  position: relative;
  background: var(--bg-section);
  border-bottom: 3px solid var(--gold);
}
.player-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* fallback — overridden per-player by applyFocalPoints() */
  display: block;
  opacity: 0.92;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.02); /* reduced — less zoom = less crop */
}
.player-photo-large:hover img { transform: scale(1); }
.player-photo-large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0) 30%,
    rgba(10,10,10,0.7) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.player-photo-large.red-tint { border-bottom-color: var(--red); }
.player-photo-large.purple-tint { border-bottom-color: #7c5cbf; }
.player-photo-large.orange-tint { border-bottom-color: #e67e22; }
.player-photo-large.blue-tint { border-bottom-color: #2980b9; }

.event-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.event-meta-item { }

.meta-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.meta-value {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-off-white);
}

.chaos-meter { margin: 1rem 0; }

.chaos-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.chaos-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.chaos-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.commissioner-note {
  background: rgba(217,43,43,0.08);
  border: 1px solid rgba(217,43,43,0.25);
  border-left: 3px solid var(--red);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
}

.commissioner-note strong {
  color: var(--red);
  font-style: normal;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.event-cancelled .event-header {
  border-bottom-color: var(--red);
  opacity: 0.8;
}
.cancelled-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-left: auto;
}

/* ── HISTORY PAGE ── */
.history-hero {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.1) 0%, transparent 60%),
    var(--bg-dark);
  border-bottom: 2px solid var(--gold);
  padding: 5rem 0 3rem;
  text-align: center;
}

.history-hero .year-stamp {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  color: rgba(245,197,24,0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.results-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead {
  background: var(--bg-section);
}

th {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

td {
  padding: 0.75rem 1rem;
  color: var(--text-off-white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

tr:hover td { background: rgba(245,197,24,0.03); }

td.winner-cell { 
  color: var(--gold); 
  font-weight: 600;
  font-family: var(--font-condensed);
}

td.note-cell {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-black);
}

.timeline-time {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── STANDINGS BOARD ── */
.standings-board {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.standings-header {
  background: var(--bg-section);
  padding: 1rem 1.5rem;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.standings-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 1rem;
  transition: background 0.2s;
}

.standings-row:hover { background: rgba(245,197,24,0.03); }
.standings-row.champion-row { background: rgba(245,197,24,0.05); }

.standings-rank {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dim);
  width: 40px;
  flex-shrink: 0;
  text-align: center;
}

.standings-rank.first { color: var(--gold); }
.standings-rank.second { color: #C0C0C0; }
.standings-rank.third { color: #CD7F32; }

.standings-info { flex: 1; }
.standings-name { font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; color: var(--text-white); }
.standings-detail { font-size: 0.8rem; color: var(--text-dim); }

.standings-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

/* ── TRASH TALK PAGE ── */
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.quote-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(245,197,24,0.1);
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.quote-attribution {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.quote-attribution .speaker { color: var(--gold); }

.odds-board {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.odds-board-header {
  background: var(--red);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.05em;
}

.odds-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.odds-name {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.odds-line {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}

.odds-line.favorite { color: var(--green); }
.odds-line.longshot { color: var(--red-bright); }

/* ── PREDICTIONS PAGE ── */
.ranking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  border-left: 4px solid var(--border);
  transition: border-color 0.2s;
}

.ranking-card:hover { border-left-color: var(--gold); }
.ranking-card.rank-1 { border-left-color: var(--gold); background: rgba(245,197,24,0.04); }
.ranking-card.rank-2 { border-left-color: #C0C0C0; }
.ranking-card.rank-3 { border-left-color: #CD7F32; }

.rank-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
  text-align: center;
}

.rank-1 .rank-number { color: rgba(245,197,24,0.3); }

.rank-info { flex: 1; }

.rank-name {
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.rank-tagline {
  font-family: var(--font-condensed);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.rank-analysis {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.superlatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.superlative-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-top: 3px solid var(--red);
}

.superlative-title {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.superlative-winner {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.superlative-reason {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.upset-alert {
  background: rgba(217,43,43,0.08);
  border: 1px solid rgba(217,43,43,0.3);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.upset-header {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upset-text {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.upset-detail { font-size: 0.9rem; color: var(--text-muted); }

/* ── WAYS TO WIN TABLE ── */
.ways-to-win {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.ways-header {
  background: var(--bg-section);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.ways-player-name {
  font-size: 1.4rem;
  color: var(--text-white);
  flex: 1;
}

.ways-body {
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.way-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.way-check { color: var(--green); flex-shrink: 0; }

/* ── ROAD TO CADET ── */
/* ── IMAGE BAND (full-width parallax strip) ── */
.img-band {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-band-bg {
  position: absolute;
  inset: -20% 0;          /* extra height so parallax has room */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  will-change: transform;
}
.img-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.img-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
/* action1 band */
.img-band-action1 .img-band-bg {
  background-image: url('images/hero/action1.jpg');
}
/* action2 band */
.img-band-action2 .img-band-bg {
  background-image: url('images/hero/action2.jpg');
}
/* group2 band */
.img-band-group2 .img-band-bg {
  background-image: url('images/hero/group2.jpg');
}

/* ── HOMEPAGE EVENT PHOTO TILES ── */
/* ── Event tile (homepage grid) ─────────────────────────────────
   Compact clickable tiles on the homepage event grid.
   Uses the same 16/9 ratio as the event card banners for consistency. */
.event-tile {
  position: relative;
  aspect-ratio: 16 / 9;   /* matches event-img-banner ratio */
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  display: block;
  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}
.event-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.55);
  border-color: rgba(245,197,24,0.35);
}
.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* fallback; overridden inline per image */
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.0);           /* no pre-scale */
}
.event-tile:hover img {
  transform: scale(1.04);          /* subtle zoom only on hover */
}
.event-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0) 25%, rgba(10,10,10,0.82) 100%);
  pointer-events: none;
}
.event-tile-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}
.event-tile-icon {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
}
.event-tile-name {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
/* Placeholder tiles (no photo) */
.event-tile-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.event-tile-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.55);
}
/* Skeet tile special red border */
.event-tile.skeet-tile { border-color: rgba(217,43,43,0.4); }
.event-tile.skeet-tile:hover { border-color: rgba(217,43,43,0.7); }
.event-tile-cancelled-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  background: var(--red);
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  padding: 2px 7px;
}

/* ── PHOTO-FORWARD PLAYER CARD (homepage) ── */
.player-card-photo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.player-card-photo:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,197,24,0.2);
  transform: translateY(-4px);
}
.player-card-photo.champion { border-top-color: var(--gold); }
.player-card-photo.contender { border-top-color: var(--red); }
.player-card-photo.dark-horse { border-top-color: #7c5cbf; }
.player-card-photo.sleeper { border-top-color: #2980b9; }
.player-card-photo.talker { border-top-color: #e67e22; }

.pcp-img {
  position: relative;
  height: 240px;       /* taller for better portrait framing */
  overflow: hidden;
  flex-shrink: 0;
}
.pcp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* fallback — overridden per-player by renderHomePlayers() */
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.02); /* reduced — less zoom = less crop */
}
.player-card-photo:hover .pcp-img img {
  transform: scale(1);
}
.pcp-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0) 30%,
    rgba(10,10,10,0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* badge floated over the image */
.pcp-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}
.pcp-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcp-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.pcp-nickname {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.pcp-archetype {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pcp-quote {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}
.pcp-odds {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pcp-odds-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pcp-odds-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.road-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--gold);
  padding: 3rem 0 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-org {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-links a:hover { color: var(--gold); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.08) 0%, transparent 60%),
    var(--bg-dark);
  border-bottom: 2px solid var(--gold);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--text-white);
}

.page-hero-sub {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── TROPHY / BANNER ── */
.champion-banner {
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(245,197,24,0.05));
  border: 2px solid var(--gold);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.champion-banner::before,
.champion-banner::after {
  content: '🏆';
  position: absolute;
  font-size: 6rem;
  opacity: 0.06;
  top: 50%;
  transform: translateY(-50%);
}
.champion-banner::before { left: -1rem; }
.champion-banner::after { right: -1rem; }

.champion-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.champion-name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gold);
  text-shadow: 0 0 30px rgba(245,197,24,0.4);
}

.champion-detail {
  font-family: var(--font-condensed);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── INFO BOX ── */
.info-box {
  background: rgba(245,197,24,0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-box strong { color: var(--gold); }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.two-col-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── STORYLINE CARDS ── */
.storyline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-left: 4px solid var(--red);
  margin-bottom: 1rem;
}

.storyline-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(217,43,43,0.2);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.storyline-title {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.storyline-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BADGE CHIP ── */
.chip {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid currentColor;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.chip-gold { color: var(--gold); border-color: var(--gold); }
.chip-red { color: var(--red-bright); border-color: var(--red-bright); }
.chip-green { color: var(--green); border-color: var(--green); }
.chip-muted { color: var(--text-dim); border-color: var(--text-dim); }

/* ── RIVALRY BLURB ── */
.rivalry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.rivalry-matchup {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rivalry-vs {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.1em;
}

.rivalry-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .headlines-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-even { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: 1fr; }
  .ways-body { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 1rem; }
  .hero-divider { display: none; }
  .countdown-timer { gap: 1.2rem; }
  .stat-row { grid-template-columns: 1fr; }
  .event-meta { grid-template-columns: 1fr; }
  .superlatives-grid { grid-template-columns: 1fr; }
  .callout-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s ease-in-out infinite;
  margin-right: 6px;
}

.fade-up { animation: fadeUp 0.6s ease forwards; }

/* ── MISC UTILITY ── */
.text-gold { color: var(--gold); }
.text-red { color: var(--red-bright); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-half { margin-bottom: 0.5rem; }

/* ══════════════════════════════════════════
   REVISION PACK — CONTRAST + PREMIUM SPORTS
   ══════════════════════════════════════════ */

/* ── Brighter muted text everywhere ── */
.knowfor-item,
.timeline-desc,
.event-desc,
.player-scouting,
.storyline-body,
.callout-body {
  color: var(--text-bright);
}
.meta-value,
.stat-value,
.standings-detail,
.note-cell,
.footer-disclaimer {
  color: var(--text-off-white);
}
.meta-label,
.stat-label,
.section-eyebrow,
.odds-label,
.chaos-label span:first-child,
.commissioner-note,
.timeline-time {
  color: var(--text-muted);
}

/* ── Section spacing bump ── */
.section { padding: 5rem 0; }
.section-alt { padding: 5rem 0; }

/* ── Stronger section headers ── */
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--text-white);
  margin-bottom: 0.15rem;
}
.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0;
}
.section-header.centered .gold-divider { margin: 1rem auto; }

/* ── Upgraded info-box ── */
.info-box {
  background: #121212;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-bright);
  line-height: 1.65;
}

/* ── Stronger callout cards ── */
.callout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.25s, box-shadow 0.25s;
}
.callout-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.callout-body { color: var(--text-bright); font-size: 0.9rem; line-height: 1.65; }
.callout-title { color: var(--text-white); }

/* ── Upgraded player card (profile pages) ── */
.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.player-card .stat-label { color: var(--text-muted); font-size: 0.72rem; }
.player-card .stat-value { color: var(--text-bright); }
.player-card .stat-value.good { color: var(--green); }
.player-card .stat-value.bad  { color: var(--red-bright); }

/* ── Player profile card layout — NO avatar overlap ── */
.player-profile-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1.5rem;
  padding: 1.75rem 1.75rem 0;
  flex-wrap: wrap;
}
.player-profile-meta { min-width: 0; }
.player-profile-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.player-profile-body { padding: 1.25rem 1.75rem 1.75rem; }
.player-name-block { margin-bottom: 0.5rem; }

/* ── Bigger, bolder odds display ── */
.odds-display {
  background: #0a0a0a;
  border: 1px solid var(--border-gold);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 140px;
}
.odds-label {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}
.odds-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

/* ── Dramatic stat blocks ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.stat-block {
  background: var(--bg-section);
  padding: 1rem 1.25rem;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  display: block;
}
.stat-value {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
}
.stat-value.num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

/* ── Chaos factor badge (inline pill) ── */
.chaos-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border: 1px solid;
}
.chaos-badge.low    { color: var(--green);      border-color: rgba(61,214,140,0.4); background: rgba(61,214,140,0.07); }
.chaos-badge.medium { color: var(--gold);       border-color: rgba(245,197,24,0.4); background: rgba(245,197,24,0.07); }
.chaos-badge.high   { color: #ff9f1c;           border-color: rgba(255,159,28,0.4); background: rgba(255,159,28,0.07); }
.chaos-badge.extreme{ color: var(--red-bright); border-color: rgba(255,68,68,0.4);  background: rgba(255,68,68,0.07);  }

/* ── Contender callout strip ── */
.contender-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(245,197,24,0.05);
  border-left: 3px solid var(--gold);
  margin: 1rem 0;
}
.contender-strip-label {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 0.25rem;
  flex-shrink: 0;
}
.contender-pill {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.15rem 0.6rem;
  letter-spacing: 0.05em;
}
.contender-pill.defending { background: rgba(245,197,24,0.12); border-color: rgba(245,197,24,0.3); color: var(--gold); }
.contender-pill.threat    { background: rgba(217,43,43,0.12);  border-color: rgba(217,43,43,0.3);  color: var(--red-bright); }

/* ── 2026 Storyline block ── */
.event-storyline {
  background: #0e0e0e;
  border-left: 3px solid var(--red);
  padding: 1rem 1.25rem;
  margin: 1rem 0 0;
}
.event-storyline-label {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.4rem;
}
.event-storyline p {
  font-size: 0.9rem;
  color: var(--text-bright);
  line-height: 1.65;
  margin: 0;
}

/* ── Upgraded chaos meter ── */
.chaos-meter { margin: 1.25rem 0; }
.chaos-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.chaos-label span:last-child { color: var(--gold); font-weight: 900; }
.chaos-bar { height: 5px; background: rgba(255,255,255,0.08); }
.chaos-fill { height: 100%; background: linear-gradient(to right, var(--gold-dim), var(--gold)); transition: width 1.2s cubic-bezier(0.25,0.46,0.45,0.94); }
.chaos-fill.red { background: linear-gradient(to right, var(--red), var(--red-bright)); }

/* ── Upgraded event meta grid ── */
.event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.event-meta-item {
  background: var(--bg-section);
  padding: 0.75rem 1rem;
}
.meta-label {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}
.meta-value {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.3;
}

/* ── Commissioner note ── */
.commissioner-note {
  background: rgba(245,197,24,0.04);
  border: 1px solid rgba(245,197,24,0.15);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-off-white);
  line-height: 1.6;
  margin-top: 1rem;
}
.commissioner-note strong {
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

/* ── Standings board ── */
.standings-board { border: 1px solid var(--border); overflow: hidden; }
.standings-header {
  background: #0a0a0a;
  border-bottom: 2px solid var(--gold);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.standings-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-card);
}
.standings-row.champion-row { background: rgba(245,197,24,0.05); }
.standings-rank {
  font-family: var(--font-display);
  font-size: 2rem;
  min-width: 2.5rem;
  text-align: center;
  color: var(--text-dim);
  line-height: 1;
}
.standings-rank.first  { color: var(--gold); }
.standings-rank.second { color: #c0c0c0; }
.standings-rank.third  { color: #cd7f32; }
.standings-name   { font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; color: var(--text-white); }
.standings-detail { font-family: var(--font-condensed); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }
.standings-score  { margin-left: auto; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }

/* ── Champion banner ── */
.champion-banner {
  background: linear-gradient(135deg, rgba(245,197,24,0.1) 0%, rgba(245,197,24,0.03) 100%);
  border: 1px solid rgba(245,197,24,0.3);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.champion-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.champion-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(245,197,24,0.3);
}
.champion-detail {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Timeline ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(245,197,24,0.1));
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-black);
}
.timeline-time {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.timeline-desc { font-size: 0.9rem; color: var(--text-bright); line-height: 1.65; }

/* ── Quote / scouting callout ── */
.scouting-quote {
  background: rgba(0,0,0,0.4);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-bright);
  font-size: 0.95rem;
  line-height: 1.65;
}
.scouting-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ── Chip / tag badges ── */
.chip {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border: 1px solid;
  margin: 0.2rem 0.2rem 0.2rem 0;
  text-transform: uppercase;
}
.chip-gold   { color: var(--gold);       border-color: rgba(245,197,24,0.35); background: rgba(245,197,24,0.07); }
.chip-red    { color: var(--red-bright); border-color: rgba(255,68,68,0.35);  background: rgba(255,68,68,0.07);  }
.chip-muted  { color: var(--text-off-white); border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.chip-blue   { color: #60a5fa;           border-color: rgba(96,165,250,0.35); background: rgba(96,165,250,0.07); }

/* ── Known For list ── */
.knowfor-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: var(--text-bright);
  line-height: 1.5;
}
.knowfor-item:last-child { border-bottom: none; }
.bullet { color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 0.15rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--text-white);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}
.page-hero-sub {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  color: var(--text-off-white);
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto;
}
.text-gold { color: var(--gold); }

/* ── Headline cards ── */
.headline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.headline-card:hover { background: var(--bg-card-hover); border-left-color: var(--gold); }
.headline-tag {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.35rem;
}
.headline-text {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}
.headline-sub { font-size: 0.85rem; color: var(--text-off-white); }

/* ── Results table ── */
.results-table-wrap { overflow-x: auto; }
.results-table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.results-table-wrap th {
  background: #0a0a0a;
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border-gold);
}
.results-table-wrap td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-bright);
}
.results-table-wrap tr:hover td { background: rgba(255,255,255,0.02); }
.winner-cell { color: var(--gold) !important; font-family: var(--font-condensed); font-weight: 700; }
.note-cell   { color: var(--text-off-white); font-size: 0.85rem; }

/* ── Page-hero history section ── */
.history-hero {
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Tiebreaker dramatic block ── */
.tiebreaker-drama {
  background: linear-gradient(135deg, rgba(217,43,43,0.08) 0%, rgba(245,197,24,0.06) 100%);
  border: 1px solid rgba(245,197,24,0.2);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.tiebreaker-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.tiebreaker-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
}
.tiebreaker-wins {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.tiebreaker-divider {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-dim);
}
.tiebreaker-verdict {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}


