/* ==========================================================================
   DREAD ELEVEN (DE) — ATHLETIC BRUTALISM & MENACING PRECISION
   Awwwards & Dribbble Studio Grade ($4,000+ Custom Build)
   Palette: Void Black (#050505), Acid Volt (#d4ff00), Trophy Gold (#f59e0b), Stadium White (#ffffff)
   Strict Constraint: ABSOLUTELY ZERO BLUE. Pitch Void, Acid Volt, and Molten Gold.
   ========================================================================== */

:root {
  /* Surfaces & Void (Strictly Zero Blue) */
  --c-void: #050505;
  --c-surface: #0c0c0c;
  --c-surface-elevated: #121212;
  --c-card-bg: #181818;
  --c-card-hover: #222222;

  /* Brand Accents */
  --c-volt: #d4ff00;
  --c-volt-bright: #e2ff33;
  --c-volt-dim: #a6cc00;
  --c-volt-glow: rgba(212, 255, 0, 0.35);

  --c-gold: #f59e0b;
  --c-gold-bright: #fbbf24;
  --c-gold-glow: rgba(245, 158, 11, 0.3);

  --c-emerald: #10b981;
  --c-crimson: #ff334b;
  --c-white: #ffffff;
  --c-gray-100: #f4f4f4;
  --c-gray-300: #d4d4d4;
  --c-gray-400: #a0a0a0;
  --c-gray-600: #555555;
  --c-gray-800: #2a2a2a;

  /* Hairlines & Borders */
  --b-subtle: rgba(255, 255, 255, 0.08);
  --b-medium: rgba(255, 255, 255, 0.16);
  --b-strong: rgba(255, 255, 255, 0.28);
  --b-volt: rgba(212, 255, 0, 0.45);

  /* Typography Stack */
  --f-athletic: 'Syne', sans-serif;
  --f-display: 'Bebas Neue', sans-serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  /* Layout & Easings */
  --max-w: 1360px;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--c-void);
  color: var(--c-gray-100);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: var(--c-void);
}

/* ==========================================================================
   PROCEDURAL 24FPS FILM GRAIN & NOISE FOREGROUND OVERLAY
   ========================================================================== */
#film-grain-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999999;
  opacity: 0.16;
  mix-blend-mode: overlay;
}

/* Interactive Cursor Spotlight Aura Layer */
.interactive-spotlight-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    700px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(212, 255, 0, 0.045),
    transparent 70%
  );
}

.content-wrapper {
  position: relative;
  z-index: 3;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tabular {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ==========================================================================
   TOP BROADCAST TICKER HUD
   ========================================================================== */
.top-broadcast-ticker {
  background: #030303;
  border-bottom: 1px solid var(--b-medium);
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-gray-300);
}

.ticker-tag {
  background: var(--c-surface-elevated);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.25rem;
  border-right: 1px solid var(--b-medium);
  flex-shrink: 0;
  color: var(--c-volt);
  text-transform: uppercase;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-volt);
  box-shadow: 0 0 10px var(--c-volt);
  animation: beaconPulse 1.8s infinite ease-in-out;
}

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

.ticker-marquee-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.ticker-marquee-inner {
  display: inline-flex;
  gap: 2.5rem;
  animation: marqueeLoop 34s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gray-300);
}

.ticker-item strong {
  color: var(--c-white);
}

.ticker-item .score-win {
  color: var(--c-volt);
  font-weight: 800;
}

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

.ticker-controls {
  padding: 0 1rem;
  border-left: 1px solid var(--b-medium);
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.grain-toggle-pill {
  background: var(--c-surface-elevated);
  border: 1px solid var(--b-subtle);
  color: var(--c-gray-400);
  font-family: var(--f-mono);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all 0.2s var(--ease-snappy);
}

.grain-toggle-pill.active {
  color: var(--c-volt);
  border-color: var(--b-volt);
  background: rgba(212, 255, 0, 0.08);
}

/* ==========================================================================
   FRANCHISE HEADER NAVIGATION
   ========================================================================== */
.site-header {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--b-medium);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-crest {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--c-white);
}

.brand-crest-symbol {
  width: 44px;
  height: 44px;
  background: var(--c-surface-elevated);
  border: 1px solid var(--b-volt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-athletic);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--c-volt);
  box-shadow: 0 0 15px rgba(212, 255, 0, 0.15);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-main-title {
  font-family: var(--f-athletic);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-white);
}

.brand-sub-title {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  color: var(--c-gray-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  font-family: var(--f-athletic);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-gray-300);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-xs);
  transition: all 0.2s var(--ease-snappy);
}

.nav-link:hover,
.nav-link.active {
  color: var(--c-volt);
  background: rgba(212, 255, 0, 0.07);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-toggle {
  display: none;
  background: var(--c-surface-elevated);
  border: 1px solid var(--b-medium);
  color: var(--c-white);
  padding: 0.5rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS & BRUTALIST PILLS
   ========================================================================== */
.btn-athletic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-athletic);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all 0.25s var(--ease-snappy);
  border: 1px solid transparent;
}

.btn-volt {
  background: var(--c-volt);
  color: #050505;
  border-color: var(--c-volt);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.25);
}

.btn-volt:hover {
  background: var(--c-volt-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(212, 255, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: var(--b-medium);
}

.btn-outline:hover {
  border-color: var(--c-volt);
  color: var(--c-volt);
  background: rgba(212, 255, 0, 0.06);
}

.btn-gold {
  background: var(--c-gold);
  color: #050505;
  border-color: var(--c-gold);
}

.btn-gold:hover {
  background: var(--c-gold-bright);
  transform: translateY(-2px);
}

.badge-brutalist {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--b-medium);
}

.badge-volt {
  background: rgba(212, 255, 0, 0.1);
  color: var(--c-volt);
  border-color: var(--b-volt);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.1);
  color: var(--c-gold);
  border-color: rgba(245, 158, 11, 0.35);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 5rem 0 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.hero-badge-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-giant-title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.text-volt {
  color: var(--c-volt);
}

.hero-manifesto {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-gray-300);
  max-width: 58ch;
  margin-bottom: 2.25rem;
}

