:root {
  --bg: #10110e;
  --bg-2: #181a15;
  --bg-3: #22251c;
  --ink: #f3f0e4;
  --muted: #a7ad9c;
  --faint: #8e9482;
  --line: rgba(243, 240, 228, 0.12);
  --line-strong: rgba(243, 240, 228, 0.28);
  --turf: #dff25a;
  --turf-ink: #14160c;
  --flag: #ff4b3a;
  --paper: #e6decc;
  --paper-2: #f4efe3;
  --paper-ink: #1c1e18;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --header: 68px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 430;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 420px at 90% -10%, rgba(223, 242, 90, 0.08), transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(243, 240, 228, 0.025) 92px 93px);
  z-index: 0;
}
img { max-width: 100%; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: transparent; border: 0; border-radius: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--turf); outline-offset: 3px; }
.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--turf);
  color: var(--turf-ink);
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { top: 12px; }
.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turf);
  font-weight: 580;
}
h1, h2, h3, .num { font-family: var(--cond); font-weight: 600; letter-spacing: 0.01em; }
h1 { font-size: clamp(64px, 12vw, 128px); line-height: 0.82; margin: 0; text-transform: uppercase; }
h2 { font-size: clamp(40px, 6vw, 68px); line-height: 0.9; margin: 0 0 8px; text-transform: uppercase; }
h3 { font-size: 28px; line-height: 1; margin: 0 0 8px; text-transform: uppercase; }
p { margin: 0 0 12px; }

