@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/PlusJakartaSans-Variable.woff2') format('woff2');
}

:root {
  --color-bg: #092E27;
  --color-bg-deep: #06231E;
  --color-bg-soft: #123F35;
  --color-bg-rgb: 9, 46, 39;
  --color-bg-deep-rgb: 6, 35, 30;
  --color-bg-soft-rgb: 18, 63, 53;
  --color-card: #FFFFFF;
  --color-card-soft: #F8FAF7;
  --color-border: rgba(255,255,255,0.12);
  --color-border-dark: #E0E8DF;
  --color-text: #172821;
  --color-text-muted: #647269;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: rgba(255,255,255,0.72);
  --color-accent: #CDE8AE;
  --color-accent-rgb: 205, 232, 174;
  --color-accent-strong: #A8D76F;
  --color-accent-strong-rgb: 168, 215, 111;
  --color-accent-dark: #6E8F63;
  --color-accent-dark-rgb: 110, 143, 99;
  --color-success: #36A95F;
  --color-danger: #D83A34;
  --shadow-rgb: 18, 60, 53;
  --shadow-card: 0 34px 90px rgba(var(--color-bg-deep-rgb),0.34);
  --shadow-soft: 0 10px 30px rgba(var(--shadow-rgb),0.12);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --primary: #123F35;
  --secondary: #2F6D5F;
  --tertiary: #357768;
  --accent: #D6E8BE;
  --accent-dark: #6E8F63;
  --surface: #FFFFFF;
  --surface-warm: #F7FAF4;
  --bg-light: #F5F8F4;
  --border: #E0E8DF;
  --text-dark: #172821;
  --text-muted: #647269;
  --text-white: #FFFFFF;
  --table-head-bg: #EAF4DC;
  --table-row-soft: #F8FAF7;
  --table-row-hover: #EEF6E7;
  --table-row-highlight: #F0F8E4;
  --chip-soft: #ECF5E8;
  --brand-logo-width: 330px;
  --brand-footer-logo-width: 358px;
  --brand-logo-mobile-width: 191px;
  --type-h1: clamp(42px, 4.2vw, 56px);
  --type-h1-leading: 1.03;
  --type-h2: 32px;
  --type-h2-leading: 1.14;
  --type-h3: 24px;
  --type-h3-leading: 1.18;
  --site-max: 1440px;
  --site-gutter: 32px;
  --content-max: 980px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.5;
}
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: 0;
}
h1 { font-size: var(--type-h1); line-height: var(--type-h1-leading); }
h2 { font-size: var(--type-h2); line-height: var(--type-h2-leading); }
h3 { font-size: var(--type-h3); line-height: var(--type-h3-leading); }
a { color: var(--tertiary); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--site-max), calc(100% - var(--site-gutter) - var(--site-gutter))); max-width: none; margin: 0 auto; padding: 0; }

.skip-to-content { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 9999; padding: 12px 24px; background: var(--accent); color: var(--primary); font-weight: 800; }
.skip-to-content:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; }

.main-nav { position: relative; z-index: 100; padding: 0; background: linear-gradient(135deg, var(--color-bg-deep), var(--color-bg-soft)); border-bottom: 1px solid rgba(var(--color-accent-rgb),0.18); box-shadow: 0 10px 28px rgba(var(--color-bg-deep-rgb),0.2); }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 18px; }
.brand-logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; color: var(--color-accent); text-decoration: none; }
.brand-logo:hover { color: var(--color-accent); text-decoration: none; }
.brand-logo-img { display: block; width: min(var(--brand-logo-width), 62vw); max-height: 58px; height: auto; }
.footer-logo .brand-logo-img { width: min(var(--brand-footer-logo-width), 100%); max-height: 66px; }
.brand-mark { width: 52px; height: 52px; display: block; flex-shrink: 0; }
.brand-wordmark { display: inline-flex; align-items: baseline; color: var(--color-text-on-dark); font-weight: 800; font-size: 23px; line-height: 1; letter-spacing: 0; white-space: nowrap; }
.brand-wordmark strong { color: var(--color-accent); font: inherit; }
.nav-table-link { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 0 22px; border-radius: 999px; background: var(--color-accent); color: var(--color-bg-deep); font-weight: 800; font-size: 14px; box-shadow: 0 10px 24px rgba(var(--color-accent-rgb),0.22); }
.nav-table-link img { width: 16px; height: 16px; }
.nav-table-link:hover { background: var(--accent); color: var(--color-bg-deep); text-decoration: none; }

.breadcrumbs { min-height: 42px; display: flex; align-items: center; background: var(--color-bg-soft); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(var(--color-accent-rgb),0.14); }
.breadcrumbs .container { display: flex; align-items: center; min-height: 42px; }
.breadcrumbs ol { list-style: none; display: flex; align-items: center; gap: 8px; min-height: 42px; font-size: 12px; line-height: 1; flex-wrap: wrap; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs a { color: var(--color-accent); font-weight: 800; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: none; }
.breadcrumbs .sep { color: rgba(255,255,255,0.38); }
.breadcrumbs .current { color: var(--color-text-on-dark-muted); }

.page-header {
  background:
    linear-gradient(180deg, rgba(var(--color-bg-deep-rgb),0.72) 0%, rgba(var(--color-bg-soft-rgb),0.44) 100%),
    url('/assets/hero/backgrounds/hero-bg-vector.svg') center 28% / cover no-repeat,
    var(--color-bg);
  padding: 54px 0 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: none;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-accent-rgb),0.55), transparent);
  opacity: 1;
}
.page-header .container {
  width: min(var(--content-max), calc(100% - var(--site-gutter) - var(--site-gutter)));
  max-width: none;
}
.page-header .container,
.hero-section .container { position: relative; z-index: 1; }
.page-header h1 { color: white; font-weight: 800; font-size: var(--type-h1); line-height: var(--type-h1-leading); letter-spacing: 0; margin-bottom: 10px; }
.page-header .subtitle { color: var(--color-text-on-dark-muted); font-size: 17px; line-height: 1.6; max-width: 760px; margin: 0; }
.page-header .last-updated { color: rgba(255,255,255,0.76); justify-content: flex-start; margin-top: 14px; }