.hero-manifesto strong {
  color: var(--c-white);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Live Match Countdown HUD */
.hero-countdown-card {
  background: var(--c-surface);
  border: 1px solid var(--b-medium);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  max-width: 520px;
}

.countdown-pretitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.countdown-digits-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.countdown-box {
  background: var(--c-card-bg);
  border: 1px solid var(--b-subtle);
  padding: 0.75rem 0.9rem;
  text-align: center;
  min-width: 68px;
  border-radius: var(--radius-xs);
}

.countdown-number {
  font-family: var(--f-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--c-white);
}

.countdown-label {
  font-family: var(--f-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  color: var(--c-gray-400);
  margin-top: 0.25rem;
}

.countdown-colon {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--c-volt);
}

/* Captain Hero Spotlight Card */
.captain-hero-card {
  background: var(--c-surface);
  border: 1px solid var(--b-medium);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.captain-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.captain-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  color: var(--c-volt);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.captain-hero-name {
  font-family: var(--f-athletic);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.captain-hero-role {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  color: var(--c-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.captain-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--b-subtle);
  border-bottom: 1px solid var(--b-subtle);
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
}

.captain-stat-item {
  text-align: left;
}

.captain-stat-val {
  font-family: var(--f-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--c-white);
}

.captain-stat-val.volt {
  color: var(--c-volt);
}

.captain-stat-val.gold {
  color: var(--c-gold);
}

.captain-stat-lbl {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  color: var(--c-gray-400);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ==========================================================================
   RIVALRY BAROMETER STRIP (DE VS DES)
   ========================================================================== */
.rivalry-barometer-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--b-medium);
  border-bottom: 1px solid var(--b-medium);
  padding: 3rem 0;
}

.barometer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.barometer-title-group h2 {
  font-family: var(--f-athletic);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-white);
}

.barometer-title-group p {
  font-size: 0.9rem;
  color: var(--c-gray-400);
}

.rivalry-track {
  height: 32px;
  background: #121212;
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-xs);
  display: flex;
  overflow: hidden;
  margin-bottom: 2rem;
}

.rivalry-fill-de {
  background: linear-gradient(90deg, #d4ff00, #a6cc00);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: #050505;
  white-space: nowrap;
}

.rivalry-fill-des {
  background: linear-gradient(90deg, #cc3700, #ff4500);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

.rivalry-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.rivalry-metric-card {
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}

.metric-title {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  color: var(--c-gray-400);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.metric-values {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.metric-de {
  font-family: var(--f-athletic);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-volt);
}

.metric-des {
  font-family: var(--f-athletic);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ff5c1a;
}

/* ==========================================================================
   MATCHES GRID & CARD DESIGN
   ========================================================================== */
.matches-section {
  padding: 4rem 0;
}

.section-masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-pretitle {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-volt);
  margin-bottom: 0.5rem;
}

.section-bigtitle {
  font-family: var(--f-athletic);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--c-white);
}

.filters-toolbar {
  background: var(--c-surface);
  border: 1px solid var(--b-medium);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-gray-400);
  margin-right: 0.25rem;
}

.filter-pill-btn {
  background: var(--c-card-bg);
  border: 1px solid var(--b-subtle);
  color: var(--c-gray-300);
  font-family: var(--f-athletic);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all 0.2s var(--ease-snappy);
}

.filter-pill-btn:hover {
  border-color: var(--b-volt);
  color: var(--c-white);
}

.filter-pill-btn.active {
  background: var(--c-volt);
  color: #050505;
  border-color: var(--c-volt);
  box-shadow: 0 0 12px rgba(212, 255, 0, 0.25);
}

.search-input-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.search-input-field {
  width: 100%;
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.875rem;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border-radius: var(--radius-xs);
  outline: none;
  transition: border-color 0.2s var(--ease-snappy);
}

.search-input-field:focus {
  border-color: var(--c-volt);
  box-shadow: 0 0 12px rgba(212, 255, 0, 0.15);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-gray-400);
  pointer-events: none;
}

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

.match-card {
  background: var(--c-surface);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--ease-snappy);
  position: relative;
  overflow: hidden;
}

.match-card:hover {
  border-color: var(--b-volt);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 255, 0, 0.08);
}

.match-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.match-format-tag {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-volt);
  background: rgba(212, 255, 0, 0.1);
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--b-volt);
  border-radius: var(--radius-xs);
}

.match-stage-text {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
  font-weight: 600;
  text-transform: uppercase;
}

.match-teams-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.team-scoreline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.85rem;
  background: var(--c-card-bg);
  border: 1px solid var(--b-subtle);
  border-radius: var(--radius-xs);
}

.team-scoreline.winner {
  border-color: var(--b-volt);
  background: rgba(212, 255, 0, 0.05);
}

.team-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.team-crest-badge {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-athletic);
  font-weight: 900;
  font-size: 0.75rem;
  border-radius: var(--radius-xs);
}

.crest-de {
  background: var(--c-surface-elevated);
  border: 1px solid var(--b-volt);
  color: var(--c-volt);
}

.crest-des {
  background: var(--c-surface-elevated);
  border: 1px solid rgba(255, 69, 0, 0.4);
  color: #ff5c1a;
}

.team-name-text {
  font-family: var(--f-athletic);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-white);
}

.team-score-text {
  font-family: var(--f-athletic);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--c-white);
}

.team-overs-text {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
  font-weight: 500;
  margin-left: 0.25rem;
}

.match-result-banner {
  background: var(--c-surface-elevated);
  border: 1px solid var(--b-subtle);
  padding: 0.6rem 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gray-300);
  margin-bottom: 1.25rem;
  border-radius: var(--radius-xs);
}