.site-head { display: contents; }
.top {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 7, 0.55);
  border-bottom: 1px solid rgba(243, 240, 228, 0.1);
}
.top .wrap { display: flex; align-items: center; gap: 22px; width: min(1180px, calc(100% - 32px)); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: max-content; }
.brand svg { display: block; }
.brand b { font-family: var(--cond); font-size: 28px; letter-spacing: 0.08em; font-weight: 650; line-height: 1; }
.brand small { display: block; color: var(--muted); letter-spacing: 0.14em; font-size: 10px; text-transform: uppercase; }
.primary { display: flex; gap: 4px; flex: 1; }
.primary a, .tabbar a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
}
.primary a[aria-current="true"], .tabbar a[aria-current="true"] { color: var(--ink); }
.primary a[aria-current="true"] { box-shadow: inset 0 -2px 0 var(--turf); }
.lang { display: flex; border: 1px solid var(--line-strong); margin-left: auto; }
.lang button {
  padding: 7px 9px;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
}
.lang button[aria-pressed="true"] { background: var(--turf); color: var(--turf-ink); }
.search { position: relative; }
.search input {
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  width: 210px;
  border-radius: 0;
}
.search input::placeholder { color: var(--faint); }
.hits {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  width: 320px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  z-index: 40;
}
.hits button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
}
.hits button:hover { background: var(--bg-3); }
.hits em { color: var(--faint); font-style: normal; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  align-items: flex-end;
  margin: calc(var(--header) * -1) 0 0;
  padding: calc(var(--header) + 48px) 0 56px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 12, 28, 0.55) 0, rgba(2, 12, 28, 0.05) 28%, rgba(2, 12, 28, 0) 52%, rgba(1, 19, 41, 0.35) 78%, #013369 100%);
}
.sunday-flag {
  position: absolute;
  z-index: 2;
  top: calc(var(--header) + 18px);
  left: max(16px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: stretch;
  height: 52px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}
.sunday-nfl, .sunday-week, .sunday-tag {
  display: grid;
  place-items: center;
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 14px;
}
.sunday-nfl { background: #D50A0A; color: #fff; font-size: 32px; }
.sunday-week { background: #013369; color: #fff; font-size: 22px; }
.sunday-week b { font-size: 34px; letter-spacing: 0.02em; margin-left: 6px; }
.sunday-tag { background: #fff; color: #013369; font-size: 22px; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%); padding-right: 26px; }
.broadcast {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 210px;
  background: linear-gradient(90deg, #02101f 0%, #013369 46%, #02182e 100%);
  border-top: 6px solid #D50A0A;
  box-shadow: inset 0 3px 0 #fff;
  color: #fff;
}
.bug-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 12px 22px;
  color: #fff;
  text-align: left;
}
.bug-side { display: flex; align-items: center; gap: 12px; min-width: 0; }
.bug-home { justify-content: flex-end; text-align: right; }
.bug-chip {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--c);
  color: var(--t);
  font-family: var(--cond);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}
.bug-id { display: flex; flex-direction: column; min-width: 0; }
.bug-id b { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; opacity: 0.75; }
.bug-id strong { font-family: var(--cond); font-size: 40px; font-weight: 700; letter-spacing: 0.02em; line-height: 0.85; text-transform: uppercase; }
.bug-id small { letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; opacity: 0.8; }
.bug-mid { text-align: center; min-width: 140px; }
.bug-kicker { display: block; letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: #D50A0A; font-weight: 700; }
.bug-score { display: block; font-family: var(--cond); font-size: 48px; line-height: 0.85; font-weight: 700; }
.bug-score small { font-size: 22px; }
.bug-mid span { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.bug-sb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 18px;
  background: #D50A0A;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
}
.bug-sb span, .bug-sb small { letter-spacing: 0.14em; font-size: 12px; font-weight: 700; }
.bug-sb b { font-family: var(--cond); font-size: 42px; line-height: 0.85; }
.lede { font-size: 18px; max-width: 42ch; color: var(--ink); }
.meta-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; color: var(--muted); font-size: 14px; }
.meta-row b { color: var(--ink); font-weight: 580; }
.watermark {
  position: absolute;
  right: -20px;
  top: -30px;
  font-family: var(--cond);
  font-size: 280px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(223, 242, 90, 0.18);
  pointer-events: none;
  user-select: none;
}

.ticker {
  border: 0;
  background: #013369;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 0; animation: tick 80s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span { padding: 9px 0; font-family: var(--cond); letter-spacing: 0.06em; font-size: 18px; text-transform: uppercase; }
.ticker i { color: #ffd200; font-style: normal; padding: 0 14px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 64px 0; position: relative; z-index: 1; scroll-margin-top: 78px; }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 22px; flex-wrap: wrap; }
.section-head p { max-width: 62ch; color: var(--muted); margin: 0; }

.filters { display: flex; flex-wrap: wrap; gap: 6px; }
.filters button, .seg button {
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 7px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}
.filters button[aria-pressed="true"], .seg button[aria-pressed="true"] {
  background: var(--turf);
  color: var(--turf-ink);
  border-color: var(--turf);
}
.seg { display: flex; gap: 6px; }

.tnf {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 18px;
  padding: 18px;
  margin-bottom: 18px;
  background:
    linear-gradient(90deg, rgba(167, 25, 48, 0.35), transparent 28%),
    var(--bg-2);
  border: 1px solid var(--line);
}
.scoreline { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.scoreline b { font-family: var(--cond); font-size: 72px; line-height: 0.8; font-weight: 600; }
.qtrs { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; font-size: 13px; }
.qtrs th, .qtrs td { padding: 4px 6px; text-align: right; border-bottom: 1px solid var(--line); }
.qtrs th:first-child, .qtrs td:first-child { text-align: left; }
.facts { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.facts li { padding: 4px 0; border-bottom: 1px solid var(--line); }

.games { display: flex; flex-direction: column; border-top: 1px solid var(--line-strong); }
.game {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  width: 100%;
}
.game:hover { background: rgba(223, 242, 90, 0.04); }
.when { color: var(--muted); font-size: 13px; }
.when b { display: block; color: var(--ink); font-size: 18px; font-family: var(--cond); font-weight: 600; letter-spacing: 0.03em; }
.match { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.side { display: flex; align-items: center; gap: 8px; min-width: 180px; }
.side .rec { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 13px; }
.at { color: var(--ink); font-family: var(--cond); font-size: 20px; letter-spacing: 0.08em; }
.game-meta { display: flex; gap: 8px; align-items: center; justify-content: flex-end; flex-wrap: wrap; }
.pill {
  border: 1px solid var(--line-strong);
  padding: 3px 7px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pill.final { color: var(--turf); border-color: var(--turf); }
.pill.live { color: var(--flag); border-color: var(--flag); }
.pill.intl { color: var(--ink); border-color: var(--ink); }
.subline { color: var(--faint); font-size: 13px; }

.mark {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 26px;
  padding: 0 6px;
  background: var(--c);
  color: var(--t);
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 650;
}

.layout-2 { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 28px; align-items: start; }
.panel { border: 1px solid var(--line); background: rgba(16, 17, 14, 0.4); }
.panel h3 { padding: 14px 14px 0; }
.note { color: var(--muted); font-size: 13px; padding: 0 14px 12px; }

table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
th, td { padding: 8px 10px; text-align: right; border-bottom: 1px solid var(--line); white-space: nowrap; }
th:first-child, td:first-child, .left { text-align: left; }
th button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.divhead td {
  background: #0c0d0a;
  color: var(--turf);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 580;
  text-align: left;
}
tr.teamrow { cursor: pointer; }
tr.teamrow:hover td { background: rgba(223, 242, 90, 0.05); }
.pd-pos { color: var(--turf); }
.pd-neg { color: var(--flag); }
.scroll { overflow-x: auto; }

.seed {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-top: 1px solid var(--line);
  width: 100%;
  text-align: left;
  color: inherit;
}
.seed .n { font-family: var(--cond); font-size: 28px; line-height: 1; color: var(--muted); }
.seed.cut { box-shadow: inset 0 -2px 0 var(--flag); }
.seed .tag { color: var(--faint); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-left: 8px; }
.conf-label { padding: 14px 14px 4px; font-family: var(--cond); font-size: 28px; text-transform: uppercase; }

.bars { display: flex; flex-direction: column; }
.bar-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr 72px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
  width: 100%;
}
.track { height: 8px; background: #2a2d24; position: relative; }
.track > i { display: block; height: 100%; background: var(--turf); width: var(--w); }
.track.neg > i { background: var(--flag); }
.yds { font-family: var(--cond); font-size: 26px; text-align: right; line-height: 1; }
.who { display: flex; flex-direction: column; }
.who small { color: var(--muted); font-size: 12px; }

.stat-table td, .stat-table th { font-size: 14px; }
.stand { color: var(--faint); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }

.paper {
  background: var(--paper);
  color: var(--paper-ink);
  border-block: 10px solid #14160c;
  --ink: #1c1e18;
  --muted: #4e5348;
  --faint: #6a705f;
  --line: rgba(28, 30, 24, 0.14);
  --line-strong: rgba(28, 30, 24, 0.3);
  --turf: #3f5600;
  --bg-2: #efe8d8;
}
.paper .kicker { color: var(--flag); }
.paper .filters button { color: var(--paper-ink); border-color: rgba(28, 30, 24, 0.3); }
.paper .filters button[aria-pressed="true"] { background: #1c1e18; color: var(--paper); border-color: #1c1e18; }
.paper .track { background: rgba(28, 30, 24, 0.12); }
.paper .track > i { background: #1c1e18; }

.ref-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; align-items: start; }
.dossier {
  background: var(--paper-2);
  border: 1px solid rgba(28, 30, 24, 0.2);
  padding: 16px;
  position: sticky;
  top: 84px;
}
.dossier h3 { font-size: 42px; }
.split { display: flex; height: 14px; width: 100%; background: #ddd6c6; margin: 8px 0 4px; }
.split i:first-child { background: #1c1e18; }
.split i:last-child { background: var(--flag); }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
.metric { border: 1px solid rgba(28, 30, 24, 0.16); padding: 8px; }
.metric b { display: block; font-family: var(--cond); font-size: 32px; line-height: 1; }
.metric span { color: var(--muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.callout button { border: 1px solid rgba(28, 30, 24, 0.2); padding: 12px; text-align: left; color: inherit; font: inherit; }
.callout button:hover, .callout button[aria-pressed="true"] { background: rgba(28, 30, 24, 0.06); }
.callout b { font-family: var(--cond); font-size: 28px; display: block; line-height: 1; margin: 4px 0; }
select {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(28, 30, 24, 0.3);
  padding: 6px 8px;
  width: 100%;
}

.teams { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.tile {
  background: var(--bg-2);
  border: 0;
  border-top: 3px solid var(--c);
  color: inherit;
  text-align: left;
  padding: 10px;
  min-height: 104px;
}
.tile:hover { background: var(--bg-3); }
.tile .rec { font-family: var(--cond); font-size: 32px; line-height: 1; }
.tile small { color: var(--muted); display: block; }

.rules { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; }
.rule-list { margin: 0; padding: 0; list-style: none; }
.rule-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.rule-list strong { letter-spacing: 0.04em; }
.strikes { display: flex; gap: 8px; margin: 8px 0 0; }
.strikes i { width: 14px; height: 14px; border-radius: 50%; background: var(--flag); display: block; }
.lex { width: 100%; }
.lex td { white-space: normal; vertical-align: top; }
.wire { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.wire li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.wire b { color: var(--ink); }

.foot { border-top: 1px solid var(--line); padding: 28px 0 90px; color: var(--muted); font-size: 13px; }
.foot a { color: var(--turf); }

.tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(16, 17, 14, 0.96);
  border-top: 1px solid var(--line);
  justify-content: space-around;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}
.tabbar a { font-size: 11px; padding: 6px; }

dialog {
  border: 1px solid var(--line-strong);
  background: #16180f;
  color: var(--ink);
  width: min(560px, calc(100% - 24px));
  padding: 0;
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(0, 0, 0, 0.62); }
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding: 16px 16px 8px;
  border-top: 6px solid var(--c, var(--turf));
}
.sheet-body { padding: 0 16px 16px; }
.sheet-body dl { display: grid; grid-template-columns: 140px 1fr; gap: 6px 10px; margin: 12px 0; }
.sheet-body dt { color: var(--muted); }
.sheet-body dd { margin: 0; }
.close {
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 6px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.bigrec { font-family: var(--cond); font-size: 72px; line-height: 0.85; margin: 0; }

.empty { color: var(--muted); padding: 20px 0; }

@media (max-width: 1100px) {
  .game { grid-template-columns: 108px minmax(0, 1fr); }
  .when { grid-row: span 2; }
  .game-meta { justify-content: flex-start; }
}
@media (max-width: 980px) {
  .hero {
    min-height: 0;
    display: block;
    margin-top: 0;
    padding: 0;
  }
  .hero-photo {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: center center;
  }
  .hero::after { display: none; }
  .sunday-flag { top: 10px; left: 10px; height: 36px; }
  .sunday-nfl { font-size: 22px; padding: 0 8px; }
  .sunday-week, .sunday-tag { font-size: 16px; padding: 0 8px; }
  .sunday-week b { font-size: 22px; }
  .broadcast { position: relative; grid-template-columns: 1fr; }
  .bug-sb { display: none; }
  .bug-match {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "mid mid" "away home";
    gap: 6px 8px;
    padding: 12px;
  }
  .bug-mid { grid-area: mid; min-width: 0; }
  .bug-side:first-of-type { grid-area: away; }
  .bug-home { grid-area: home; }
  .bug-id b { display: none; }
  .bug-id strong { font-size: 22px; }
  .bug-chip { width: 44px; height: 44px; font-size: 18px; }
  .bug-score { font-size: 36px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid, .layout-2, .ref-layout, .rules, .tnf, .callout { grid-template-columns: 1fr; }
  .champ .sb { font-size: 52px; }
  .lede { font-size: 16px; }
  .teams { grid-template-columns: repeat(4, 1fr); }
  .dossier { position: static; }
  .primary { display: none; }
  .tabbar { display: flex; }
  .search input { width: 120px; }
  .game { grid-template-columns: 1fr; }
  .when { grid-row: auto; }
  .match { flex-direction: column; align-items: flex-start; gap: 3px; }
  .side { min-width: 0; }
  .at { font-size: 13px; line-height: 1; }
  .bar-row { grid-template-columns: 1fr; }
  .watermark { font-size: 160px; }
}
@media (max-width: 640px) {
  .teams, .wire, .metrics { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 56px; }
  .top .wrap { gap: 10px; }
  .champ p:last-child { display: none; }
  .champ { padding: 12px; }
  .section { padding: 42px 0; }
  .tnf { padding: 12px; }
  .scoreline b { font-size: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
}
