:root {
  --ink: #14251f;
  --paper: #f5f1e8;
  --panel: #fffdf8;
  --line: #c8d2c5;
  --grass: #14734b;
  --signal: #ff6b2c;
  --night: #0c2f25;
  --muted: #5d6b65;
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Trebuchet MS", "Segoe UI", sans-serif; line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; }
.scoreline { overflow: hidden; color: #fff; background: var(--night); border-bottom: 3px solid var(--signal); }
.scoreline div { width: max-content; padding: .48rem 0; animation: ticker 30s linear infinite; font: 700 .74rem/1.2 Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.scoreline span { margin-right: 3.2rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
.shell { width: min(1160px, calc(100% - 32px)); margin: auto; }
header { position: sticky; top: 0; z-index: 5; background: rgba(245,241,232,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.topbar { min-height: 74px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font: 900 1.18rem/1 "Arial Black", sans-serif; }
.brand img { width: 42px; height: 42px; }
nav { display: flex; gap: 18px; margin-left: auto; align-items: center; }
nav a { color: #31443c; font-size: .92rem; text-decoration: none; }
nav a:hover, .text-link:hover { color: var(--grass); text-decoration: underline; }
.cta { display: inline-flex; justify-content: center; align-items: center; min-height: 44px; padding: .7rem 1.15rem; border-radius: 999px; color: #fff; background: var(--signal); box-shadow: 0 7px 0 #ba3a09; font-weight: 900; text-decoration: none; }
.cta:hover { transform: translateY(2px); box-shadow: 0 5px 0 #ba3a09; }
main { padding: 52px 0 70px; }
.hero { display: grid; grid-template-columns: 1.35fr .65fr; gap: 34px; align-items: stretch; }
.kicker { margin: 0 0 10px; color: var(--grass); font: 800 .76rem/1.2 Consolas, monospace; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; }
h1 { max-width: 880px; margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(2.3rem, 6vw, 5.3rem); letter-spacing: -.055em; }
h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.45rem); }
h3 { margin: 0 0 8px; }
.lead { max-width: 760px; color: #3f4f48; font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 28px 0; }
.text-link { align-self: center; color: var(--grass); font-weight: 800; }
.fixture { padding: 24px; color: #fff; background: var(--night); border-radius: 28px 6px 28px 6px; }
.fixture .league { color: #9bd8b9; font: 700 .75rem Consolas, monospace; text-transform: uppercase; }
.fixture .teams { display: grid; gap: 9px; margin: 25px 0; font: 800 1.05rem Georgia, serif; }
.fixture .odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.fixture .odds span { padding: 10px; color: var(--ink); background: #fff; border-radius: 8px; text-align: center; font-weight: 800; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 38px 0; }
.stat { padding: 18px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.stat b { display: block; color: var(--grass); font: 900 1.45rem Georgia, serif; }
.editorial { display: grid; grid-template-columns: 1.4fr .6fr; gap: 22px; margin-top: 28px; }
.card, .page-intro, .note, details { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.card { padding: 24px; }
.card.feature { border-top: 6px solid var(--signal); }
.card ul, .page-intro ul { padding-left: 1.2rem; }
.card li + li, .page-intro li + li { margin-top: .45rem; }
.timeline { counter-reset: step; display: grid; gap: 14px; }
.timeline article { position: relative; padding: 18px 18px 18px 64px; background: #e8eee8; border-radius: 14px; }
.timeline article::before { counter-increment: step; content: counter(step); position: absolute; left: 17px; top: 17px; display: grid; place-items: center; width: 30px; height: 30px; color: #fff; background: var(--grass); border-radius: 50%; font-weight: 900; }
.page-intro { max-width: 920px; padding: clamp(24px, 5vw, 54px); border-top: 8px solid var(--grass); }
.page-intro h1 { font-size: clamp(2.1rem, 5vw, 4.4rem); }
.page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.note { margin-top: 22px; padding: 20px; border-left: 5px solid var(--signal); }
.crumbs { margin-bottom: 22px; color: var(--muted); font-size: .88rem; }
details { padding: 16px 18px; }
details + details { margin-top: 10px; }
summary { cursor: pointer; font-weight: 800; }
.network { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0; list-style: none; }
.network a { display: block; padding: 12px; background: #e8eee8; border-radius: 10px; text-align: center; text-decoration: none; }
footer { padding: 38px 0; color: #dce7e0; background: var(--night); }
.footgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footlinks { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footlinks a { color: #fff; }
.fine { color: #a9beb4; font-size: .82rem; }
@media (max-width: 800px) {
  nav a:not(.cta) { display: none; }
  .hero, .editorial, .page-grid, .footgrid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .network { grid-template-columns: repeat(2, 1fr); }
  main { padding-top: 34px; }
}
@media (prefers-reduced-motion: reduce) { .scoreline div { animation: none; } }
.em { font-weight: 800; }