.match-potm-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--b-subtle);
  padding-top: 1rem;
}

.potm-badge {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gold);
  font-weight: 700;
}

.match-card-link-cta {
  font-family: var(--f-athletic);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-volt);
  text-transform: uppercase;
}

/* ==========================================================================
   SQUAD PLAYERS GRID & JERSEY CARDS
   ========================================================================== */
.players-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.jersey-player-card {
  background: var(--c-surface);
  border: 1px solid var(--b-medium);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--ease-snappy);
}

.jersey-player-card:hover {
  border-color: var(--b-volt);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 255, 0, 0.1);
}

.jersey-big-number {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  font-family: var(--f-display);
  font-size: 8.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  font-weight: 900;
  pointer-events: none;
  z-index: 0;
  transition: color 0.2s var(--ease-snappy);
}

.jersey-player-card:hover .jersey-big-number {
  color: rgba(212, 255, 0, 0.08);
}

.jersey-player-role {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  color: var(--c-volt);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.jersey-player-name {
  font-family: var(--f-athletic);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.jersey-player-subtitle {
  font-size: 0.8125rem;
  color: var(--c-gray-400);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.jersey-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--b-subtle);
  padding-top: 1rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.jersey-stat-val {
  font-family: var(--f-athletic);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--c-white);
}

.jersey-stat-lbl {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  color: var(--c-gray-400);
  text-transform: uppercase;
}

/* ==========================================================================
   SCORECARD TABLES
   ========================================================================== */
.scorecard-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-sm);
}

.cricket-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.cricket-table th {
  background: var(--c-surface-elevated);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-gray-300);
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--b-medium);
}

.cricket-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--b-subtle);
  color: var(--c-gray-100);
}

.cricket-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   PODIUM GRID (STATS & RECORDS)
   ========================================================================== */
.stats-podium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.podium-card {
  background: var(--c-surface);
  border: 1px solid var(--b-medium);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.podium-volt {
  border-color: var(--b-volt);
  box-shadow: 0 0 25px rgba(212, 255, 0, 0.12);
}

.podium-rank-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  background: var(--c-volt);
  color: #050505;
  font-family: var(--f-athletic);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
}

/* ==========================================================================
   FOOTER & MOBILE DOCK
   ========================================================================== */
.site-footer {
  background: #030303;
  border-top: 1px solid var(--b-medium);
  padding: 5rem 0 3rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--f-athletic);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--c-gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s var(--ease-snappy);
}

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

.footer-bottom {
  border-top: 1px solid var(--b-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile Floating Bottom Dock */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--b-medium);
  height: 60px;
  z-index: 1000;
  padding: 0 0.5rem;
  justify-content: space-around;
  align-items: center;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--c-gray-400);
  text-decoration: none;
  font-family: var(--f-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem;
  transition: color 0.2s var(--ease-snappy);
}

.dock-item:hover,
.dock-item.active {
  color: var(--c-volt);
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   DIGITAL STADIUM SUITE — AWWWARDS / BROADCAST GRAPHICS ENGINE
   ========================================================================== */

/* Stadium Floodlight Cones */
.stadium-floodlight-left,
.stadium-floodlight-right {
  position: absolute;
  top: -150px;
  width: 650px;
  height: 800px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  filter: blur(40px);
}

.stadium-floodlight-left {
  left: -150px;
  background: radial-gradient(circle at 10% 10%, rgba(215, 255, 0, 0.45) 0%, rgba(215, 255, 0, 0.08) 50%, transparent 80%);
  transform: rotate(-15deg);
}

.stadium-floodlight-right {
  right: -150px;
  background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.35) 0%, rgba(215, 255, 0, 0.06) 50%, transparent 80%);
  transform: rotate(15deg);
}

/* Digital Stadium Hero */
.digital-stadium-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--b-strong);
  background: 
    radial-gradient(ellipse at 50% 100%, rgba(215, 255, 0, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
    #050505;
}

.stadium-crest-halo {
  position: relative;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stadium-crest-halo .brand-monogram-shield {
  width: 110px;
  height: 110px;
  font-size: 3.5rem;
  box-shadow: 0 0 50px rgba(215, 255, 0, 0.25);
  border-width: 3px;
}

.stadium-giant-headline {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 13vw, 12.5rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hunt-begins-tagline {
  font-family: var(--f-mono);
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.35em;
  color: var(--c-volt);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hunt-begins-tagline::before,
.hunt-begins-tagline::after {
  content: '';
  height: 2px;
  width: 40px;
  background: var(--c-volt);
}

.stadium-next-match-cockpit {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--b-strong);
  border-radius: var(--radius-sm);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  max-width: 820px;
  width: 100%;
}

.cockpit-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.cockpit-team .team-code {
  font-family: var(--f-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}

.cockpit-team .team-sub {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-gray-400);
}

.cockpit-vs {
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--c-volt);
  background: #050505;
  padding: 0.4rem 1rem;
  border: 1px solid var(--b-volt);
  border-radius: var(--radius-xs);
}

.cockpit-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.2rem;
  border-left: 1px solid var(--b-medium);
  padding-left: 2rem;
}

.cockpit-meta-date {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-white);
}

.cockpit-meta-venue {
  font-size: 0.8rem;
  color: var(--c-gray-400);
}

.scroll-stadium-cue {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-gray-400);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.2s var(--ease-snappy);
}

.scroll-stadium-cue:hover {
  color: var(--c-volt);
}

/* The Live Pulse Match Centre Strip */
.live-pulse-section {
  background: #030303;
  border-bottom: 1px solid var(--b-strong);
  padding: 1rem 0;
  position: sticky;
  top: 74px;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.live-pulse-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.live-broadcast-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.broadcast-live-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--c-white);
  background: var(--c-card-bg);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-xs);
}