.hero-section {
  background:
    linear-gradient(180deg, rgba(var(--color-bg-deep-rgb),0.34) 0%, rgba(var(--color-bg-rgb),0.2) 48%, rgba(var(--color-bg-deep-rgb),0.5) 100%),
    url('/assets/hero/backgrounds/hero-bg-generated-stadium.webp') center top / 100% auto no-repeat,
    var(--color-bg);
  padding: 20px 0 74px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--color-bg-deep-rgb),0.28) 0%, rgba(var(--color-bg-deep-rgb),0.08) 24%, rgba(var(--color-bg-deep-rgb),0.02) 50%, rgba(var(--color-bg-deep-rgb),0.08) 76%, rgba(var(--color-bg-deep-rgb),0.28) 100%),
    radial-gradient(circle at 50% 16%, rgba(var(--color-accent-rgb),0.08), transparent 30%);
  pointer-events: none;
}
.hero-section::after { content: none; }
.hero-section .container { max-width: none; padding: 0; }
.hero-section h1 { color: white; font-weight: 800; font-size: var(--type-h1); line-height: var(--type-h1-leading); letter-spacing: 0; margin: 0 auto 4px; max-width: 1120px; text-wrap: balance; text-shadow: 0 4px 28px rgba(0,0,0,0.24); }
.hero-season-accent { color: var(--color-accent); }
.hero-description { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 760px; margin: 0 auto 15px; line-height: 1.45; text-wrap: balance; }
.hero-info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; width: 100%; margin: 0 auto 12px; }
.hero-info-card { display: flex; align-items: center; gap: 14px; min-height: 88px; min-width: 0; padding: 16px 18px; text-align: left; border-radius: 8px; background: rgba(var(--color-bg-soft-rgb),0.9); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.hero-info-card img { width: 24px; height: 24px; flex-shrink: 0; filter: none; opacity: 0.9; }
.hero-info-card img.hero-team-badge { width: 46px; height: 46px; object-fit: contain; filter: none; border-radius: 5px; }
.hero-info-card img.hero-calendar-icon { width: 44px; height: 44px; padding: 10px; border-radius: 8px; background: rgba(var(--color-accent-rgb),0.18); border: 1px solid rgba(var(--color-accent-rgb),0.42); opacity: 1; filter: brightness(0) saturate(100%) invert(91%) sepia(21%) saturate(593%) hue-rotate(36deg) brightness(106%) contrast(101%); box-shadow: 0 10px 26px rgba(var(--shadow-rgb),0.22), inset 0 1px 0 rgba(255,255,255,0.16); }
.hero-info-card strong { display: block; color: white; font-size: 15px; line-height: 1.2; margin-bottom: 4px; }
.hero-info-card span { display: block; color: rgba(255,255,255,0.68); font-size: 12px; line-height: 1.35; }
.hero-info-card div { min-width: 0; }
.hero-table-card { width: 100%; margin: 0 auto; background: linear-gradient(180deg, rgba(var(--color-bg-soft-rgb),0.98), rgba(var(--color-bg-deep-rgb),0.99)); border-radius: 18px; padding: 18px 24px 24px; box-shadow: var(--shadow-card); text-align: left; scroll-margin-top: 92px; border: 1px solid rgba(255,255,255,0.14); overflow: visible; position: relative; }
.table-trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 8px; margin: 0 0 7px; color: rgba(255,255,255,0.72); font-size: 12px; font-weight: 700; line-height: 1.45; }
.table-trust-row::before { content: ''; width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0; background: var(--color-success); box-shadow: 0 0 0 3px rgba(54,169,95,0.12); }
.table-trust-row time { color: var(--accent); font-weight: 800; }

.section-padding,
.insights-section,
.format-section,
.zones-section,
.match-context-section,
.source-section,
.faq-section { padding: 46px 0; }
.section-bg { background: var(--bg-light); }
.section-heading-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 24px; }
.section-title,
.table-section h2,
.faq-section h2 { font-weight: 800; font-size: var(--type-h2); color: var(--primary); line-height: var(--type-h2-leading); letter-spacing: 0; margin-bottom: 8px; }
.section-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; max-width: 760px; }
.section-link { color: var(--primary); font-size: 14px; font-weight: 800; border-bottom: 2px solid var(--accent); padding-bottom: 3px; white-space: nowrap; }
.section-link:hover { color: var(--secondary); text-decoration: none; }

