:root {
  --ink: #090b0f;
  --panel: #11141a;
  --panel-2: #151922;
  --line: #292e38;
  --muted: #9299a6;
  --paper: #f4f3ee;
  --acid: #d7ff38;
  --orange: #ff5f1f;
  --blue: #5dc8ff;
  --red: #ff4e58;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 5%, rgba(215, 255, 56, 0.08), transparent 25rem),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 48px 48px, 48px 48px, auto;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  grid-template-columns: 30px auto;
  column-gap: 11px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .12em;
}

.brand strong { grid-column: 2; color: var(--acid); font-size: .92rem; }
.brand-mark { grid-row: 1 / span 2; display: flex; gap: 3px; align-items: stretch; transform: skew(-10deg); }
.brand-mark i { width: 6px; background: var(--acid); display: block; }
.brand-mark i:nth-child(2) { opacity: .68; }
.brand-mark i:nth-child(3) { opacity: .36; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-alerts-slot:empty { display: none; }
.alerts-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #343a45;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.alerts-button:hover { color: var(--acid); border-color: #64741f; }
.alerts-button[aria-pressed="true"] { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.alerts-button:disabled { cursor: not-allowed; opacity: .48; }
.alerts-button:focus-visible { outline: 3px solid var(--acid); outline-offset: 3px; }
.alerts-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.notification-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.share-site {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 40;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid #8ca71e;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.share-site svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.share-site:hover { background: #c9ef35; }
.share-site:active { background: #bce32c; transform: translateY(1px); }
.share-site:focus-visible { outline: 3px solid var(--paper); outline-offset: 3px; }
@media (display-mode: standalone) {
  .share-site { bottom: calc(env(safe-area-inset-bottom) + 18px); }
}

.install-dialog {
  width: min(100% - 28px, 520px);
  max-width: none;
  padding: 0;
  border: 1px solid #4b535f;
  color: var(--paper);
  background: #11151c;
  box-shadow: 0 30px 90px rgba(0,0,0,.58);
}
.install-dialog::backdrop { background: rgba(4,6,9,.82); backdrop-filter: blur(5px); }
.install-panel { position: relative; padding: 30px; }
.install-panel h2 {
  max-width: 420px;
  margin: 0 46px 24px 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.install-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #3d4550;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}
.install-close svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.install-steps { display: grid; gap: 1px; margin: 0; padding: 0; list-style: none; background: #303741; }
.install-steps li {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  background: #191e26;
}
.install-steps li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-size: .76rem;
  font-weight: 900;
}
.install-steps strong { display: block; font-size: .9rem; }
.install-steps p { margin: 4px 0 0; color: #aeb4bd; font-size: .8rem; line-height: 1.45; }
.install-steps svg { width: 24px; fill: none; stroke: var(--acid); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.install-note { margin: 18px 0; color: #aeb4bd; font-size: .8rem; line-height: 1.5; }
.install-done {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--acid);
  color: var(--ink);
  background: var(--acid);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.install-close:hover { color: var(--acid); border-color: var(--acid); }
.install-done:hover { background: #c8ef2f; }
.install-close:focus-visible,
.install-done:focus-visible { outline: 3px solid var(--paper); outline-offset: 3px; }

.edition {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 14px;
  align-items: center;
  text-align: right;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .12em;
}
.edition span { color: var(--muted); }
.edition strong { font-size: .82rem; }

.report-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 5rem;
  padding: 72px 0 58px;
}

.report-intro--compact {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
  align-items: start;
  gap: 4rem;
  padding: 38px 0 34px;
}
.report-intro--compact h1 { margin-bottom: 18px; font-size: clamp(2.75rem, 5.4vw, 4.85rem); }

.intro-side { min-width: 0; display: grid; gap: 14px; }

.alert-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(215,255,56,.12), rgba(17,20,26,.96) 55%);
  border: 1px solid #67752c;
  box-shadow: var(--shadow);
}
.alert-card[hidden] { display: none; }
.alert-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--acid);
}
.alert-card h2 {
  max-width: 420px;
  margin: 0 0 9px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: .94;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.alert-card p:last-child { max-width: 510px; margin: 0; color: #b9bec7; font-size: .84rem; }
.alert-card .featured-label { margin-bottom: 11px; }
.alert-card .alerts-button {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  padding-inline: 18px;
  color: #0b0d11;
  background: var(--acid);
  border-color: #b9dc30;
  font-size: .76rem;
  font-weight: 900;
}
.alert-card .alerts-button:hover { color: #0b0d11; background: #c9ef35; border-color: #a9ca25; }
.alert-card .alerts-button:active { color: #0b0d11; background: #bce32c; transform: translateY(1px); }
.alert-card .alerts-button svg { color: #0b0d11; stroke-width: 2; }
.alerts-bell--ringing {
  transform-origin: 50% 12%;
  animation: alert-bell-ring 620ms cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes alert-bell-ring {
  0%, 100% { transform: rotate(0deg) scale(1); }
  14% { transform: rotate(-10deg) scale(1.015); }
  28% { transform: rotate(10deg) scale(1.02); }
  42% { transform: rotate(-8deg) scale(1.015); }
  56% { transform: rotate(7deg) scale(1.01); }
  70% { transform: rotate(-4deg) scale(1.005); }
  84% { transform: rotate(3deg) scale(1); }
}
.alert-card-action { width: 100%; display: grid; gap: 9px; }
.alert-card .alert-install-note {
  max-width: none;
  margin: 0;
  color: #858d98;
  font-size: .72rem;
  line-height: 1.4;
  text-align: center;
}

.featured-teams {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 21px;
  background: rgba(17,20,26,.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.featured-label {
  margin: 0 0 14px;
  color: var(--acid);
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.featured-team-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.featured-team {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  color: var(--paper);
  background: #191d24;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}
.featured-team .team-code { width: 31px; height: 31px; font-size: .53rem; }
.featured-more { margin: 13px 2px 0; color: var(--muted); font-size: .72rem; }

.edition-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.edition-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 10px;
  color: #aeb4bd;
  background: rgba(17,20,26,.78);
  border: 1px solid var(--line);
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .09em;
}
.edition-stats strong { color: var(--acid); font-size: 1rem; letter-spacing: -.02em; }

.published-time {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 8px;
  margin: 14px 0 0;
  color: #aeb4bd;
  font-size: .73rem;
}
.published-time span { color: var(--acid); font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.published-time time { font-weight: 750; }
.published-time small { color: #747c88; font-size: inherit; }
.published-time small:not(:empty)::before { content: "·"; margin-right: 8px; }

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .17em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 9px; height: 9px; background: var(--acid); box-shadow: 0 0 0 5px rgba(215,255,56,.1); }

h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  max-width: 850px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3.2rem, 7.4vw, 6.6rem);
  line-height: .86;
  letter-spacing: -.048em;
  text-transform: uppercase;
}
h1 em { color: var(--acid); font-style: normal; }
.dek { max-width: 650px; margin-bottom: 0; color: #bdc1c9; font-size: 1.12rem; }

.report-cta {
  width: fit-content;
  min-width: min(100%, 350px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 15px 17px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}
.report-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(215,255,56,.13); }
.report-cta:focus-visible { outline: 3px solid var(--paper); outline-offset: 4px; }
.report-cta span { font-size: .76rem; font-weight: 900; letter-spacing: .1em; }
.report-cta small { grid-column: 1; color: #434b19; font-size: .65rem; font-weight: 750; letter-spacing: .07em; }
.report-cta svg { grid-column: 2; grid-row: 1 / span 2; width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.report-cta--secondary { color: var(--paper); background: transparent; border-color: #3b424d; }
.report-cta--secondary small { color: var(--muted); }
.report-cta--secondary:hover { color: var(--acid); border-color: #718327; box-shadow: none; }

.index-key {
  padding: 24px;
  background: rgba(17,20,26,.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.index-key-top { display: flex; justify-content: space-between; align-items: baseline; text-transform: uppercase; font-size: .77rem; font-weight: 800; letter-spacing: .13em; }
.index-key-top strong { color: var(--acid); font-size: 1.8rem; letter-spacing: -.04em; }
.index-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin: 17px 0; }
.index-scale span { height: 7px; background: var(--acid); }
.index-scale span:nth-child(1) { opacity: .25; }
.index-scale span:nth-child(2) { opacity: .4; }
.index-scale span:nth-child(3) { opacity: .58; }
.index-scale span:nth-child(4) { opacity: .78; }
.index-key p { margin: 0; color: var(--muted); font-size: .86rem; }

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--panel);
}
.numbers div { padding: 24px 28px; display: flex; align-items: baseline; gap: 12px; border-right: 1px solid var(--line); }
.numbers div:last-child { border-right: 0; }
.numbers strong { font-family: "Arial Narrow", Impact, sans-serif; color: var(--acid); font-size: 2.15rem; letter-spacing: -.04em; }
.numbers span { color: var(--muted); text-transform: uppercase; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }

.report-shell {
  padding: 42px;
  color: #14171c;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.report-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 11px; }
.report-toolbar h2,
.method h2 { margin-bottom: 0; font-family: "Arial Narrow", Impact, sans-serif; text-transform: uppercase; font-size: clamp(2rem, 4vw, 3.2rem); line-height: .98; letter-spacing: -.035em; }
.report-toolbar .section-label { color: #777d86; }
.toolbar-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.feed-controls {
  width: min(100%, 390px);
  display: grid;
  gap: 8px;
}
.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  background: #e4e3de;
  border: 1px solid #c6c5bf;
}
.scope-control { min-height: 48px; }
.sort-control { min-height: 40px; }
.segmented-control button {
  min-height: 34px;
  padding: 0 13px;
  color: #636870;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font: inherit;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .075em;
  white-space: nowrap;
}
.scope-control button { min-height: 40px; font-size: .72rem; }
.sort-control button { min-height: 32px; font-size: .66rem; }
.segmented-control button[aria-pressed="true"] {
  color: #12151b;
  background: var(--acid);
  box-shadow: inset 0 0 0 1px #b4d72b;
}
.segmented-control button:hover:not([aria-pressed="true"]) { color: #20242b; background: #f2f1ed; }
.annual-filter-cta:focus-visible,
.annual-rankings-link a:focus-visible,
.details-toggle:focus-visible,
.segmented-control button:focus-visible,
.match-action:focus-visible,
.source-note a:focus-visible { outline: 3px solid #75930a; outline-offset: 3px; }
.annual-filter-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  color: #15191f;
  background: var(--acid);
  border: 1px solid #bddf32;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}
.annual-filter-cta:hover { background: #c8ef2f; border-color: #9fbd22; }
.annual-filter-cta svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.annual-rankings-link {
  display: flex;
  justify-content: flex-end;
  padding: 27px 4px 0;
}
.annual-rankings-link a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: #666c74;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .09em;
}
.annual-rankings-link a:hover { color: #20242b; }
.annual-rankings-link span { color: #708c0d; font-size: 1rem; transition: transform .2s ease; }
.annual-rankings-link a:hover span { transform: translateX(3px); }

.match-list { display: grid; gap: 14px; }
.match-card {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  background: white;
  border: 1px solid #dad9d4;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.match-card:hover { border-color: #aeb0aa; transform: translateY(-1px); box-shadow: 0 12px 35px rgba(20,23,28,.08); }
.match-card--lead { border-color: #b8baaf; }
.match-card.is-hiding { opacity: 0; transform: scale(.985); }
.match-card[hidden] { display: none; }
.rank { display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 18px 0 14px; color: #7c8188; background: #efeee9; border-right: 1px solid #dddcd6; font-family: "Arial Narrow", Impact, sans-serif; font-size: 1.2rem; }
.match-card--lead .rank { color: #12151b; background: var(--acid); border-color: #bddf32; }
.rank i { width: 1px; height: 30px; background: currentColor; opacity: .35; }
.match-body { min-width: 0; padding: 22px 26px 0; }
.match-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: #81858d; text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.match-meta > span { white-space: nowrap; }
.match-meta > span:not(:last-child)::after { content: "/"; margin-left: 10px; color: #b5b8bd; }
.match-meta .freshness {
  color: #5d6e16;
  font-size: .63rem;
  letter-spacing: .09em;
}
.competition { color: #20242b; }
.competition--bun { color: #bf181f; }
.competition--lal { color: #1864bd; }
.competition--pl { color: #5f2a86; }
.competition--ucl { color: #1743b3; }
.competition--efl { color: #b2490d; }
.competition--ere { color: #d43232; }
.competition--ita { color: #166d42; }
.scoreboard {
  display: grid;
  gap: 9px;
  margin: 22px 0 18px;
}
.score-row { display: grid; grid-template-columns: minmax(0, 1fr) 2.2rem; gap: 16px; align-items: center; min-width: 0; }
.team { display: flex; align-items: center; gap: 13px; min-width: 0; }
.team--away { justify-content: flex-start; text-align: left; }
.team--away .team-code { order: 0; }
.team strong { font-size: clamp(1.05rem, 2.5vw, 1.45rem); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-code { flex: 0 0 auto; display: grid; place-items: center; width: 43px; height: 43px; color: white; background: #171a20; border-radius: 50%; font-size: .66rem; font-weight: 900; letter-spacing: .05em; }
.team-code--gold { color: #12151b; background: var(--acid); }
.team-code--green { background: #0b8a58; }
.team-code--blue { background: #4b7cdf; }
.team-code--yellow { color: #151515; background: #ffd82f; }
.team-code--royal { background: #174caf; }
.team-code--red { background: #dd3038; }
.team-code--purple { background: #6f3fa0; }
.team-code--navy { background: #172c62; }
.team-code--sky { color: #10151d; background: #7fcdf0; }
.team-code--white { color: #1a1e24; background: #f7f7f3; border: 1px solid #b9bdc4; }
.team-code--redblack { background: linear-gradient(135deg, #d6192e 0 48%, #16191f 48%); }
.team-score { width: 2.2rem; color: #8a8e94; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1; letter-spacing: -.04em; text-align: right; font-variant-numeric: tabular-nums; }
.team-score--winner { color: #12151b; font-weight: 900; }
.match-summary { max-width: 830px; margin-bottom: 22px; color: #535963; font-size: .98rem; }
.drama-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  padding: 13px 0 11px;
  border-top: 1px solid #e2e1dc;
}
.drama-score {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 7px;
  row-gap: 1px;
  padding-left: 13px;
  white-space: nowrap;
}
.drama-score::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--acid);
}
.drama-score span {
  grid-column: 1 / -1;
  margin: 0;
  color: #343941;
  text-transform: uppercase;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1;
}
.drama-score strong {
  grid-column: 1;
  color: #1c2026;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 2.05rem;
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.02em;
}
.drama-score small {
  grid-column: 2;
  margin: 0 0 1px -4px;
  color: #656a72;
  font-size: .84rem;
  font-weight: 750;
  line-height: 1;
}
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tags span {
  padding: 6px 9px 6px 8px;
  color: #3f454e;
  background: #eeede8;
  border-left: 2px solid #bfdc32;
  font-size: .68rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .065em;
}
.details-toggle {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #e2e1dc;
  color: #24282f;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.details-toggle:hover { color: #527000; }
.details-toggle svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .25s ease; }
.details-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.match-details { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr); gap: 28px; margin: 0 -26px; padding: 25px 26px 28px; background: #f4f3ee; border-top: 1px solid #e2e1dc; }
.match-details[hidden] { display: none; }
.timeline-panel { min-width: 0; }
.timeline-sides {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  margin: 0 0 12px;
  color: #777d86;
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.timeline-sides span:first-child { grid-column: 1; padding-right: 15px; text-align: right; }
.timeline-sides span:last-child { grid-column: 3; padding-left: 15px; }
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 50%;
  width: 2px;
  background: #d4d4ce;
  transform: translateX(-1px);
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  min-height: 56px;
  color: #59606a;
  font-size: .78rem;
}
.timeline li:last-child { min-height: 30px; }
.timeline time {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  place-self: start center;
  display: grid;
  place-items: center;
  width: 50px;
  min-height: 28px;
  padding: 3px 4px;
  color: #1c2026;
  background: #f4f3ee;
  border: 1px solid #333942;
  border-radius: 999px;
  font-size: .69rem;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.timeline li.away time { border-color: #91ae1b; }
.timeline li.card-event time { color: #a81521; border-color: var(--red); border-radius: 3px; }
.timeline li.pivotal time { color: #15191f; background: var(--acid); border-color: #20242a; box-shadow: 0 0 0 2px #20242a; }
.timeline li > span { display: block; grid-row: 1; padding-top: 4px; overflow-wrap: anywhere; }
.timeline li.home > span { grid-column: 1; padding-right: 15px; text-align: right; }
.timeline li.away > span { grid-column: 3; padding-left: 15px; text-align: left; }
.timeline b { display: block; color: #1f2329; font-size: .7rem; }
.source-note { padding-left: 24px; border-left: 1px solid #d5d4cf; color: #656b74; font-size: .8rem; }
.source-note p { margin-bottom: 12px; }
.source-note .source-caveat { color: #7a654c; font-size: .74rem; }
.source-note a { color: #344800; font-weight: 850; text-decoration: none; text-transform: uppercase; font-size: .68rem; letter-spacing: .08em; }
.source-note a:hover { text-decoration: underline; text-underline-offset: 3px; }
.source-note a span { color: #739500; }
.source-links { display: flex; flex-wrap: wrap; gap: 8px 15px; }
.source-links a { display: inline-flex; gap: 4px; }
.match-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 0;
  margin: 0 0 10px;
}
.match-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: -5px 0;
  padding: 5px 6px;
  border: 0;
  border-radius: 0;
  color: #666c74;
  background: transparent;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
}
.match-action::before { flex: 0 0 auto; color: #848990; font-size: .78rem; line-height: 1; }
.match-action:hover { color: #20242b; text-decoration: underline; text-underline-offset: 3px; }
.match-action svg { display: none; }
.match-action--fotmob::before,
.match-action--report::before { content: "↗"; }
.match-action--video { color: #c9251b; font-weight: 800; }
.match-action--video::before { content: "▶"; color: #d8281e; font-size: .62rem; }
.match-action--video:hover { color: #a51c14; }
.match-action--live::before { content: "↗"; }

.previous-meta { display: flex; justify-content: space-between; gap: 12px; color: #7e838b; text-transform: uppercase; font-size: .64rem; font-weight: 850; letter-spacing: .1em; }
.previous-meta span { color: #22262d; }
.previous-scoreboard { display: grid; gap: 5px; margin: 15px 0 10px; }
.previous-score-row { display: grid; grid-template-columns: minmax(0, 1fr) 1.8rem; gap: 12px; align-items: center; min-width: 0; }
.previous-team-name { min-width: 0; font-size: clamp(1.05rem, 2.5vw, 1.45rem); font-weight: 700; line-height: 1.25; overflow-wrap: anywhere; }
.previous-score { width: 1.8rem; color: #8a8e94; font-family: "Arial Narrow", Impact, sans-serif; font-size: 1.55rem; font-weight: 700; line-height: 1; text-align: right; font-variant-numeric: tabular-nums; }
.previous-score--winner { color: #12151b; font-weight: 900; }
.match-card .previous-meta { justify-content: flex-start; gap: 10px; font-size: .68rem; letter-spacing: .12em; }
.match-card .previous-scoreboard { gap: 9px; margin: 22px 0 18px; }
.match-card .previous-score-row { grid-template-columns: minmax(0, 1fr) 2.2rem; gap: 16px; }
.match-card .previous-score { width: 2.2rem; font-size: 2.25rem; }

.annual-page .report-intro { align-items: center; }
.annual-page .index-key-top strong { font-size: 2.35rem; }
.annual-page .numbers { border-bottom: 0; }
.annual-window { color: var(--acid); }

.method {
  display: grid;
  grid-template-columns: .8fr 1.3fr;
  gap: 30px 70px;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.method > p { color: #a9afb8; margin: 0; }
.method .section-label { margin-bottom: 13px; }
.method h2 { color: var(--paper); }
.verified-note { grid-column: 2; display: flex; gap: 10px; align-items: flex-start; padding-top: 20px; border-top: 1px solid var(--line); font-size: .82rem; }
.verified-note span { color: var(--acid); font-weight: 900; }

footer { display: flex; justify-content: space-between; padding: 28px 0 40px; color: #6e7581; text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .13em; }
footer p { margin: 0; }

@media (max-width: 900px) {
  .report-intro { grid-template-columns: 1fr; gap: 32px; padding-top: 54px; }
  .report-intro--compact { grid-template-columns: 1fr; gap: 25px; padding: 34px 0 28px; }
  .intro-side { gap: 12px; }
  .index-key { display: grid; grid-template-columns: 160px 1fr; column-gap: 22px; align-items: center; }
  .index-key-top { grid-column: 1; }
  .index-scale { grid-column: 1; }
  .index-key p { grid-column: 2; grid-row: 1 / span 2; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .numbers div:nth-child(2) { border-right: 0; }
  .numbers div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .report-toolbar { align-items: flex-start; flex-direction: column; }
  .toolbar-actions { width: 100%; justify-content: flex-start; }
  .feed-controls { width: min(100%, 390px); }
  .match-details { grid-template-columns: 1fr; }
  .source-note { padding: 18px 0 0; border: 0; border-top: 1px solid #d5d4cf; }
}

@media (max-width: 650px) {
  .site-header, main, footer { width: min(100% - 24px, 1180px); }
  .site-header { min-height: 76px; }
  .header-actions { gap: 10px; }
  .alerts-button { min-height: 36px; padding: 0 10px; }
  .alerts-button svg { width: 15px; }
  .edition { display: block; }
  .edition span { display: none; }
  .edition strong { font-size: .68rem; }
  .install-panel { padding: 24px 18px 20px; }
  .install-panel h2 { margin-right: 42px; }
  .install-close { top: 14px; right: 14px; }
  .install-steps li { grid-template-columns: 32px minmax(0, 1fr) auto; gap: 11px; padding-inline: 13px; }
  .share-site {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 82px);
    min-height: 44px;
    padding-inline: 14px;
  }
  .report-intro { padding: 45px 4px 40px; }
  .report-intro--compact { padding: 27px 4px 23px; }
  .report-intro--compact h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
    line-height: .93;
    letter-spacing: .006em;
  }
  .alert-card { grid-template-columns: 1fr; align-items: start; gap: 18px; padding: 20px; }
  .alert-card h2 {
    line-height: .95;
    letter-spacing: .008em;
  }
  .alert-card .alerts-button { width: 100%; justify-content: center; }
  .featured-teams { padding: 16px; }
  .featured-team-list {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding: 0 0 6px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }
  .featured-team-list::-webkit-scrollbar { display: none; }
  .featured-team {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    gap: 7px;
    padding: 6px clamp(7px, 2vw, 9px);
    overflow: visible;
    font-size: .7rem;
    scroll-snap-align: start;
  }
  .featured-team .team-code { flex: 0 0 27px; width: 27px; height: 27px; font-size: .48rem; }
  h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .dek { font-size: 1rem; }
  .report-cta { width: 100%; min-width: 0; }
  .index-key { grid-template-columns: 1fr; padding: 20px; }
  .index-key-top, .index-scale, .index-key p { grid-column: 1; grid-row: auto; }
  .numbers div { padding: 17px 18px; }
  .numbers strong { font-size: 1.75rem; }
  .numbers span { font-size: .62rem; }
  .report-shell { margin-inline: -12px; padding: 30px 12px; }
  .report-toolbar { padding: 0 4px; }
  .toolbar-actions { width: 100%; }
  .feed-controls,
  .segmented-control { width: 100%; }
  .annual-rankings-link { justify-content: flex-start; padding-inline: 4px; }
  .match-card { grid-template-columns: 46px minmax(0, 1fr); }
  .rank { font-size: .96rem; }
  .match-body { padding: 18px 15px 0; }
  .match-meta { gap: 7px; letter-spacing: .07em; }
  .match-meta > span:not(:last-child)::after { margin-left: 7px; }
  .scoreboard { gap: 8px; margin: 20px 0 17px; }
  .score-row { grid-template-columns: minmax(0, 1fr) 1.9rem; gap: 12px; }
  .team strong { font-size: 1.12rem; }
  .team-code { width: 34px; height: 34px; font-size: .58rem; }
  .team-score { width: 1.9rem; font-size: 2rem; }
  .match-card .previous-meta { gap: 7px; letter-spacing: .07em; }
  .match-card .previous-scoreboard { gap: 8px; margin: 20px 0 17px; }
  .match-card .previous-score-row { grid-template-columns: minmax(0, 1fr) 1.9rem; gap: 12px; }
  .match-card .previous-score { width: 1.9rem; font-size: 2rem; }
  .match-summary { font-size: .91rem; }
  .drama-row { gap: 8px; padding-block: 11px 10px; }
  .match-details { margin: 0 -15px; padding: 22px 15px 25px; }
  .timeline-sides,
  .timeline li { grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr); }
  .timeline li { min-height: 62px; font-size: .72rem; }
  .timeline time { width: 46px; font-size: .65rem; }
  .timeline li.home > span { padding-right: 10px; }
  .timeline li.away > span { padding-left: 10px; }
  .timeline-sides span:first-child { padding-right: 10px; }
  .timeline-sides span:last-child { padding-left: 10px; }
  .method { grid-template-columns: 1fr; padding: 55px 4px; gap: 24px; }
  .verified-note { grid-column: 1; }
  footer { padding-inline: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .alerts-bell--ringing { animation: none !important; }
}