.broadcast-score-line {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.team-score-block {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.team-score-block.batting .team-code {
  color: var(--c-volt);
}

.team-score-block .team-code {
  font-family: var(--f-athletic);
  font-weight: 900;
  font-size: 1.1rem;
}

.team-score-block .score-main {
  font-family: var(--f-mono);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--c-white);
}

.team-score-block .overs-text {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--c-gray-400);
}

.broadcast-target-chip {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--c-gray-300);
}

/* Season 2026 Horizontal Timeline */
.season-timeline-section {
  padding: 4.5rem 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--b-medium);
}

.season-timeline-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.timeline-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  color: var(--c-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.2s var(--ease-snappy);
}

.timeline-scroll-btn:hover {
  border-color: var(--c-volt);
  color: var(--c-volt);
}

.season-timeline-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-behavior: smooth;
}

.season-timeline-track::-webkit-scrollbar {
  height: 6px;
}

.season-timeline-track::-webkit-scrollbar-thumb {
  background: var(--c-gray-800);
  border-radius: 3px;
}

.timeline-match-node {
  flex: 0 0 310px;
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s var(--ease-snappy);
  text-decoration: none;
  color: inherit;
}

.timeline-match-node:hover {
  transform: translateY(-4px);
  border-color: var(--c-volt);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.timeline-node-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.timeline-status-pill {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
}

.timeline-status-pill.win {
  background: rgba(16, 185, 129, 0.15);
  color: var(--c-emerald);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.timeline-status-pill.loss {
  background: rgba(255, 42, 68, 0.15);
  color: var(--c-crimson);
  border: 1px solid rgba(255, 42, 68, 0.4);
}

.timeline-status-pill.next {
  background: rgba(215, 255, 0, 0.15);
  color: var(--c-volt);
  border: 1px solid var(--b-volt);
}

.timeline-node-scores {
  margin-bottom: 1rem;
}

.timeline-scores-line {
  font-family: var(--f-mono);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 0.35rem;
}

.timeline-node-detail {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
}

/* FIFA / Cricket 24 Player Profile Components */
.fifa-player-card {
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s var(--ease-snappy);
  text-decoration: none;
  color: inherit;
}

.fifa-player-card:hover {
  border-color: var(--c-volt);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.fifa-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.fifa-ovr-badge {
  background: #050505;
  border: 2px solid var(--c-volt);
  border-radius: var(--radius-xs);
  padding: 0.35rem 0.65rem;
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-volt);
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.fifa-ovr-badge small {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-white);
}

.player-form-badge {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
}

.player-form-badge.hot {
  background: rgba(215, 255, 0, 0.15);
  color: var(--c-volt);
  border: 1px solid var(--b-volt);
}

.player-form-badge.warm {
  background: rgba(245, 158, 11, 0.15);
  color: var(--c-gold);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.player-form-badge.steady {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-gray-300);
  border: 1px solid var(--b-subtle);
}

.fifa-card-body {
  margin-bottom: 1.25rem;
}

.fifa-card-name {
  font-family: var(--f-athletic);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 0.25rem;
}

.fifa-card-role {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
}

.fifa-attributes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  background: #0c0c0c;
  padding: 1rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--b-subtle);
  margin-bottom: 1.25rem;
}

.fifa-attr-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.75rem;
}

.fifa-attr-label {
  color: var(--c-gray-400);
}

.fifa-attr-val {
  font-weight: 800;
  color: var(--c-white);
}

.fifa-form-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--c-volt);
}

/* Ball-by-Ball Commentary Module */
.ball-timeline-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.ball-timeline-label {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gray-400);
  white-space: nowrap;
}

.ball-timeline-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ball-timeline-pill {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: #0c0c0c;
  border: 1px solid var(--b-medium);
  color: var(--c-white);
  font-family: var(--f-mono);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-snappy);
}

.ball-timeline-pill:hover,
.ball-timeline-pill.active {
  background: var(--c-volt);
  color: #050505;
  border-color: var(--c-volt);
}

.commentary-feed {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.commentary-item {
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: all 0.3s var(--ease-snappy);
}

.commentary-item.highlighted {
  border-color: var(--c-volt);
  background: #202020;
  box-shadow: 0 0 25px rgba(215, 255, 0, 0.25);
}

.commentary-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.commentary-ball-number {
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c-volt);
}

.commentary-badge {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
}

.commentary-badge.FOUR {
  background: rgba(16, 185, 129, 0.2);
  color: var(--c-emerald);
}

.commentary-badge.SIX {
  background: rgba(245, 158, 11, 0.2);
  color: var(--c-gold);
}

.commentary-badge.WICKET {
  background: rgba(255, 42, 68, 0.2);
  color: var(--c-crimson);
}

.commentary-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-gray-300);
}

/* Command Palette Modal (⌘K) */
#cmd-palette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(16px);
  z-index: 1000000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}

#cmd-palette.open {
  display: flex;
}

.cmd-palette-modal {
  width: 100%;
  max-width: 640px;
  background: #101010;
  border: 1px solid var(--b-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.cmd-palette-header {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--b-medium);
  gap: 1rem;
}

.cmd-palette-icon {
  font-size: 1.25rem;
  color: var(--c-volt);
}

#cmd-palette-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 1.1rem;
}

#cmd-palette-input::placeholder {
  color: var(--c-gray-600);
}

.cmd-palette-esc {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-xs);
  color: var(--c-gray-400);
}

#cmd-palette-results {
  max-height: 420px;
  overflow-y: auto;
  padding: 0.75rem;
}

.cmd-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-xs);
  color: var(--c-gray-300);
  text-decoration: none;
  transition: all 0.15s var(--ease-snappy);
}

.cmd-result-item:hover,
.cmd-result-item.focused {
  background: var(--c-card-hover);
  color: var(--c-white);
}

.cmd-item-icon {
  font-size: 1.1rem;
}

.cmd-item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cmd-item-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.cmd-item-type {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-gray-400);
}