.insights-section { background: var(--surface-warm); padding: 74px 0 72px; }
.insights-header { margin-bottom: 34px; }
.insights-heading-copy .section-title { margin-bottom: 22px; position: relative; }
.insights-heading-copy .section-title::after { content: ''; position: absolute; left: 0; bottom: -13px; width: 52px; height: 4px; border-radius: 999px; background: var(--color-accent-strong); }
.insights-heading-copy .section-desc { font-size: 17px; max-width: 670px; }
.insights-dashboard { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.insight-leader-card,
.insight-metric-card,
.insight-band-card,
.fact-item,
.contact-box,
.ad-format-box { background: white; border: 1px solid var(--border); border-radius: 8px; }
.insight-leader-card { grid-column: span 7; min-height: 410px; padding: 34px; color: white; background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-bg) 58%, var(--color-bg-deep) 100%); border-color: rgba(255,255,255,0.14); box-shadow: 0 22px 58px rgba(var(--shadow-rgb),0.16); overflow: hidden; position: relative; }
.insight-leader-card::before,
.insight-leader-card::after { content: ''; position: absolute; top: 0; bottom: auto; width: 62px; height: 188px; background: rgba(var(--color-accent-rgb),0.12); pointer-events: none; }
.insight-leader-card::before { right: 31px; }
.insight-leader-card::after { right: 0; opacity: 0.5; }
.insight-leader-top { display: flex; align-items: center; gap: 28px; margin-bottom: 28px; position: relative; z-index: 1; }
.insight-leader-badge { width: 96px; height: 96px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.18)); }
.insight-label { display: block; color: var(--accent-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.insight-leader-card .insight-label { color: var(--color-accent); margin-bottom: 6px; }
.insight-leader-card h3 { color: white; font-size: var(--type-h3); letter-spacing: 0; line-height: var(--type-h3-leading); margin: 0; }
.insight-leader-card p { color: rgba(255,255,255,0.84); font-size: 18px; line-height: 1.55; margin: 0 0 34px; max-width: 650px; position: relative; z-index: 1; }
.insight-leader-card p strong { color: white; }
.insight-stat-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; position: relative; z-index: 1; }
.insight-stat-chip { min-height: 86px; padding: 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); }
.insight-stat-chip span { display: block; color: rgba(255,255,255,0.68); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.insight-stat-chip strong { display: block; color: white; font-size: 26px; line-height: 1; letter-spacing: -0.03em; }
.insight-side-stack { grid-column: span 5; display: grid; gap: 18px; }
.insight-metric-card,
.insight-band-card { position: relative; min-width: 0; padding: 24px; box-shadow: 0 18px 48px rgba(var(--shadow-rgb),0.08); overflow: hidden; }
.insight-metric-card { min-height: 196px; }
.insight-watermark { position: absolute; top: 18px; right: 22px; color: rgba(13,36,30,0.07); font-size: 72px; line-height: 1; font-weight: 800; letter-spacing: -0.06em; pointer-events: none; }
.insight-metric-card h3,
.insight-band-card h3 { color: var(--primary); font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; margin-bottom: 8px; }
.insight-metric-card p,
.insight-band-card p { color: #3F4D48; font-size: 15px; line-height: 1.55; margin: 0; }
.insight-metric-card p strong,
.insight-band-card p strong { color: var(--primary); }
.insight-band-card { grid-column: span 4; min-height: 300px; }
.insight-team-list { display: grid; gap: 8px; margin-top: 18px; }
.insight-team-row { display: grid; grid-template-columns: 26px 28px minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 44px; padding: 8px 10px; border-radius: 7px; background: var(--bg-light); border: 1px solid var(--border); }
.insight-team-row span { color: var(--primary); font-size: 12px; font-weight: 800; }
.insight-team-row img { width: 28px; height: 28px; object-fit: contain; }
.insight-team-row strong { color: var(--primary); font-size: 13px; font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.insight-team-row em { color: var(--primary); font-size: 12px; font-style: normal; font-weight: 800; white-space: nowrap; }
.insight-zone-bars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 36px; }
.insight-zone-bars span { display: block; height: 8px; border-radius: 999px; }
.bar-green { background: var(--color-accent-strong); }
.bar-blue { background: #4C8DFF; }
.bar-yellow { background: #F3B13E; }
.bar-red { background: var(--color-danger); }

.rules-section { background: linear-gradient(180deg, var(--surface-warm), var(--bg-light)); padding: 74px 0 78px; }
.rules-section .section-heading-row { margin-bottom: 30px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.fact-item { position: relative; min-height: 144px; overflow: hidden; padding: 24px; border: 1px solid rgba(var(--shadow-rgb),0.13); border-radius: 8px; background: rgba(255,255,255,0.9); box-shadow: 0 18px 42px rgba(var(--shadow-rgb),0.07); }
.fact-item::after { content: attr(data-watermark); position: absolute; right: 16px; bottom: -14px; color: rgba(var(--shadow-rgb),0.07); font-size: 82px; line-height: 1; font-weight: 800; letter-spacing: 0; pointer-events: none; }
.fact-label { display: block; color: var(--text-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.fact-value { position: relative; z-index: 1; display: block; color: var(--primary); font-size: 31px; font-weight: 800; line-height: 1.05; }

.rules-layout { display: grid; grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr); gap: 24px; align-items: stretch; }
.rules-visual-card { position: relative; min-height: 520px; margin: 0; overflow: hidden; border: 1px solid rgba(var(--shadow-rgb),0.12); border-radius: 8px; background: var(--color-bg-deep); box-shadow: 0 26px 62px rgba(var(--shadow-rgb),0.14); }
.rules-visual-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--color-bg-deep-rgb),0.08), transparent 34%, rgba(var(--color-bg-deep-rgb),0.86)), linear-gradient(90deg, rgba(var(--color-bg-deep-rgb),0.28), transparent 55%); pointer-events: none; }
.rules-visual-card img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(0.98) contrast(1.03); }
.rules-visual-card figcaption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 26px; color: white; }
.rules-visual-card h3 { color: white; font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; max-width: 520px; margin-bottom: 10px; }
.rules-visual-card p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.55; max-width: 540px; margin: 0; }
.rules-panel { display: flex; align-items: center; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; padding: 34px; background: linear-gradient(135deg, var(--color-bg-soft), var(--color-bg-deep)); color: white; box-shadow: 0 28px 72px rgba(var(--shadow-rgb),0.2); }
.rules-steps { list-style: none; display: grid; gap: 18px; width: 100%; margin: 0; }
.rules-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start; padding: 18px; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: rgba(255,255,255,0.06); }
.rules-steps li > span { width: 46px; height: 46px; border-radius: 999px; background: var(--color-accent); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; }
.rules-steps h3 { display: block; color: white; font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; margin-bottom: 6px; }
.rules-steps p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.55; margin: 0; }
.inline-match-media { margin: 0; border-radius: 8px; overflow: hidden; background: var(--primary); box-shadow: 0 14px 34px rgba(var(--shadow-rgb),0.12); }
.inline-match-media img { display: block; width: 100%; height: 100%; min-height: 100%; object-fit: cover; }
.inline-match-media-primary { aspect-ratio: 4 / 3; margin-top: 2px; }
.inline-match-media-primary img { object-position: center center; }
.story-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr); gap: 32px; align-items: stretch; }
.section-heading-row-compact { margin-bottom: 18px; }
.story-list { border-top: 1px solid var(--border); }
.story-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.story-item span { color: var(--accent-dark); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; }
.story-item h3 { display: block; color: var(--primary); font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; margin-bottom: 6px; }
.story-item p { color: #44546A; font-size: 15px; line-height: 1.65; max-width: 760px; }
.story-media { min-height: 100%; }
.story-media img { object-position: 43% center; }

.zones-section { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 100%); color: var(--text-white); padding: 88px 0 84px; }
.zones-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr); gap: 56px; align-items: stretch; }
.zones-header { max-width: 760px; margin-bottom: 32px; }
.zones-section .section-title { color: var(--text-white); margin-bottom: 14px; }
.zones-section .section-desc { color: rgba(255,255,255,0.72); font-size: 17px; }
.zone-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.zone-card { position: relative; min-width: 0; overflow: hidden; display: flex; min-height: 226px; padding: 24px; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: linear-gradient(145deg, rgba(var(--color-bg-soft-rgb),0.86), rgba(var(--color-bg-rgb),0.94)); box-shadow: 0 24px 58px rgba(0,0,0,0.18); }
.zone-card-copy { position: relative; z-index: 1; display: flex; min-width: 0; flex-direction: column; justify-content: center; }
.zone-card-large { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: center; min-height: 260px; padding: 30px; }
.zone-label { display: block; color: var(--color-accent); font-size: 12px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.zone-card h3 { display: block; color: var(--text-white); font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; margin-bottom: 10px; }
.zone-card p { color: rgba(255,255,255,0.76); font-size: 15px; line-height: 1.62; margin: 0; max-width: 620px; }
.zone-card p strong { color: var(--text-white); }
.zone-team-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.zone-team-pills span { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; max-width: 100%; padding: 5px 12px 5px 6px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.08); color: var(--text-white); font-size: 12px; font-weight: 800; }
.zone-team-pills img { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.zone-mini-table { position: relative; z-index: 1; display: grid; gap: 10px; align-self: center; min-width: 0; padding: 22px; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: rgba(255,255,255,0.08); }
.zone-mini-table div { display: grid; grid-template-columns: 24px 28px minmax(0, 1fr) auto; gap: 10px; align-items: center; min-width: 0; min-height: 44px; padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,0.92); color: var(--primary); font-size: 12px; font-weight: 800; }
.zone-mini-table span,
.zone-mini-table em { font-style: normal; font-weight: 800; }
.zone-mini-table img { width: 26px; height: 26px; object-fit: contain; }
.zone-mini-table strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.zone-mini-table em { white-space: nowrap; }
.zone-media { position: relative; min-height: 100%; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: var(--color-bg-deep); box-shadow: 0 26px 68px rgba(0,0,0,0.22); }
.zone-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--color-bg-deep-rgb),0.08) 18%, rgba(var(--color-bg-deep-rgb),0.78) 100%); pointer-events: none; }
.zone-media img { display: block; width: 100%; height: 100%; min-height: 100%; object-fit: cover; object-position: 48% center; }
.zone-media figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; color: var(--text-white); }
.zone-media figcaption span { color: var(--color-accent); font-size: 12px; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.zone-media figcaption strong { color: var(--text-white); font-size: 12px; font-weight: 800; line-height: 1.25; text-align: right; }

.match-context-section { background: var(--color-bg-deep); color: var(--text-white); padding: 88px 0 72px; }
.match-context-header { max-width: 840px; margin-bottom: 34px; }
.match-context-section .section-title { color: var(--text-white); margin-bottom: 12px; }
.match-context-section .section-desc { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 820px; }
.match-context-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 28px 56px; align-items: stretch; }
.match-feature-media { position: relative; margin: 0; min-height: 540px; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; overflow: hidden; background: var(--color-bg-deep); box-shadow: 0 30px 80px rgba(0,0,0,0.26); }
.match-feature-media-secondary { min-height: 520px; }
.match-feature-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--color-bg-deep-rgb),0.06) 28%, rgba(var(--color-bg-deep-rgb),0.72) 100%); pointer-events: none; }
.match-feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.match-feature-media-primary img { object-position: 50% center; }
.match-feature-media-secondary img { object-position: 58% center; }
.match-media-caption { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 24px 28px; color: var(--text-white); }
.match-media-caption span { color: var(--color-accent); font-size: 12px; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.match-media-caption strong { color: var(--text-white); font-size: 12px; font-weight: 800; line-height: 1.25; text-align: right; }
.match-panel { position: relative; align-self: center; min-width: 0; border-radius: 8px; padding: 28px; }
.match-results-panel { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 30px 80px rgba(0,0,0,0.18); }
.match-upcoming-panel { background: var(--bg-light); color: var(--primary); box-shadow: 0 30px 80px rgba(0,0,0,0.20); }
.match-panel h3 { color: inherit; font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; max-width: 470px; margin-bottom: 8px; padding-right: 64px; }
.match-results-panel h3 { color: var(--text-white); }
.match-panel p { color: var(--text-muted); font-size: 15px; line-height: 1.55; max-width: 540px; margin-bottom: 22px; }
.match-results-panel p { color: rgba(255,255,255,0.68); }
.match-list { display: grid; gap: 10px; }
.match-row-card { display: grid; grid-template-columns: 88px 1fr; column-gap: 12px; row-gap: 4px; align-items: center; min-width: 0; background: white; border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; box-shadow: 0 8px 22px rgba(var(--shadow-rgb),0.055); }
.match-date-pill { display: flex; min-height: 44px; flex-direction: column; align-items: flex-start; justify-content: center; border-radius: 8px; background: var(--surface-warm); color: var(--primary); font-size: 11px; font-weight: 800; line-height: 1.15; padding: 6px 8px; }
.match-date-pill span { display: block; color: var(--text-muted); font-size: 10px; font-weight: 700; margin-top: 2px; }
.match-scoreline { display: grid; grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr); gap: 10px; align-items: center; min-width: 0; color: var(--primary); font-size: 13px; font-weight: 800; }
.match-scoreline span { display: inline-flex; align-items: center; gap: 7px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match-scoreline span:last-child { justify-content: flex-end; text-align: right; }
.match-scoreline img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.match-scoreline strong { display: inline-flex; align-items: center; justify-content: center; min-height: 32px; border-radius: 999px; background: var(--primary); color: white; font-size: 13px; }
.upcoming-row-card .match-scoreline strong { background: var(--accent); color: var(--primary); }
.match-venue { grid-column: 2; color: var(--text-muted); font-size: 11px; font-weight: 700; line-height: 1.25; margin-top: 1px; }

.source-section { padding: 78px 0 64px; }
.source-card { position: relative; overflow: hidden; background: linear-gradient(135deg, #FFFFFF 0%, var(--surface-warm) 100%); border: 1px solid var(--border); border-radius: 18px; padding: 44px 64px 38px; box-shadow: 0 30px 82px rgba(var(--shadow-rgb),0.11); }
.source-content { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; align-items: stretch; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.source-copy h2 { color: var(--primary); font-size: var(--type-h2); line-height: var(--type-h2-leading); letter-spacing: 0; margin-bottom: 22px; }
.source-copy p { max-width: 780px; color: #42544F; font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.source-copy p strong { color: var(--primary); font-weight: 800; }
.source-links { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 28px; }
.source-links a { color: var(--primary); font-size: 13px; font-weight: 800; line-height: 1.2; text-transform: uppercase; border-bottom: 2px solid var(--primary); padding-bottom: 3px; }
.source-links a:hover { color: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; }
.source-meta { display: flex; align-items: stretch; align-self: stretch; min-width: 0; }
.source-facts-list { list-style: none; display: grid; gap: 14px; width: 100%; margin: 0; padding: 0; }
.source-facts-list li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 14px; align-items: start; padding: 16px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,0.78); box-shadow: 0 12px 28px rgba(var(--shadow-rgb),0.05); }
.source-facts-list li > span { width: 40px; height: 40px; border-radius: 999px; background: var(--accent); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; line-height: 1; }
.source-facts-list h3 { display: block; color: var(--primary); font-size: 17px; line-height: 1.22; letter-spacing: 0; margin: 0 0 5px; }
.source-facts-list p { color: #4D5E58; font-size: 14px; line-height: 1.5; font-weight: 700; margin: 0; }

.team-summary { background: var(--color-card-soft); color: var(--color-text); padding: 42px 0; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.summary-text { font-size: 16px; line-height: 1.75; color: #3F4D60; }
.summary-text a { color: var(--color-bg-soft); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.summary-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-box { background: white; padding: 18px 14px; text-align: center; border-radius: var(--radius-md); border: 1px solid var(--color-border-dark); box-shadow: 0 8px 24px rgba(var(--shadow-rgb),0.05); }
.stat-box .stat-num { font-size: 30px; font-weight: 800; color: var(--color-bg-soft); line-height: 1; letter-spacing: -0.03em; }
.stat-box .stat-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-top: 8px; }

.table-section { padding: 48px 0; background: white; }
.table-section .container { max-width: none; }
.standings-tabs { display: grid; gap: 16px; }
.standings-tabs-header { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 6px; border-radius: 10px; background: var(--bg-light); border: 1px solid var(--border); }
.standings-tab-btn { appearance: none; border: none; border-radius: 7px; background: transparent; color: var(--text-muted); cursor: pointer; font-family: inherit; min-height: 52px; padding: 8px 12px; text-align: left; transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease; }
.standings-tab-btn span { display: block; color: inherit; font-size: 14px; font-weight: 800; line-height: 1.2; }
.standings-tab-btn small { display: block; color: inherit; font-size: 11px; font-weight: 700; line-height: 1.3; margin-top: 4px; opacity: 0.78; }
.standings-tab-btn:hover { background: rgba(255,255,255,0.68); color: var(--primary); }
.standings-tab-btn.is-active { background: white; color: var(--primary); box-shadow: 0 8px 18px rgba(var(--shadow-rgb),0.08); }
.standings-zone-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 12px; margin-top: -6px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface-warm); color: var(--text-muted); font-size: 12px; font-weight: 800; }
.standings-zone-summary span { display: inline-flex; align-items: center; gap: 6px; }
.zone-marker { display: inline-block; width: 14px; height: 4px; border-radius: 999px; }
.zone-marker-champions { background: var(--color-accent-strong); }
.zone-marker-conference { background: #4C8DFF; }
.zone-marker-playoff { background: #F3B13E; }
.zone-marker-relegation { background: var(--color-danger); }
.standings-tab-panel[hidden] { display: none; }
.hero-table-card .standings-tabs { grid-template-columns: minmax(0, 1fr) minmax(360px, auto); gap: 0; align-items: stretch; }
.hero-table-card .standings-tabs-header { background: rgba(var(--color-bg-deep-rgb),0.7); border-color: rgba(255,255,255,0.14); border-radius: 10px; }
.hero-table-card .standings-tab-btn { color: rgba(255,255,255,0.66); }
.hero-table-card .standings-tab-btn:hover { background: rgba(255,255,255,0.08); color: var(--accent); }
.hero-table-card .standings-tab-btn.is-active { background: rgba(255,255,255,0.96); color: var(--primary); box-shadow: 0 12px 26px rgba(0,0,0,0.16); }
.hero-table-card .standings-zone-summary { background: rgba(var(--color-bg-deep-rgb),0.62); border-color: rgba(255,255,255,0.14); border-left: 0; border-radius: 0 10px 10px 0; color: rgba(255,255,255,0.78); justify-content: center; gap: 10px 18px; margin-top: 0; }
.hero-table-card .standings-tabs-header { border-radius: 10px 0 0 10px; }
.hero-table-card .standings-zone-summary span { min-height: 20px; }
.hero-table-card .standings-table-wrap { box-shadow: 0 18px 44px rgba(0,0,0,0.24); border: 1px solid rgba(255,255,255,0.12); }
.hero-table-card .standings-tab-panel { grid-column: 1 / -1; }
.hero-table-card .standings-caption { background: var(--surface-warm); color: var(--primary); text-align: center; }
.hero-table-card .standings-table thead th { background: var(--color-bg-soft); color: var(--accent); }
.hero-table-card .standings-table tbody tr:nth-child(even) { background: var(--table-row-soft); }
.hero-table-card .standings-table tbody tr:hover { background: var(--table-row-hover); }
.hero-table-card .standings-table .col-goals-for,
.hero-table-card .standings-table .col-goals-against { display: none; }
.hero-table-card .standings-table { min-width: 760px; }
.standings-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; box-shadow: 0 1px 4px rgba(var(--color-bg-soft-rgb),0.08); }
.standings-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 860px; font-size: 14px; background: #fff; }
.standings-caption { caption-side: top; text-align: left; padding: 12px 14px; background: #fff; color: var(--primary); font-size: 13px; font-weight: 800; line-height: 1.45; border-bottom: 1px solid var(--border); }
.standings-table thead th { font-size: 11px; font-weight: 800; padding: 12px 10px; text-transform: uppercase; letter-spacing: 0.03em; background: var(--table-head-bg); color: var(--color-bg-soft); border: none; white-space: nowrap; }
.standings-table thead th.col-pos { text-align: center; width: 45px; }
.standings-table thead th.col-team { text-align: left; min-width: 190px; }
.standings-table thead th:not(.col-pos):not(.col-team) { text-align: center; width: 50px; }
.standings-table thead th.col-pts { font-weight: 800; width: 55px; }
.standings-table thead th.col-form { width: 142px; }
.standings-table tbody td { height: 48px; padding: 9px 10px; vertical-align: middle; border-bottom: 1px solid var(--border); }
.standings-table tbody td.col-pos { text-align: center; font-weight: 800; }
.standings-table tbody td.col-team { text-align: left; }
.standings-table tbody td:not(.col-pos):not(.col-team) { text-align: center; }
.standings-table tbody td.col-pts { font-weight: 800; font-size: 16px; }
.standings-table tbody td.col-form { min-width: 142px; }
.standings-table tbody tr:nth-child(even) { background: var(--table-row-soft); }
.standings-table tbody tr:hover { background: var(--table-row-hover); }
.standings-table tbody tr.highlighted { background: var(--table-row-highlight); outline: 2px solid rgba(var(--color-accent-dark-rgb),0.34); outline-offset: -2px; }
.standings-table tbody tr.highlighted:hover { background: var(--table-row-hover); }
.standings-table tbody tr.highlighted td { border-top: 1px solid rgba(var(--color-accent-dark-rgb),0.24); border-bottom: 1px solid rgba(var(--color-accent-dark-rgb),0.24); }
.standings-table tbody tr[data-row-href] { cursor: pointer; }
.standings-table tbody tr[data-row-href]:focus-visible { outline: 3px solid rgba(var(--color-accent-dark-rgb),0.35); outline-offset: -3px; }
.team-link { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 8px; }
.team-link:hover { color: var(--secondary); }
.team-badge { width: 24px; height: 24px; border-radius: 3px; object-fit: contain; flex-shrink: 0; }
.team-name-static { pointer-events: none; }
.current-team-pill { display: inline-flex; align-items: center; min-height: 22px; margin-left: auto; padding: 0 8px; border-radius: 999px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 800; line-height: 1; white-space: nowrap; }
.pos-champions { box-shadow: inset 4px 0 0 var(--color-accent-strong); }
.pos-conference,
.pos-europe { box-shadow: inset 4px 0 0 #4C8DFF; }
.pos-playoff { box-shadow: inset 4px 0 0 #F3B13E; }
.pos-relegation { box-shadow: inset 4px 0 0 var(--color-danger); }
.table-abbr { margin-top: 16px; padding: 16px 20px; background: var(--bg-light); border-radius: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.table-abbr strong { color: var(--primary); }
.form-list { display: inline-flex; align-items: center; justify-content: center; gap: 5px; min-width: 128px; }
.form-dot { width: 22px; height: 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: white; font-size: 10px; font-weight: 800; line-height: 1; border: 2px solid white; box-shadow: 0 1px 4px rgba(var(--shadow-rgb),0.12); }
.form-v { background: var(--color-success); }
.form-o { background: #9AA3AF; }
.form-f { background: var(--color-danger); }
.last-updated { display: flex; align-items: center; justify-content: flex-end; gap: 7px; font-size: 12px; color: var(--text-muted); text-align: right; margin: 0 0 12px; }
.last-updated::before { content: ''; width: 8px; height: 8px; border-radius: 999px; background: var(--color-success); box-shadow: 0 0 0 3px rgba(54,169,95,0.12); }
.standings-table th.has-tooltip { cursor: help; }
#col-tooltip { position: fixed; background: var(--primary); color: #fff; padding: 6px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; white-space: nowrap; pointer-events: none; box-shadow: 0 2px 8px rgba(0,0,0,0.15); opacity: 0; transform: translate(-50%, -100%) translateY(-8px); transition: opacity 0.15s ease; z-index: 9999; top: 0; left: 0; }
#col-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--primary); }
#col-tooltip.visible { opacity: 1; }

.cross-links { padding: 36px 0; background: var(--color-card-soft); }
.cross-links-inner { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: stretch; }
.cross-link-btn,
.btn-accent { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; font-weight: 800; border-radius: 6px; transition: background 0.2s, color 0.2s, transform 0.15s; }
.cross-link-btn { padding: 13px 24px; background: var(--color-bg-soft); color: white; font-size: 14px; border-radius: 999px; box-shadow: 0 8px 22px rgba(var(--shadow-rgb),0.12); }
.cross-link-btn:hover { background: var(--color-bg); color: white; text-decoration: none; }
.cross-link-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.cta-banner { background: var(--surface-warm); padding: 64px 0; }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; align-items: center; overflow: hidden; position: relative; color: white; border-radius: 8px; padding: 46px 58px; border: 1px solid rgba(255,255,255,0.14); background: linear-gradient(135deg, var(--color-bg-deep) 0%, var(--color-bg-soft) 100%);
  box-shadow: 0 34px 90px rgba(var(--shadow-rgb),0.16);
}
.cta-copy { position: relative; z-index: 1; text-align: left; }
.cta-inner h2 { max-width: 720px; color: var(--text-white); font-size: var(--type-h2); line-height: var(--type-h2-leading); letter-spacing: 0; margin-bottom: 14px; }
.cta-inner p { max-width: 700px; color: rgba(255,255,255,0.76); font-size: 17px; line-height: 1.6; margin-bottom: 26px; }
.cta-table-card { position: relative; z-index: 1; display: grid; gap: 10px; min-width: 0; padding: 20px; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: rgba(255,255,255,0.08); }
.cta-table-head { display: grid; grid-template-columns: 34px 30px minmax(0, 1fr) 42px; gap: 10px; padding: 0 10px 8px; color: rgba(255,255,255,0.62); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cta-table-head span:last-child { text-align: right; }
.cta-table-row { display: grid; grid-template-columns: 34px 30px minmax(0, 1fr) 42px; gap: 10px; align-items: center; min-width: 0; min-height: 54px; padding: 9px 10px; border-radius: 6px; background: rgba(255,255,255,0.95); color: var(--primary); font-size: 13px; font-weight: 800; }
.cta-table-row img { width: 28px; height: 28px; object-fit: contain; }
.cta-table-row strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cta-table-row em { font-style: normal; text-align: right; white-space: nowrap; }
.btn-accent { padding: 14px 30px; background: var(--accent); color: var(--primary); font-size: 15px; }
.btn-accent:hover { background: var(--accent); color: var(--primary); text-decoration: none; transform: translateY(-1px); }

.faq-section { background: linear-gradient(180deg, var(--surface-warm), var(--bg-light)); padding: 78px 0 86px; }
.faq-inner { width: min(860px, 100%); margin: 0 auto; }
.faq-heading { margin-bottom: 30px; }
.faq-section h2 { max-width: 760px; color: var(--primary); font-size: var(--type-h2); line-height: var(--type-h2-leading); letter-spacing: 0; text-align: center; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,0.94); overflow: hidden; box-shadow: 0 18px 42px rgba(var(--shadow-rgb),0.06); }
.faq-question-heading { font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; margin: 0; }
.faq-q { width: 100%; min-height: 70px; text-align: left; padding: 14px 18px; font-family: inherit; font-weight: 800; font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; color: var(--primary); border: none; background: none; cursor: pointer; display: grid; grid-template-columns: 44px minmax(0, 1fr) 36px; align-items: center; gap: 18px; }
.faq-q:hover { background: rgba(247,250,244,0.86); }
.faq-index { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; background: var(--chip-soft); color: #5B756B; font-size: 13px; font-weight: 800; line-height: 1; }
.faq-question-text { min-width: 0; }
.faq-a { display: none; padding: 10px 70px 26px 80px; color: #3F4D60; font-size: 16px; line-height: 1.75; }
.faq-a p { max-width: 760px; margin: 0; padding-top: 4px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-index { background: var(--color-bg-deep); color: var(--color-accent); }
.faq-item.open .icon-chevron { transform: rotate(180deg); }
.icon-chevron { justify-self: end; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; background: var(--chip-soft); color: var(--primary); transition: transform 0.2s; flex-shrink: 0; }

.content-section { padding: 54px 0 68px; background: var(--color-card-soft); }
.content-section .container { width: min(var(--content-max), calc(100% - var(--site-gutter) - var(--site-gutter))); max-width: none; background: white; border: 1px solid var(--color-border-dark); border-radius: var(--radius-lg); padding: 42px 48px; box-shadow: 0 14px 36px rgba(var(--shadow-rgb),0.06); }
.content-section h2 { color: var(--primary); font-size: var(--type-h2); line-height: var(--type-h2-leading); letter-spacing: 0; margin: 30px 0 12px; }
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { color: var(--primary); font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; margin: 20px 0 8px; }
.content-section p { color: #3F4D60; font-size: 16px; line-height: 1.75; margin: 0 0 14px; }
.content-section ul { margin: 12px 0 18px 22px; color: #3F4D60; line-height: 1.75; }
.principle-box,
.contact-highlight { background: var(--color-card-soft); border-left: 4px solid var(--color-accent); border-radius: var(--radius-md); padding: 20px 22px; margin: 26px 0; }
.contact-grid,
.ad-formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0 28px; }
.contact-box,
.ad-format-box { padding: 22px; box-shadow: 0 8px 24px rgba(var(--shadow-rgb),0.05); }
.contact-box h3,
.ad-format-box h3 { font-size: var(--type-h3); line-height: var(--type-h3-leading); letter-spacing: 0; margin-top: 0; }
.contact-box a { font-weight: 800; word-break: break-word; }

.not-found-section { min-height: 62vh; display: flex; align-items: center; background: var(--color-card-soft); padding: 70px 0; }
.not-found-card { max-width: 720px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--color-border-dark); border-radius: var(--radius-lg); padding: 44px 36px; box-shadow: 0 14px 36px rgba(var(--shadow-rgb),0.06); }
.not-found-kicker { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 14px; border-radius: 999px; background: var(--accent); color: var(--primary); font-weight: 800; font-size: 13px; margin-bottom: 16px; }
.not-found-card h1 { color: var(--primary); font-size: var(--type-h1); line-height: var(--type-h1-leading); letter-spacing: 0; margin-bottom: 12px; }
.not-found-card p { color: #3F4D60; font-size: 16px; line-height: 1.7; max-width: 560px; margin: 0 auto 24px; }
.not-found-actions { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.not-found-link { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--border); color: var(--primary); font-weight: 800; font-size: 14px; }
.not-found-link:hover { background: var(--surface-warm); color: var(--primary); text-decoration: none; }

.site-footer { background: linear-gradient(180deg, var(--surface-warm), var(--bg-light)); color: var(--primary); padding: 54px 0; }
.footer-card { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,0.96); box-shadow: 0 24px 70px rgba(var(--shadow-rgb),0.13); }
.footer-card::before { content: ''; display: block; height: 8px; background: linear-gradient(90deg, var(--accent), var(--primary)); }
.footer-top { display: grid; grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr); gap: 28px; align-items: center; padding: 34px 48px; }
.footer-logo .brand-wordmark { color: var(--primary); }
.footer-logo .brand-wordmark strong { color: var(--accent-dark); }
.footer-grid { display: grid; grid-template-columns: 0.9fr 1.25fr 1.1fr 0.9fr; gap: 34px; padding: 30px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.footer-heading { font-weight: 800; color: var(--primary); margin-bottom: 14px; font-size: 13px; }
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 9px; }
.footer-col a { color: #44546A; font-size: 14px; }
.footer-col a:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.footer-disclaimer { justify-self: end; color: var(--text-muted); font-size: 13px; line-height: 1.65; max-width: 680px; margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; align-items: center; color: var(--text-muted); font-size: 13px; padding: 22px 48px 28px; }

.cookie-consent { position: fixed; left: 50%; right: auto; bottom: 18px; z-index: 2000; width: min(760px, calc(100% - 32px)); color: var(--text-white); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: linear-gradient(135deg, rgba(var(--color-bg-deep-rgb),0.97), rgba(var(--color-bg-soft-rgb),0.94)); box-shadow: 0 22px 58px rgba(var(--shadow-rgb),0.24); padding: 12px; opacity: 0; transform: translate(-50%, 18px); transition: opacity 0.25s ease, transform 0.25s ease; backdrop-filter: blur(18px); }
.cookie-consent::before { content: ''; position: absolute; left: 14px; right: 14px; top: 0; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--color-accent), rgba(255,255,255,0.18)); }
.cookie-consent[hidden] { display: none; }
.cookie-consent.is-visible { opacity: 1; transform: translate(-50%, 0); }
.cookie-consent-inner { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 14px; max-width: none; margin: 0; }
.cookie-consent-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.cookie-consent-icon img { width: 30px; height: 30px; object-fit: contain; }
.cookie-consent-text { min-width: 0; }
.cookie-consent-title { font-size: 14px; font-weight: 900; color: #fff; margin: 0 0 3px; }
.cookie-consent-text p { font-size: 12px; line-height: 1.45; color: rgba(255,255,255,0.74); margin: 0; }
.cookie-consent-text a { color: var(--color-accent); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: inherit; font-weight: 900; font-size: 13px; padding: 0 18px; border-radius: 999px; cursor: pointer; border: 1px solid transparent; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s; min-height: 40px; }
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-outline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.18); }
.cookie-btn-outline:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.28); }
.cookie-btn-primary { background: var(--color-accent); color: var(--color-bg-deep); box-shadow: 0 10px 22px rgba(var(--color-accent-rgb),0.2); }
.cookie-btn-primary:hover { background: var(--accent); color: var(--color-bg-deep); }

@media (max-width: 991px) {
  :root {
    --site-gutter: 24px;
  }
  .main-nav { padding: 0; }
  .main-nav .container { min-height: 68px; }
  .hero-section { padding: 32px 0 64px; }
  .hero-section .container { padding: 0; }
  .hero-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-table-card { padding: 18px; }
  .hero-table-card .standings-tabs { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-table-card .standings-tabs-header,
  .hero-table-card .standings-zone-summary { border-radius: 10px; border-left: 1px solid rgba(255,255,255,0.14); }
  .insights-section { padding: 56px 0; }
  .insights-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insight-leader-card,
  .insight-side-stack { grid-column: 1 / -1; }
  .insight-side-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insight-band-card { grid-column: auto; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-section { padding: 58px 0; }
  .rules-visual-card { min-height: 430px; }
  .match-context-section { padding: 72px 0 56px; }
  .match-context-grid { grid-template-columns: 1fr; gap: 20px; }
  .match-feature-media,
  .match-feature-media-secondary { min-height: 0; aspect-ratio: 16 / 9; }
  .match-panel { align-self: stretch; }
  .rules-layout,
  .summary-grid,
  .story-layout { grid-template-columns: 1fr; }
  .zones-section { padding: 68px 0; }
  .zones-layout { grid-template-columns: 1fr; gap: 28px; }
  .zone-media { min-height: 0; aspect-ratio: 16 / 9; }
  .source-card { padding: 36px 32px 32px; }
  .source-content { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; padding: 38px 34px; }
  .cta-table-card { max-width: 430px; width: 100%; }
  .contact-grid,
  .ad-formats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-media { aspect-ratio: 16 / 9; }
  .source-meta { padding-top: 2px; }
  .footer-top { grid-template-columns: 1fr; align-items: flex-start; padding: 30px 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { padding: 22px 32px 28px; }
  .content-section .container { padding: 34px 32px; }
}

@media (max-width: 767px) {
  :root {
    --type-h1: 32px;
    --type-h2: 25px;
    --type-h3: 21px;
    --site-gutter: 16px;
  }
  .container { padding: 0; }
  .main-nav { padding: 0; }
  .main-nav .container { min-height: 62px; gap: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-wordmark { font-size: 16px; }
  .nav-table-link { min-height: 36px; padding: 0 10px; font-size: 11px; gap: 5px; }
  .nav-table-link img { width: 14px; height: 14px; }
  .breadcrumbs,
  .breadcrumbs .container,
  .breadcrumbs ol { min-height: 38px; }
  .breadcrumbs ol { gap: 6px; font-size: 11px; }
  .hero-section { padding: 24px 0 48px; }
  .hero-section .container { padding: 0; max-width: none; overflow: hidden; }
  .hero-description { font-size: 15px; margin-bottom: 14px; }
  .hero-info-grid { grid-template-columns: 1fr; width: 100%; gap: 8px; margin-bottom: 14px; }
  .hero-info-card { min-height: 58px; padding: 10px; gap: 8px; }
  .hero-info-card img { width: 18px; height: 18px; }
  .hero-info-card img.hero-team-badge { width: 34px; height: 34px; }
  .hero-info-card img.hero-calendar-icon { width: 34px; height: 34px; padding: 8px; }
  .hero-info-card strong { font-size: 12px; }
  .hero-info-card span { font-size: 10px; }
  .hero-info-card strong,
  .hero-info-card span { overflow: hidden; text-overflow: ellipsis; }
  .hero-table-card { width: 100%; max-width: none; min-width: 0; border-radius: 16px; padding: 12px 10px 10px; }
  .table-trust-row { align-items: flex-start; font-size: 11px; margin-bottom: 10px; }
  .page-header { padding: 38px 0 34px; }
  .page-header .subtitle { font-size: 15px; }
  .section-heading-row { display: block; }
  .section-link { display: inline-block; margin-top: 12px; }
  .insights-section { padding: 42px 0; }
  .insights-heading-copy .section-desc { font-size: 15px; }
  .insights-dashboard,
  .insight-side-stack { grid-template-columns: 1fr; gap: 12px; }
  .insight-leader-card,
  .insight-metric-card,
  .insight-band-card { grid-column: auto; padding: 20px; min-height: 0; }
  .insight-leader-top { gap: 14px; margin-bottom: 18px; }
  .insight-leader-badge { width: 64px; height: 64px; }
  .insight-leader-card p { font-size: 15px; margin-bottom: 20px; }
  .insight-stat-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .insight-stat-chip { min-height: 68px; padding: 10px; }
  .insight-stat-chip span { font-size: 9px; }
  .insight-stat-chip strong { font-size: 22px; }
  .insight-watermark { font-size: 56px; }
  .insight-zone-bars { margin-top: 24px; }
  .facts-grid,
  .footer-grid,
  .contact-grid,
  .ad-formats-grid { grid-template-columns: 1fr; }
  .summary-stats { grid-template-columns: repeat(2, 1fr); }
  .rules-section { padding: 42px 0; }
  .rules-section .section-heading-row { margin-bottom: 22px; }
  .facts-grid { gap: 12px; margin-bottom: 16px; }
  .fact-item { min-height: 110px; padding: 18px; }
  .fact-item::after { right: 14px; bottom: -10px; font-size: 64px; }
  .fact-value { font-size: 26px; }
  .rules-layout { gap: 14px; }
  .rules-visual-card { min-height: 360px; }
  .rules-visual-card figcaption { left: 18px; right: 18px; bottom: 18px; }
  .rules-visual-card p { font-size: 14px; }
  .rules-panel { padding: 18px; }
  .rules-steps { gap: 10px; }
  .rules-steps li { grid-template-columns: 42px 1fr; gap: 12px; padding: 14px; }
  .rules-steps li > span { width: 38px; height: 38px; font-size: 15px; }
  .rules-steps p { font-size: 14px; }
  .inline-match-media-primary,
  .story-media { aspect-ratio: 4 / 3; }
  .zones-section { padding: 52px 0; }
  .zones-header { margin-bottom: 22px; }
  .zones-section .section-desc { font-size: 15px; }
  .zone-card-grid { grid-template-columns: 1fr; gap: 12px; }
  .zone-card,
  .zone-card-large { display: flex; min-height: 0; padding: 20px; }
  .zone-card h3 { margin-bottom: 8px; }
  .zone-card p { font-size: 14px; }
  .zone-team-pills { margin-top: 16px; }
  .zone-team-pills span { min-height: 34px; font-size: 11px; }
  .zone-team-pills img { width: 22px; height: 22px; }
  .zone-mini-table { margin-top: 18px; padding: 12px; }
  .zone-card-large { flex-direction: column; gap: 0; }
  .zone-mini-table div { grid-template-columns: 22px 24px minmax(0, 1fr) auto; min-height: 38px; gap: 8px; padding: 7px 8px; font-size: 11px; }
  .zone-mini-table img { width: 22px; height: 22px; }
  .zone-media { aspect-ratio: 4 / 3; }
  .zone-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; padding: 16px; left: 0; right: 0; bottom: 0; }
  .zone-media figcaption strong { text-align: left; }
  .match-context-section { padding: 76px 0 42px; }
  .match-context-header { margin-bottom: 22px; }
  .match-context-section .section-desc { font-size: 15px; }
  .match-feature-media,
  .match-feature-media-secondary { aspect-ratio: 4 / 3; }
  .match-media-caption { align-items: flex-start; flex-direction: column; gap: 4px; padding: 16px; }
  .match-media-caption strong { text-align: left; }
  .match-panel { padding: 20px; }
  .match-panel h3 { padding-right: 54px; }
  .match-panel p { font-size: 14px; margin-bottom: 16px; }
  .match-row-card { grid-template-columns: 1fr; padding: 10px; }
  .match-date-pill { display: inline-flex; width: max-content; min-height: auto; }
  .match-scoreline { grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr); gap: 6px; font-size: 11px; }
  .match-scoreline span { gap: 5px; }
  .match-scoreline img { width: 18px; height: 18px; }
  .match-scoreline strong { min-height: 28px; font-size: 11px; }
  .match-venue { grid-column: 1; margin-top: 0; }
  .source-section { padding: 68px 0 42px; }
  .source-card { padding: 24px 20px; border-radius: 16px; }
  .source-content { gap: 22px; padding-bottom: 22px; }
  .source-copy h2 { margin-bottom: 16px; }
  .source-copy p { font-size: 15px; line-height: 1.68; }
  .source-links { gap: 12px 18px; margin-top: 22px; }
  .source-links a { font-size: 12px; }
  .source-meta { align-items: stretch; text-align: left; }
  .cta-banner { padding: 42px 0; }
  .cta-inner { gap: 22px; padding: 30px 20px; border-radius: 8px; }
  .cta-inner h2 { margin-bottom: 10px; }
  .cta-inner p { font-size: 15px; margin-bottom: 22px; }
  .cta-table-card { padding: 12px; }
  .cta-table-head { grid-template-columns: 28px 26px minmax(0, 1fr) 34px; gap: 8px; padding: 0 8px 7px; font-size: 10px; }
  .cta-table-row { grid-template-columns: 28px 26px minmax(0, 1fr) 34px; gap: 8px; min-height: 46px; padding: 8px; font-size: 12px; }
  .cta-table-row img { width: 24px; height: 24px; }
  .faq-section { padding: 46px 0 56px; }
  .faq-heading { margin-bottom: 20px; }
  .faq-q { min-height: 62px; grid-template-columns: 36px minmax(0, 1fr) 32px; gap: 10px; padding: 12px; font-size: 18px; }
  .faq-index { width: 34px; height: 34px; font-size: 11px; }
  .icon-chevron { width: 32px; height: 32px; }
  .faq-a { padding: 8px 14px 20px 58px; font-size: 15px; line-height: 1.68; }
  .site-footer { padding: 34px 0; }
  .footer-card { border-radius: 16px; }
  .footer-top,
  .footer-grid,
  .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .footer-top { gap: 18px; padding-top: 24px; padding-bottom: 22px; }
  .footer-grid { gap: 22px; padding-top: 24px; padding-bottom: 24px; }
  .footer-disclaimer { justify-self: start; }
  .standings-tabs { gap: 10px; }
  .hero-table-card .standings-tabs,
  .hero-table-card .standings-tab-panel,
  .hero-table-card .standings-table,
  .standings-tabs-header,
  .standings-table-wrap { min-width: 0; }
  .standings-tabs-header { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; padding: 5px; }
  .standings-zone-summary { gap: 5px 8px; padding: 8px 9px; font-size: 10px; }
  .hero-table-card .standings-zone-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; gap: 6px 8px; }
  .hero-table-card .standings-zone-summary span { min-width: 0; font-size: 9px; white-space: normal; }
  .zone-marker { width: 11px; }
  .standings-tab-btn { min-height: 38px; padding: 8px 7px; text-align: center; }
  .standings-tab-btn small { display: none; }
  .standings-tab-btn span { overflow: hidden; text-overflow: ellipsis; }
  .standings-table-wrap { overflow-x: visible; border-radius: 10px; }
  .standings-table { min-width: 0; table-layout: fixed; font-size: 12px; }
  .standings-caption { padding: 8px 9px; font-size: 11px; overflow-wrap: anywhere; }
  .standings-table .col-played,
  .standings-table .col-wins,
  .standings-table .col-draws,
  .standings-table .col-losses,
  .standings-table .col-goals-for,
  .standings-table .col-goals-against { display: none; }
  .standings-table thead th.col-pos { width: 32px; }
  .standings-table thead th.col-team { min-width: 0; width: auto; }
  .standings-table thead th.col-gd { width: 42px; }
  .standings-table thead th.col-pts { width: 40px; }
  .standings-table thead th.col-form { width: 84px; }
  .standings-table thead th,
  .standings-table tbody td { padding: 9px 5px; }
  .standings-table tbody td { height: 44px; }
  .standings-table tbody td.col-form { min-width: 0; }
  .team-link { gap: 6px; font-size: 12px; }
  .team-badge { width: 20px; height: 20px; }
  .current-team-pill { display: none; }
  .form-list { min-width: 0; gap: 1px; }
  .form-dot { width: 14px; height: 14px; border-width: 1px; font-size: 7px; }
  .last-updated { justify-content: flex-start; text-align: left; }
  .content-section { padding: 34px 0 48px; }
  .content-section .container { border-radius: 16px; padding: 28px 20px; }
  .summary-grid { gap: 20px; }
  .team-summary { padding: 32px 0; }
  .table-section { padding: 36px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-top: 20px; padding-bottom: 22px; }
  .cookie-consent { bottom: 10px; left: 10px; right: 10px; width: auto; padding: 10px; border-radius: 8px; transform: translateY(16px); }
  .cookie-consent.is-visible { transform: translateY(0); }
  .cookie-consent-inner { grid-template-columns: 38px minmax(0, 1fr); align-items: start; gap: 10px; }
  .cookie-consent-icon { width: 38px; height: 38px; }
  .cookie-consent-icon img { width: 26px; height: 26px; }
  .cookie-consent-title { font-size: 13px; margin: 0 0 3px; }
  .cookie-consent-text p { font-size: 11px; line-height: 1.4; }
  .cookie-consent-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 2px; }
  .cookie-btn { padding: 0 12px; min-height: 38px; font-size: 12px; }
}

@media (max-width: 360px) {
  .brand-logo { gap: 6px; }
  .brand-logo-img { width: min(180px, 54vw); }
  .brand-wordmark { font-size: 14px; }
  .nav-table-link { padding: 0 8px; }
}