.cmd-item-enter {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--c-gray-600);
}

.cmd-no-results {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--c-gray-400);
  font-size: 0.95rem;
}

/* League Control Room Points Table */
.league-control-room-hero {
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-sm);
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.control-room-scenario-bar {
  flex: 1;
  min-width: 280px;
}

.scenario-title-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--c-white);
  margin-bottom: 0.6rem;
}

.scenario-progress-track {
  width: 100%;
  height: 8px;
  background: #050505;
  border-radius: 4px;
  overflow: hidden;
}

.scenario-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-volt));
  border-radius: 4px;
}

/* noth.in Inspired Sound Button & Equalizer */
.btn-stadium-sound {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0c0c0c;
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-xs);
  padding: 0.35rem 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  color: var(--c-gray-300);
  cursor: pointer;
  transition: all 0.2s var(--ease-snappy);
}
.btn-stadium-sound:hover,
.btn-stadium-sound.active {
  border-color: var(--c-volt);
  color: var(--c-volt);
  background: rgba(215, 255, 0, 0.08);
}
.eq-bars-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.eq-bar {
  width: 2px;
  height: 4px;
  background: var(--c-gray-400);
  border-radius: 1px;
}
.btn-stadium-sound.active .eq-bar {
  background: var(--c-volt);
  animation: eqBounce 0.8s ease-in-out infinite alternate;
}
.btn-stadium-sound.active .eq-bar:nth-child(1) { animation-delay: 0.1s; height: 10px; }
.btn-stadium-sound.active .eq-bar:nth-child(2) { animation-delay: 0.3s; height: 12px; }
.btn-stadium-sound.active .eq-bar:nth-child(3) { animation-delay: 0.2s; height: 7px; }
.btn-stadium-sound.active .eq-bar:nth-child(4) { animation-delay: 0.4s; height: 11px; }
@keyframes eqBounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1.0); }
}

/* noth.in Inspired Kinetic Manifesto Block */
.kinetic-manifesto-section {
  padding: 6rem 0;
  background: #030303;
  border-top: 1px solid var(--b-strong);
  border-bottom: 1px solid var(--b-strong);
  overflow: hidden;
  position: relative;
}
.kinetic-manifesto-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.bracket-tag {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--c-volt);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}
.kinetic-lines-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 2.5rem;
}
.kinetic-line {
  font-family: var(--f-display);
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  user-select: none;
  transition: color 0.3s var(--ease-snappy), transform 0.3s var(--ease-snappy);
}
.kinetic-line:hover {
  color: var(--c-white);
  transform: translateX(12px);
}
.kinetic-line.focus {
  color: var(--c-volt);
}
.manifesto-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
  border-top: 1px solid var(--b-medium);
  padding-top: 3rem;
}
.manifesto-lead-statement {
  font-family: var(--f-athletic);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  color: var(--c-white);
  text-transform: uppercase;
}
.manifesto-body-prose {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-gray-300);
}
.manifesto-body-prose p {
  margin-bottom: 1.25rem;
}

/* noth.in Inspired Giant Footer Vector Wordmark */
.giant-footer-svg-wrap {
  width: 100%;
  padding-top: 4rem;
  overflow: hidden;
  border-top: 1px solid var(--b-subtle);
  margin-top: 3rem;
}
.giant-footer-svg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.12;
  transition: opacity 0.3s var(--ease-snappy);
}
.giant-footer-svg:hover {
  opacity: 0.35;
}

@media (max-width: 1024px) {
  .manifesto-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ==========================================================================
   FIXES & MISSING COMPONENTS (Zero Blue & Complete Visual Integrity)
   ========================================================================== */

/* Brand Monogram Shield Base */
.brand-monogram-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  border: 2px solid var(--c-volt);
  color: var(--c-volt);
  font-family: var(--f-athletic);
  font-weight: 900;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  box-shadow: 0 0 35px rgba(215, 255, 0, 0.2);
}

/* Header Live Navigation Pill */
.nav-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 42, 68, 0.12);
  border: 1px solid rgba(255, 42, 68, 0.35);
  border-radius: var(--radius-xs);
  padding: 0.45rem 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-crimson);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.2s var(--ease-snappy);
}
.nav-live-pill:hover {
  background: rgba(255, 42, 68, 0.22);
  border-color: var(--c-crimson);
  box-shadow: 0 0 15px rgba(255, 42, 68, 0.35);
}

/* Header Search & Cmd+K Button */
.header-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111111;
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-xs);
  padding: 0.45rem 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-300);
  cursor: pointer;
  transition: all 0.2s var(--ease-snappy);
}
.header-search-btn:hover {
  border-color: var(--c-volt);
  color: var(--c-white);
  background: #181818;
}
.header-search-btn .search-icon {
  font-size: 1rem;
  color: var(--c-volt);
}
.header-search-btn .cmd-kbd {
  background: #050505;
  border: 1px solid var(--b-medium);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
  font-size: 0.6875rem;
  color: var(--c-gray-400);
}

/* Matchday Mode HUD Button */
.matchday-mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0c0c0c;
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-xs);
  padding: 0.35rem 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--c-gray-300);
  cursor: pointer;
  transition: all 0.2s var(--ease-snappy);
  text-transform: uppercase;
}
.matchday-mode-btn:hover,
.matchday-mode-btn.active {
  border-color: var(--c-volt);
  color: var(--c-volt);
  background: rgba(215, 255, 0, 0.08);
}
.matchday-mode-btn.active .pulse-beacon {
  background: var(--c-crimson);
  box-shadow: 0 0 10px var(--c-crimson);
}

/* Red Pulse Beacon */
.pulse-beacon.red {
  background: var(--c-crimson);
  box-shadow: 0 0 8px var(--c-crimson);
}

/* Button Size Variations */
.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.8125rem;
}

/* Match VS Divider */
.match-vs-divider {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--c-volt);
  background: #050505;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--b-volt);
  border-radius: var(--radius-xs);
}

/* Barometer Stats Row */
.barometer-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.barometer-stat-box {
  background: var(--c-card-bg);
  border: 1px solid var(--b-medium);
  border-radius: var(--radius-xs);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s var(--ease-snappy);
}
.barometer-stat-box:hover {
  border-color: var(--b-volt);
}
.barometer-stat-val {
  font-family: var(--f-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--c-white);
  margin-bottom: 0.35rem;
}
.barometer-stat-val.volt {
  color: var(--c-volt);
}
.barometer-stat-val.gold {
  color: var(--c-gold);
}
.barometer-stat-lbl {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
  text-transform: uppercase;
}

/* Mobile Menu Drawer & Items */
.mobile-menu-drawer {
  display: none;
  flex-direction: column;
  background: #080808;
  border-top: 1px solid var(--b-medium);
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}
.mobile-nav-item {
  color: var(--c-gray-300);
  text-decoration: none;
  font-family: var(--f-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--b-subtle);
  transition: color 0.2s;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--c-volt);
}

/* Typography & Utility Helpers */
.font-bold { font-weight: 800; }
.font-mono { font-family: var(--f-mono); }

/* Comprehensive Mobile Media Queries (Under 768px) */
@media (max-width: 768px) {
  .primary-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .mobile-bottom-dock {
    display: flex;
  }
  body {
    padding-bottom: 75px;
  }
  .header-cta-group .btn-athletic {
    display: none;
  }
  .top-broadcast-ticker {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .matches-grid {
    grid-template-columns: 1fr;
  }
  .players-cards-grid {
    grid-template-columns: 1fr;
  }
  .stadium-giant-headline {
    font-size: clamp(3.2rem, 14vw, 5.5rem);
  }
  .stadium-next-match-cockpit {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
  }
  .cockpit-meta {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--b-medium);
    padding-top: 1rem;
    text-align: center;
  }
  .live-broadcast-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   AUTHENTIC BROADCAST DIGITAL STADIUM HERO (ASYMMETRIC SPLIT GRID)
   ========================================================================== */

/* Body Canvas Rich Atmospheric Midnight Stadium Navy */
body {
  background: radial-gradient(circle at 80% 20%, #151d2a 0%, #090c12 60%, #040507 100%) fixed;
  color: var(--c-white);
  min-height: 100vh;
}

/* Brand Crest SVG in Navbar */
.brand-crest-shield-img {
  width: 36px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
  transition: transform 0.2s var(--ease-snappy);
}
.brand-crest:hover .brand-crest-shield-img {
  transform: scale(1.06);
}

/* Broadcast Stadium Hero Container */
.broadcast-stadium-hero {
  position: relative;
  min-height: calc(92vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem 0 0;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, #162030 0%, #0a0d16 55%, #05070c 100%);
  border-bottom: 1px solid var(--b-strong);
}

/* Stadium Floodlight Flare Beam from Top Right */
.stadium-floodlight-flare {
  position: absolute;
  top: -150px;
  right: -80px;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at 85% 15%, rgba(230, 253, 83, 0.16) 0%, rgba(255, 255, 255, 0.07) 30%, rgba(21, 29, 42, 0.5) 60%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

/* 2-Column Asymmetric Grid */
.hero-broadcast-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

/* LEFT COLUMN: Match / Stakes Command */
.hero-command-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.broadcast-overtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.broadcast-pill-badge {
  background: var(--c-volt);
  color: #05070a;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
}

.broadcast-match-round {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gray-300);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.broadcast-giant-title {
  font-family: var(--f-display);
  font-size: clamp(4.2rem, 9vw, 8.5rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.text-metallic {
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 50%, #889BB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.broadcast-subtitle {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  color: var(--c-gray-400);
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}

/* Broadcast Lower-Third Match Hub Slate */
.broadcast-match-slate {
  background: rgba(13, 19, 31, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--c-volt);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.slate-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-gray-400);
  text-transform: uppercase;
}

.slate-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--c-white);
}

.slate-teams-battle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.slate-team-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-meta {
  display: flex;
  flex-direction: column;
}

.team-abbrev {
  font-family: var(--f-display);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

.team-abbrev.volt {
  color: var(--c-volt);
}

.team-fullname {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-gray-400);
}

.team-form-strip {
  display: flex;
  gap: 0.3rem;
}

.form-pill {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-pill.win {
  background: #10b981;
  color: #032e22;
}

.form-pill.loss {
  background: #ef4444;
  color: #3b0707;
}

.slate-vs-badge {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-volt);
  background: #070a10;
  border: 1px solid var(--b-volt);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-xs);
}

.slate-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.slate-timing-spec {
  display: flex;
  flex-direction: column;
  font-family: var(--f-mono);
}

.timing-date {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-white);
}

.timing-time {
  font-size: 0.72rem;
  color: var(--c-gray-400);
}

.btn-broadcast-cta {
  background: var(--c-volt);
  color: #000000;
  font-family: var(--f-mono);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-xs);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s var(--ease-snappy);
}
.btn-broadcast-cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 253, 83, 0.4);
}

/* RIGHT COLUMN: Hero Athlete Cutout & Physical Z-Axis Depth */
.hero-athlete-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 540px;
}

/* Giant Translucent Watermark Behind Athlete */
.athlete-watermark {
  position: absolute;
  top: 5%;
  right: -5%;
  font-family: var(--f-display);
  font-size: clamp(8rem, 16vw, 15rem);
  line-height: 0.78;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 1;
  user-select: none;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.watermark-number {
  color: rgba(230, 253, 83, 0.05);
}

.athlete-visual-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 490px;
  display: flex;
  justify-content: center;
}

.athlete-cutout-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.9));
}

/* Floating Broadcast Player Stat HUD Pinned to Athlete */
.hero-player-stat-hud {
  position: absolute;
  bottom: 25px;
  left: -20px;
  z-index: 3;
  background: rgba(10, 15, 24, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(230, 253, 83, 0.4);
  border-radius: var(--radius-xs);
  padding: 1.15rem 1.35rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
  min-width: 250px;
  text-align: left;
}

.hud-top-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.hud-badge-potm {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--c-volt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hud-jersey-num {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-white);
}

.hud-player-name {
  font-family: var(--f-athletic);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hud-player-role {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  color: var(--c-gray-400);
  margin-bottom: 0.75rem;
}

.hud-telemetry-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.65rem;
  margin-bottom: 0.65rem;
}

.hud-stat-highlight {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-volt);
  line-height: 1;
}
.hud-stat-highlight small {
  font-size: 1rem;
  color: var(--c-gray-400);
}

.hud-stat-secondary {
  display: flex;
  flex-direction: column;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  color: var(--c-gray-300);
}

.hud-form-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
}

.hud-form-label {
  color: var(--c-gray-400);
}

.hud-form-dots {
  color: var(--c-volt);
  letter-spacing: 2px;
}

.hud-form-status {
  background: rgba(230, 253, 83, 0.15);
  color: var(--c-volt);
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.6rem;
}

/* Persistent Live Broadcast Ticker Strip */
.broadcast-live-ticker-strip {
  background: #070a10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
  position: relative;
  z-index: 5;
}

.ticker-flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ticker-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
  white-space: nowrap;
}

.ticker-content-line {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--c-gray-300);
  line-height: 1.4;
  flex: 1;
}

.ticker-highlight {
  color: var(--c-volt);
  font-weight: 800;
}

.ticker-quick-link {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-volt);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.ticker-quick-link:hover {
  color: #ffffff;
}

/* Responsive adjustments for broadcast hero */
@media (max-width: 1024px) {
  .hero-broadcast-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-player-stat-hud {
    left: 0;
    bottom: 0;
  }
  .athlete-watermark {
    font-size: 10rem;
    right: 0;
  }
}

@media (max-width: 768px) {
  .broadcast-giant-title {
    font-size: clamp(3.2rem, 12vw, 5rem);
  }
  .slate-teams-battle {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .slate-vs-badge {
    align-self: center;
  }
  .slate-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .btn-broadcast-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PRODUCTION BROADCAST DIGITAL STADIUM HERO (HIGH-CONTRAST ASYMMETRIC GRID)
   ========================================================================== */

/* Full Broadcast Hero Section */
.broadcast-stadium-hero {
  position: relative;
  min-height: calc(96vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 0 0;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, #162030 0%, #0a0d16 55%, #05070c 100%);
  border-bottom: 1px solid var(--b-strong);
}

/* Diagonal Stadium Floodlight Glare from Top Right */
.stadium-floodlight-flare {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at 85% 15%, rgba(230, 253, 83, 0.22) 0%, rgba(255, 255, 255, 0.08) 25%, rgba(21, 29, 42, 0.45) 55%, transparent 72%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* 2-Column Asymmetric Grid */
.hero-broadcast-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  flex: 1;
}

/* LEFT COLUMN: Dominant Typography & Full-Width Match Hub */
.hero-command-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 2.5rem;
  width: 100%;
}

.broadcast-overtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.broadcast-pill-badge {
  background: var(--c-volt);
  color: #05070a;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
}

.broadcast-match-round {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-gray-300);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Dominant, Ultra-Bold Condensed Typography */
.broadcast-giant-title {
  font-family: var(--f-display);
  font-size: clamp(5.2rem, 10.5vw, 8.8rem);
  line-height: 0.80;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 0.85rem;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.9);
}

.text-metallic {
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 50%, #889BB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.broadcast-subtitle {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-gray-300);
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}

/* Full-Width Broadcast Match Hub Slate */
.broadcast-match-slate {
  background: rgba(13, 19, 31, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--c-volt);
  border-radius: var(--radius-sm);
  padding: 1.75rem 2rem;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.slate-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.slate-status-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--c-white);
}

.slate-ground-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--c-gray-400);
}

.slate-deck-badge {
  background: #080c14;
  border: 1px solid var(--b-medium);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  color: var(--c-volt);
  font-weight: 700;
}

.slate-teams-battle {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.slate-team-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.slate-team-card.des-team {
  align-items: flex-end;
  text-align: right;
}

.team-meta {
  display: flex;
  flex-direction: column;
}

.team-abbrev {
  font-family: var(--f-display);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

.team-abbrev.volt {
  color: var(--c-volt);
}

.team-fullname {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
}

.team-form-strip {
  display: flex;
  gap: 0.3rem;
}

.form-pill {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-pill.win {
  background: #10b981;
  color: #032e22;
}

.form-pill.loss {
  background: #ef4444;
  color: #3b0707;
}

.slate-vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #070a10;
  border: 1px solid var(--b-volt);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xs);
}

.vs-text {
  font-family: var(--f-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--c-volt);
}

.vs-derby-sub {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-gray-400);
}

.slate-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.15rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.slate-timing-spec {
  display: flex;
  flex-direction: column;
  font-family: var(--f-mono);
}

.timing-date {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--c-white);
}

.timing-time {
  font-size: 0.75rem;
  color: var(--c-gray-400);
}

.btn-broadcast-cta {
  background: var(--c-volt);
  color: #000000;
  font-family: var(--f-mono);
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-xs);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s var(--ease-snappy);
}
.btn-broadcast-cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 253, 83, 0.45);
}

/* RIGHT COLUMN: Full-Bleed 85vh Athlete Cutout */
.hero-athlete-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: clamp(620px, 86vh, 880px);
  overflow: visible;
}

/* Giant Translucent Watermark Behind Athlete Shoulders */
.athlete-watermark {
  position: absolute;
  top: 6%;
  right: -5%;
  font-family: var(--f-display);
  font-size: clamp(9rem, 17vw, 16.5rem);
  line-height: 0.75;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  z-index: 1;
  user-select: none;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.watermark-number {
  color: rgba(230, 253, 83, 0.06);
}

.athlete-visual-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Real High-Resolution Transparent Cutout Standing 85vh Tall */
.athlete-cutout-img {
  height: clamp(580px, 85vh, 860px);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95));
}

/* Floating Broadcast Player Telemetry HUD Anchored Over Bottom Corner */
.hero-player-stat-hud {
  position: absolute;
  bottom: 35px;
  left: -25px;
  z-index: 4;
  background: rgba(10, 15, 24, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(230, 253, 83, 0.4);
  border-radius: var(--radius-xs);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  min-width: 270px;
  text-align: left;
}

.hud-top-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.hud-badge-potm {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--c-volt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hud-jersey-num {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--c-white);
}

.hud-player-name {
  font-family: var(--f-athletic);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hud-player-role {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-gray-400);
  margin-bottom: 0.85rem;
}

.hud-telemetry-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.hud-stat-highlight {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-volt);
  line-height: 1;
}
.hud-stat-highlight small {
  font-size: 1.1rem;
  color: var(--c-gray-400);
}

.hud-stat-secondary {
  display: flex;
  flex-direction: column;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-gray-300);
}

.hud-form-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
}

.hud-form-label {
  color: var(--c-gray-400);
}

.hud-form-dots {
  color: var(--c-volt);
  letter-spacing: 2px;
}

.hud-form-status {
  background: rgba(230, 253, 83, 0.15);
  color: var(--c-volt);
  padding: 0.12rem 0.4rem;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.65rem;
}

/* Consolidated Single Sleek Broadcast Score Bug */
.broadcast-score-bug {
  background: #070a10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.score-bug-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bug-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-white);
  white-space: nowrap;
}

.bug-teams {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.bug-team-name.volt {
  color: var(--c-volt);
}

.bug-vs {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-gray-400);
}

.bug-schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-300);
}

.bug-date {
  font-weight: 800;
  color: var(--c-white);
}

.bug-venue {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-gray-400);
}

.bug-pitch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-volt);
  background: rgba(230, 253, 83, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(230, 253, 83, 0.2);
}

.pitch-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-volt);
}

.bug-cta {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-volt);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.bug-cta:hover {
  color: #ffffff;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-broadcast-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-athlete-col {
    min-height: 500px;
  }
  .athlete-cutout-img {
    height: 500px;
  }
  .hero-player-stat-hud {
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .broadcast-giant-title {
    font-size: clamp(3.8rem, 14vw, 5.5rem);
  }
  .slate-teams-battle {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .slate-team-card.des-team {
    align-items: flex-start;
    text-align: left;
  }
  .slate-vs-divider {
    align-self: flex-start;
  }
  .slate-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .btn-broadcast-cta {
    width: 100%;
    justify-content: center;
  }
  .score-bug-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.hud-career-row {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--c-volt);
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

/* ==========================================================================
   PERFECT VIEWPORT CONTAINMENT (PREVENT OVERFLOW & CLIPPING)
   ========================================================================== */

.broadcast-stadium-hero {
  min-height: calc(96vh - 74px) !important;
  max-height: calc(100vh - 74px);
  padding: 1.75rem 0 0 !important;
  overflow: hidden !important;
}

.hero-broadcast-grid {
  align-items: flex-end !important;
  margin-bottom: 0.75rem !important;
  gap: 2.5rem !important;
}

.hero-command-col {
  padding-bottom: 1rem !important;
}

.broadcast-giant-title {
  font-size: clamp(4.2rem, 8vw, 6.8rem) !important;
  line-height: 0.82 !important;
  margin-bottom: 0.5rem !important;
}

.broadcast-subtitle {
  font-size: 0.75rem !important;
  margin-bottom: 1.25rem !important;
}

.broadcast-match-slate {
  padding: 1.25rem 1.5rem !important;
}

.slate-teams-battle {
  margin-bottom: 1rem !important;
  gap: 1.25rem !important;
}

.team-abbrev {
  font-size: 2.25rem !important;
}

/* Athlete Column & Sizing: Perfectly Fitted */
.hero-athlete-col {
  height: 100% !important;
  min-height: 480px !important;
  max-height: calc(90vh - 130px) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  position: relative !important;
  overflow: visible !important;
}

.athlete-visual-wrapper {
  height: 100% !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 2 !important;
}

.athlete-cutout-img {
  max-height: min(580px, calc(82vh - 120px)) !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  display: block !important;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.92)) !important;
}

/* Watermark: Contained on Right */
.athlete-watermark {
  top: 5% !important;
  right: 0% !important;
  font-size: clamp(6.5rem, 13vw, 11rem) !important;
  z-index: 1 !important;
}

/* HUD: Inside Column with Safe Inset */
.hero-player-stat-hud {
  bottom: 15px !important;
  left: 0px !important;
  max-width: 270px !important;
  padding: 1rem 1.25rem !important;
  z-index: 4 !important;
}

.hud-stat-highlight {
  font-size: 1.85rem !important;
}

.hud-player-name {
  font-size: 1.35rem !important;
}

/* Clean Single Score Bug */
.broadcast-score-bug {
  padding: 0.65rem 0 !important;
}

/* Refined Vertical Clearance for Athlete */
.hero-athlete-col {
  padding-top: 2.5rem !important;
  max-height: calc(82vh - 90px) !important;
}

.athlete-cutout-img {
  max-height: min(520px, calc(72vh - 90px)) !important;
  margin-bottom: 0 !important;
}

.hero-player-stat-hud {
  bottom: 10px !important;
  left: 10px !important;
}

/* Ensure Zero Mask Image or Vignette on Athlete */
.athlete-cutout-img {
  mask-image: none !important;
  -webkit-mask-image: none !important;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7)) !important;
}
