:root {
    color-scheme: dark;
    --bg: #071018;
    --bg-deep: #040a10;
    --surface: #0d1926;
    --surface-raised: #132235;
    --surface-soft: #101e2d;
    --border: #26374a;
    --border-soft: rgba(165, 177, 191, 0.14);
    --text: #f7fafc;
    --text-soft: #d8e0e9;
    --muted: #a5b1bf;
    --muted-dark: #758497;
    --accent: #d8ff3e;
    --accent-hover: #c4ed22;
    --data: #57b8ff;
    --live: #ff4967;
    --warning: #ffcc66;
    --success: #42d392;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --container: 1200px;
    --header-height: 76px;
    --transition: 160ms ease;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 74px);
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 88% 4%, rgba(87, 184, 255, 0.09), transparent 25rem),
        radial-gradient(circle at 10% 18%, rgba(216, 255, 62, 0.055), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 76%);
    mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

::selection {
    background: var(--accent);
    color: var(--bg-deep);
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

p,
h1,
h2,
h3,
ol,
ul,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 72px);
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--bg-deep);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-shell {
    min-height: 100vh;
    overflow: clip;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 16, 24, 0.82);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 11px;
    color: var(--text);
    text-decoration: none;
}

.brand__mark {
    position: relative;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(216, 255, 62, 0.5);
    border-radius: 9px 2px 9px 2px;
    background: var(--accent);
    color: var(--bg-deep);
    box-shadow: 0 0 28px rgba(216, 255, 62, 0.12);
    transform: skewX(-7deg);
}

.brand__mark span {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    transform: skewX(7deg);
}

.brand__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-stretch: condensed;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
}

.brand__name span {
    color: var(--muted);
}

.brand__name strong {
    color: var(--accent);
    font-weight: 900;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

.site-nav a {
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: var(--surface-raised);
    color: var(--text);
}

.header-pulse {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-pulse > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(66, 211, 146, 0.09);
}

.eyebrow,
.overline {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow > span {
    width: 32px;
    height: 1px;
    background: currentColor;
}

.overline span {
    color: var(--muted-dark);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--accent);
    color: var(--bg-deep);
    box-shadow: 0 10px 36px rgba(216, 255, 62, 0.1);
}

.button--primary:hover {
    background: var(--accent-hover);
}

.button--ghost {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.button--ghost:hover {
    border-color: var(--muted-dark);
    background: var(--surface-raised);
}

/* Home */
.home-hero {
    position: relative;
    padding: 98px 0 68px;
}

.home-hero::after {
    position: absolute;
    right: -8vw;
    bottom: 0;
    width: 42vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 255, 62, 0.4), transparent);
    content: "";
    transform: rotate(-11deg);
}

.home-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 760px) 1fr;
    align-items: end;
    gap: 48px;
}

.home-hero h1,
.not-found h1 {
    max-width: 820px;
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(4rem, 9.2vw, 8.25rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.78;
    text-transform: uppercase;
}

.home-hero h1 em,
.not-found h1 em {
    color: var(--accent);
    font-style: normal;
    -webkit-text-stroke: 1px rgba(216, 255, 62, 0.35);
}

.home-hero__lead {
    max-width: 580px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
}

.hero-index {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: end;
    gap: 12px 16px;
    padding-bottom: 10px;
    color: var(--muted-dark);
}

.hero-index > span {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 900;
    line-height: 0.8;
}

.hero-index > div {
    height: 1px;
    margin-bottom: 3px;
    background: var(--border);
}

.hero-index small {
    grid-column: 2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.45;
}

.featured-section {
    padding-bottom: 30px;
}

.featured-match {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%),
        var(--surface);
    box-shadow: var(--shadow);
}

.featured-match::before,
.featured-match::after {
    position: absolute;
    z-index: -1;
    content: "";
    pointer-events: none;
}

.featured-match::before {
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.055) 50%, transparent 50.1%),
        radial-gradient(circle at center, transparent 0 82px, rgba(255, 255, 255, 0.055) 83px 84px, transparent 85px);
}

.featured-match::after {
    top: -80%;
    left: 50%;
    width: 1px;
    height: 260%;
    background: rgba(216, 255, 62, 0.08);
    transform: rotate(28deg);
}

.featured-match__glow {
    position: absolute;
    z-index: -1;
    top: -180px;
    left: 50%;
    width: 500px;
    height: 300px;
    border-radius: 50%;
    background: rgba(216, 255, 62, 0.095);
    filter: blur(90px);
    transform: translateX(-50%);
}

.featured-match__header,
.featured-match__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
}

.featured-match__header {
    border-bottom: 1px solid var(--border-soft);
}

.featured-match__header .overline {
    margin-bottom: 7px;
}

.competition-line {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.competition-line span {
    padding-inline: 5px;
    color: var(--muted-dark);
}

.status-chip,
.status-dot {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.status-chip {
    gap: 8px;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.status-chip > span,
.status-dot i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted-dark);
}

.status-chip--live,
.status-dot--live {
    color: #ff879a;
}

.status-chip--live > span,
.status-dot--live i {
    background: var(--live);
    box-shadow: 0 0 0 4px rgba(255, 73, 103, 0.12);
    animation: status-pulse 1.8s ease-out infinite;
}

.status-chip--finished > span,
.status-chip--completed > span,
.status-dot--finished i,
.status-dot--completed i {
    background: var(--success);
}

.status-chip--postponed > span,
.status-chip--cancelled > span,
.status-dot--postponed i,
.status-dot--cancelled i {
    background: var(--warning);
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 73, 103, 0.1); }
    50% { box-shadow: 0 0 0 7px rgba(255, 73, 103, 0); }
}

.featured-match__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    min-height: 300px;
    padding: 42px clamp(28px, 5vw, 72px);
}

.team {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 22px;
}

.team--away {
    flex-direction: row-reverse;
    text-align: right;
}

.team h2 {
    min-width: 0;
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4.4rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.9;
    text-transform: uppercase;
}

.team-code {
    position: relative;
    isolation: isolate;
    display: grid;
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    background: var(--surface-raised);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.16);
}

.team-code::before {
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 36%;
    background: var(--team-color);
    content: "";
}

.kickoff {
    display: grid;
    min-width: 120px;
    justify-items: center;
    gap: 9px;
    text-align: center;
}

.kickoff__time,
.kickoff__score {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.8;
}

.kickoff__score span {
    padding-inline: 5px;
    color: var(--accent);
}

.kickoff > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.featured-match__footer {
    border-top: 1px solid var(--border-soft);
    background: rgba(4, 10, 16, 0.26);
}

.match-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.match-location > span {
    color: var(--accent);
    font-size: 20px;
}

.section {
    padding: 80px 0 110px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.section-heading .overline {
    margin-bottom: 8px;
}

.section-heading h2,
.section-kicker h2 {
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-transform: uppercase;
}

.section-heading > p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.event-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: rgba(13, 25, 38, 0.78);
    transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
    border-color: rgba(216, 255, 62, 0.26);
    background: var(--surface);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.event-card__header {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-soft);
}

.event-card__header p {
    overflow: hidden;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-card__header p span {
    color: var(--muted-dark);
}

.status-dot {
    gap: 6px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.event-card__teams {
    display: grid;
    gap: 18px;
    padding: 25px 20px;
}

.event-card__team {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
}

.event-card__team strong {
    overflow: hidden;
    font-size: 14px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-card__team b {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
}

.mini-code {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-raised);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.mini-code::after {
    position: absolute;
    right: 6px;
    bottom: 3px;
    left: 6px;
    height: 2px;
    border-radius: 2px;
    background: var(--team-color);
    content: "";
}

.event-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    margin-top: auto;
    padding: 15px 18px;
    border-top: 1px solid var(--border-soft);
    background: rgba(4, 10, 16, 0.2);
}

.event-card__footer > div {
    display: grid;
    gap: 1px;
}

.event-card__footer time {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.event-card__footer div > span {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.card-link span {
    font-size: 17px;
    transition: transform var(--transition);
}

.card-link:hover span {
    transform: translateX(3px);
}

.empty-state,
.only-featured {
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    background: rgba(13, 25, 38, 0.42);
}

.empty-state {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 32px;
}

.empty-state__icon {
    color: var(--border);
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.empty-state h3 {
    margin-bottom: 4px;
}

.empty-state p,
.only-featured {
    color: var(--muted);
}

.empty-state p {
    margin-bottom: 0;
}

.only-featured {
    padding: 24px;
    text-align: center;
}

/* Event page */
.event-page {
    padding: 30px 0 110px;
}

.breadcrumbs {
    margin-bottom: 34px;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.breadcrumbs li {
    overflow: hidden;
    color: var(--muted-dark);
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumbs li + li::before {
    padding-right: 9px;
    color: var(--border);
    content: "/";
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.match-hero {
    position: relative;
    padding: 0 0 48px;
}

.match-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    content: "";
}

.match-hero__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.match-hero__meta .overline {
    margin-bottom: 0;
}

.match-hero h1 {
    margin-bottom: 40px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.match-hero h1 span {
    padding-inline: 7px;
    color: var(--muted-dark);
}

.scoreboard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
    align-items: center;
    gap: 42px;
    max-width: 1020px;
    margin-inline: auto;
}

.scoreboard__team {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 22px;
}

.scoreboard__team > div {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.scoreboard__team > div > span {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.scoreboard__team strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.8vw, 4.9rem);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.88;
    text-transform: uppercase;
}

.scoreboard__team--away {
    flex-direction: row-reverse;
    text-align: right;
}

.team-code--large {
    width: 92px;
    height: 92px;
    font-size: 21px;
}

.scoreboard__centre {
    display: grid;
    justify-items: center;
    gap: 9px;
    text-align: center;
}

.scoreboard__score,
.scoreboard__time {
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.75;
}

.scoreboard__score span {
    padding-inline: 7px;
    color: var(--accent);
}

.scoreboard__centre > span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.match-hero__facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin-top: 38px;
    color: var(--muted);
    font-size: 12px;
}

.match-hero__facts span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.match-hero__facts i {
    color: var(--accent);
    font-size: 16px;
    font-style: normal;
}

.video-section {
    padding-top: 74px;
}

.section-kicker {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.section-kicker .overline {
    margin-bottom: 9px;
}

.section-kicker--compact h2 {
    font-size: 2.15rem;
}

.section-number {
    color: var(--border);
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 900;
    line-height: 0.8;
}

.video-player {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 9;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.video-player--static .play-button[disabled] {
    opacity: 1;
    cursor: default;
}

.video-player--static .play-button[disabled]:hover {
    background: var(--accent);
    box-shadow: 0 0 0 12px rgba(216, 255, 62, 0.07), 0 18px 44px rgba(0, 0, 0, 0.35);
    transform: none;
}

.play-button {
    position: relative;
    display: grid;
    width: 84px;
    height: 84px;
    margin-block: 7px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-deep);
    box-shadow: 0 0 0 12px rgba(216, 255, 62, 0.07), 0 18px 44px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.play-button span {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid currentColor;
}

.player-ad {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.94);
}

[data-adblock-bait] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0.01;
    pointer-events: none;
}

.adblock-wall {
    position: absolute;
    z-index: 5;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.97);
}

.adblock-wall[hidden] {
    display: none;
}

.adblock-wall__panel {
    display: grid;
    width: min(100%, 480px);
    justify-items: center;
    gap: 12px;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(255, 73, 103, 0.38);
    border-radius: var(--radius-md);
    background: var(--surface);
    text-align: center;
}

.adblock-wall__panel > span {
    color: var(--live);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.adblock-wall__panel > strong {
    font-size: clamp(1.25rem, 4vw, 1.9rem);
}

.adblock-wall__panel p {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.adblock-wall__panel button {
    min-width: 170px;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: var(--bg-deep);
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.player-ad[hidden] {
    display: none;
}

.player-ad__panel {
    display: grid;
    width: min(100%, 440px);
    justify-items: center;
    gap: 12px;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.player-ad__label {
    color: var(--accent);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.player-ad__panel > strong {
    font-size: clamp(1.25rem, 4vw, 1.9rem);
}

.player-ad__panel p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.player-ad__cta,
.player-ad__close {
    display: inline-flex;
    min-width: 170px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.player-ad__cta {
    background: var(--accent);
    color: var(--bg-deep);
}

.player-ad__close {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    cursor: pointer;
}

.player-ad__close:disabled {
    color: var(--muted-dark);
    cursor: not-allowed;
    opacity: 0.5;
}

.section-note {
    color: var(--muted-dark);
    font-size: 11px;
    line-height: 1.6;
}

.event-nav {
    position: sticky;
    z-index: 50;
    top: var(--header-height);
    display: flex;
    gap: 4px;
    overflow-x: auto;
    margin: 55px 0 0;
    padding: 9px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: rgba(7, 16, 24, 0.88);
    scrollbar-width: none;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.event-nav::-webkit-scrollbar {
    display: none;
}

.event-nav a {
    display: inline-flex;
    min-height: 39px;
    flex: 0 0 auto;
    align-items: center;
    padding: 0 15px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.event-nav a:hover,
.event-nav a:focus-visible {
    background: var(--surface-raised);
    color: var(--text);
}

.event-content {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
    gap: 18px;
    padding-top: 72px;
}

.content-panel,
.content-section,
.stats-panel {
    border: 1px solid var(--border-soft);
    background: rgba(13, 25, 38, 0.66);
}

.content-panel {
    min-width: 0;
    padding: clamp(25px, 4vw, 44px);
    border-radius: var(--radius-lg);
}

.content-panel--lead {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 48%),
        rgba(13, 25, 38, 0.66);
}

.lede {
    max-width: 760px;
    margin-bottom: 25px;
    color: var(--text-soft);
    font-size: clamp(1.12rem, 2.2vw, 1.42rem);
    font-weight: 600;
    line-height: 1.58;
}

.prose {
    max-width: 760px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.prose p:last-child,
.muted-copy:last-child {
    margin-bottom: 0;
}

.muted-copy {
    color: var(--muted);
}

.match-data dl {
    margin-bottom: 0;
}

.match-data dl > div {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border-soft);
}

.match-data dt {
    color: var(--muted-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.match-data dd {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650;
    text-align: right;
}

.content-section {
    margin-top: 18px;
    padding: clamp(26px, 4vw, 48px);
    border-radius: var(--radius-lg);
}

.info-badge {
    display: inline-block;
    margin-right: 8px;
    padding: 5px 8px;
    border: 1px solid rgba(216, 255, 62, 0.24);
    border-radius: 999px;
    background: rgba(216, 255, 62, 0.07);
    color: var(--accent);
    letter-spacing: 0.08em;
}

.lineups-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lineup-card {
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: rgba(4, 10, 16, 0.28);
}

.lineup-card > header {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 19px;
    border-bottom: 1px solid var(--border-soft);
}

.lineup-card > header > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
}

.lineup-card > header > div > div {
    min-width: 0;
}

.lineup-card header span:not(.mini-code) {
    display: block;
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lineup-card h3 {
    overflow: hidden;
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.formation {
    padding: 7px 9px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.players-list {
    padding: 9px 19px;
    margin-bottom: 0;
    list-style: none;
}

.players-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 47px;
    border-bottom: 1px solid rgba(165, 177, 191, 0.09);
}

.players-list li:last-child {
    border-bottom: 0;
}

.player-number {
    color: var(--muted-dark);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
}

.player-name {
    overflow: hidden;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.players-list small {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lineup-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    padding: 12px 19px;
    border-top: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.018);
}

.lineup-card footer span {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lineup-card footer strong {
    font-size: 12px;
}

.lineup-empty {
    padding: 30px 19px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.section-note {
    margin: 18px 2px 0;
}

.stats-panel {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(4, 10, 16, 0.3);
}

.stats-panel__teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.stats-list {
    padding: 11px 22px 18px;
    margin-bottom: 0;
}

.stat-row {
    padding: 14px 0;
}

.stat-row + .stat-row {
    border-top: 1px solid rgba(165, 177, 191, 0.075);
}

.stat-row__values {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 12px;
    margin-bottom: 9px;
}

.stat-row__values dt {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.stat-row__values dd {
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 900;
}

.stat-row__values dd:last-child {
    text-align: right;
}

.stat-bar {
    position: relative;
    display: grid;
    grid-template-columns: var(--home-stat) calc(100% - var(--home-stat));
    gap: 3px;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-raised);
}

.stat-bar span {
    background: var(--accent);
}

.stat-bar i {
    background: var(--data);
}

.odds-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    font-variant-numeric: tabular-nums;
}

.odds-table th,
.odds-table td {
    height: 58px;
    padding: 11px 18px;
    border-bottom: 1px solid var(--border-soft);
    text-align: center;
}

.odds-table tr:last-child th,
.odds-table tr:last-child td {
    border-bottom: 0;
}

.odds-table thead th {
    background: rgba(4, 10, 16, 0.32);
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.odds-table th:first-child {
    min-width: 150px;
    text-align: left;
}

.odds-table tbody th {
    color: var(--text-soft);
    font-size: 12px;
}

.odds-table tbody th a {
    text-decoration-color: var(--border);
    text-underline-offset: 3px;
}

.odds-table tbody th a:hover {
    color: var(--accent);
}

.odds-table td {
    min-width: 100px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
}

.sources-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.sources-list a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 17px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: rgba(4, 10, 16, 0.25);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.sources-list a:hover {
    border-color: rgba(216, 255, 62, 0.28);
    background: var(--surface-raised);
    color: var(--accent);
}

.sources-list i {
    color: var(--accent);
    font-size: 17px;
    font-style: normal;
}

/* 404 */
.not-found {
    display: grid;
    min-height: calc(100vh - var(--header-height));
    place-items: center;
    padding: 80px 0 120px;
}

.not-found__inner {
    position: relative;
}

.not-found__score {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 2%;
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--font-display);
    font-size: clamp(13rem, 31vw, 30rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    line-height: 0.5;
    transform: translateY(-50%);
    user-select: none;
}

.not-found__score i {
    display: block;
    width: 8vw;
    max-width: 110px;
    height: 2px;
    background: rgba(216, 255, 62, 0.08);
}

.not-found h1 {
    max-width: 900px;
    font-size: clamp(3.8rem, 9vw, 8rem);
}

.not-found__inner > p:not(.eyebrow) {
    max-width: 540px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 17px;
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-soft);
    background: rgba(4, 10, 16, 0.55);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 0.8fr);
    gap: 64px;
    padding-block: 56px;
}

.brand--footer {
    margin-bottom: 16px;
}

.site-footer__tagline {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.site-footer__note {
    color: var(--muted-dark);
    font-size: 11px;
    line-height: 1.75;
}

.site-footer__note p:last-child {
    margin-bottom: 0;
}

.site-footer__base {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--border-soft);
    color: var(--muted-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .home-hero__inner {
        grid-template-columns: 1fr;
    }

    .hero-index {
        display: none;
    }

    .featured-match__body {
        gap: 20px;
        padding-inline: 28px;
    }

    .team {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .team--away {
        flex-direction: column;
        text-align: center;
    }

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scoreboard {
        grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
        gap: 24px;
    }

    .scoreboard__team,
    .scoreboard__team--away {
        flex-direction: column;
        gap: 13px;
        text-align: center;
    }

    .scoreboard__team > div > span {
        display: none;
    }

    .event-content {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        gap: 40px;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 66px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        display: none;
    }

    .brand__name {
        font-size: 18px;
    }

    .brand__mark {
        width: 29px;
        height: 29px;
    }

    .home-hero {
        padding: 72px 0 50px;
    }

    .home-hero h1,
    .not-found h1 {
        font-size: clamp(3.5rem, 16vw, 6.2rem);
        line-height: 0.82;
    }

    .home-hero__lead {
        max-width: 470px;
        font-size: 15px;
    }

    .featured-match {
        border-radius: var(--radius-lg);
    }

    .featured-match__header,
    .featured-match__footer {
        padding: 18px;
    }

    .featured-match__body {
        min-height: 260px;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 9px;
        padding: 32px 14px;
    }

    .team-code {
        width: 56px;
        height: 56px;
        font-size: 13px;
    }

    .team h2 {
        max-width: 120px;
        font-size: clamp(1.45rem, 7vw, 2.2rem);
    }

    .kickoff {
        min-width: 70px;
    }

    .kickoff__time,
    .kickoff__score {
        font-size: 2.5rem;
    }

    .kickoff > span {
        max-width: 80px;
        font-size: 8px;
    }

    .featured-match__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .match-location {
        padding-inline: 2px;
    }

    .section {
        padding: 62px 0 80px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 6px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-height: 290px;
    }

    .event-page {
        padding-top: 22px;
    }

    .breadcrumbs {
        margin-bottom: 26px;
    }

    .match-hero__meta {
        margin-bottom: 22px;
    }

    .match-hero h1 {
        margin-bottom: 30px;
    }

    .scoreboard {
        grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
        gap: 9px;
    }

    .team-code--large {
        width: 62px;
        height: 62px;
        font-size: 14px;
    }

    .scoreboard__team strong {
        max-width: 120px;
        font-size: clamp(1.55rem, 7.5vw, 2.5rem);
    }

    .scoreboard__score,
    .scoreboard__time {
        font-size: clamp(3.1rem, 15vw, 4.5rem);
    }

    .scoreboard__score span {
        padding-inline: 3px;
    }

    .scoreboard__centre > span {
        max-width: 80px;
        font-size: 8px;
        line-height: 1.45;
    }

    .match-hero__facts {
        align-items: center;
        flex-direction: column;
        margin-top: 28px;
    }

    .video-section {
        padding-top: 56px;
    }

    .section-kicker {
        margin-bottom: 22px;
    }

    .section-kicker h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .section-number {
        font-size: 38px;
    }

    .video-player {
        border-radius: var(--radius-md);
    }

    .play-button {
        width: 64px;
        height: 64px;
        margin-block: 0;
        box-shadow: 0 0 0 8px rgba(216, 255, 62, 0.07);
    }

    .event-nav {
        width: calc(100% + 16px);
        margin-top: 42px;
        border-right: 0;
        border-radius: var(--radius-md) 0 0 var(--radius-md);
    }

    .event-content {
        padding-top: 50px;
    }

    .content-panel,
    .content-section {
        padding: 25px 20px;
        border-radius: var(--radius-md);
    }

    .lineups-grid {
        grid-template-columns: 1fr;
    }

    .sources-list {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 44px;
    }

    .site-footer__base {
        align-items: start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding-block: 17px;
    }

    .not-found {
        min-height: calc(100vh - var(--header-height));
        padding-block: 70px;
    }
}

@media (max-width: 430px) {
    .header-pulse {
        font-size: 9px;
    }

    .featured-match__header {
        align-items: start;
    }

    .competition-line {
        max-width: 190px;
    }

    .status-chip {
        padding-inline: 8px;
        font-size: 8px;
    }

    .featured-match__body {
        padding-inline: 8px;
    }

    .team h2,
    .scoreboard__team strong {
        overflow-wrap: anywhere;
    }

    .event-card__footer {
        gap: 10px;
    }

    .match-hero__meta {
        align-items: start;
    }

    .match-hero__meta .overline {
        max-width: 190px;
    }

    .scoreboard {
        grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
    }

    .team-code--large {
        width: 54px;
        height: 54px;
    }

    .scoreboard__centre > span {
        display: none;
    }

    .section-number {
        display: none;
    }

    .players-list {
        padding-inline: 14px;
    }

    .players-list li {
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .players-list small {
        display: none;
    }

    .stat-row__values {
        grid-template-columns: 50px minmax(0, 1fr) 50px;
        gap: 7px;
    }

    .odds-table th,
    .odds-table td {
        padding-inline: 11px;
    }

    .odds-table th:first-child {
        min-width: 110px;
    }

    .odds-table td {
        min-width: 68px;
    }

    .mobile-hide {
        display: none;
    }

    .not-found__actions {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Compact international interface */
:root {
    --bg: #090d12;
    --bg-deep: #06090d;
    --surface: #11171e;
    --surface-raised: #171e27;
    --surface-soft: #131a22;
    --border: #27313d;
    --border-soft: rgba(174, 187, 201, 0.14);
    --text: #f4f7fa;
    --text-soft: #d9e0e7;
    --muted: #96a2af;
    --muted-dark: #687584;
    --accent: #d8ff3e;
    --radius-sm: 7px;
    --radius-md: 11px;
    --radius-lg: 14px;
    --radius-xl: 16px;
    --shadow: none;
    --container: 1080px;
    --header-height: 68px;
}

body {
    background: var(--bg);
    font-size: 15px;
    line-height: 1.5;
}

body::before {
    display: none;
}

.container {
    width: min(calc(100% - 36px), var(--container));
}

.site-shell {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-shell > main {
    flex: 1;
}

.site-header {
    height: var(--header-height);
    background: rgba(9, 13, 18, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand {
    gap: 10px;
}

.brand__mark {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 7px 2px 7px 2px;
    box-shadow: none;
}

.brand__mark span {
    font-size: 19px;
}

.brand__name {
    font-size: 19px;
    letter-spacing: -0.025em;
}

.section {
    padding: 38px 0 72px;
}

.section-heading {
    align-items: center;
    margin-bottom: 18px;
}

.section-heading .overline,
.section-heading > p {
    display: none;
}

.section-heading h1,
.section-heading h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(1.45rem, 3vw, 1.8rem);
    font-weight: 760;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-transform: none;
}

.event-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.event-card {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(190px, 0.8fr) minmax(300px, 1.45fr) minmax(210px, 0.8fr);
    overflow: hidden;
    border-color: var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: border-color var(--transition), background var(--transition);
}

.event-card:hover {
    border-color: #3a4654;
    background: #121922;
    box-shadow: none;
    transform: none;
}

.event-card__header {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 20px;
    border-right: 1px solid var(--border-soft);
    border-bottom: 0;
}

.event-card__header p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
}

.event-card__teams {
    align-content: center;
    gap: 13px;
    padding: 18px 22px;
    border-right: 1px solid var(--border-soft);
}

.event-card__team {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 12px;
}

.event-card__team strong {
    font-size: 14px;
}

.event-card .mini-code {
    width: 36px;
    height: 36px;
    font-size: 9px;
}

.event-card__footer {
    min-height: 0;
    margin-top: 0;
    padding: 18px 20px;
    border-top: 0;
    background: transparent;
}

.event-card__footer time {
    font-size: 25px;
}

.card-link {
    min-height: 36px;
    font-size: 11px;
}

.empty-state {
    padding: 26px;
    border-style: solid;
    background: var(--surface);
}

.empty-state__icon {
    font-size: 40px;
}

.site-footer {
    background: var(--bg-deep);
}

.site-footer__grid {
    display: flex;
    align-items: center;
    padding-block: 27px;
}

.brand--footer {
    margin-bottom: 0;
}

.event-page {
    padding: 22px 0 72px;
}

.breadcrumbs {
    margin-bottom: 24px;
}

.match-hero {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--border-soft);
}

.match-hero::after {
    display: none;
}

.match-hero__meta {
    margin-bottom: 24px;
}

.match-hero h1 {
    margin-bottom: 32px;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.scoreboard {
    grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
    gap: clamp(18px, 2.5vw, 26px);
    max-width: 1000px;
}

.scoreboard__team {
    width: 100%;
    overflow: hidden;
    gap: 14px;
}

.scoreboard__team--home {
    justify-content: flex-end;
}

.scoreboard__team--away {
    justify-content: flex-end;
}

.scoreboard__team strong {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    font-size: clamp(1.7rem, 3.1vw, 2.65rem);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scoreboard__team--home strong {
    text-align: right;
}

.scoreboard__team--away strong {
    text-align: left;
}

.team-code--large {
    width: 68px;
    height: 68px;
    font-size: 15px;
}

.scoreboard__centre {
    min-width: 0;
    gap: 11px;
}

.scoreboard__score,
.scoreboard__time {
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(3.1rem, 5.5vw, 4rem);
    letter-spacing: -0.035em;
    line-height: 0.82;
    text-overflow: clip;
    white-space: nowrap;
}

.scoreboard__centre > span {
    max-width: 170px;
    font-size: 9px;
}

.match-hero__location {
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.video-section {
    padding-top: 36px;
}

.video-player {
    border-color: #202833;
    border-radius: var(--radius-md);
    box-shadow: none;
}

.play-button {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 9px rgba(216, 255, 62, 0.055);
}

.video-player--static .play-button[disabled]:hover {
    box-shadow: 0 0 0 9px rgba(216, 255, 62, 0.055);
}

.event-sections {
    width: 100%;
    min-width: 0;
    max-width: 960px;
    margin: 34px auto 0;
}

.content-section {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
    padding: clamp(22px, 3.5vw, 34px);
    border-color: var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.content-section:first-child {
    margin-top: 0;
}

.content-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.content-heading h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 760;
    letter-spacing: -0.025em;
}

.match-details dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
}

.match-details dl > div {
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--border-soft);
}

.match-details dt {
    color: var(--muted-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.match-details dd {
    min-width: 0;
    margin: 0;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 650;
    overflow-wrap: anywhere;
    text-align: right;
}

.info-badge {
    margin-right: 0;
    padding: 4px 8px;
    font-size: 9px;
}

.lineup-card {
    min-width: 0;
    border-color: var(--border);
    border-radius: 9px;
    background: var(--bg-deep);
}

.lineup-card > header {
    min-height: 70px;
    padding: 14px 16px;
}

.lineup-card > header > div {
    gap: 11px;
}

.lineup-card h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 760;
    letter-spacing: -0.015em;
    text-transform: none;
}

.formation {
    font-family: var(--font-sans);
    font-size: 12px;
}

.players-list {
    padding: 7px 16px;
}

.players-list li {
    min-height: 43px;
}

.player-number {
    font-family: var(--font-sans);
    font-size: 13px;
}

.lineup-card footer {
    padding-inline: 16px;
}

.stats-panel {
    border-color: var(--border);
    background: var(--bg-deep);
}

.event-nav,
.event-content {
    display: none;
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 28px 0 54px;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-card__header {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 17px;
        border-right: 0;
        border-bottom: 1px solid var(--border-soft);
    }

    .event-card__teams {
        padding: 17px;
        border-right: 0;
        border-bottom: 1px solid var(--border-soft);
    }

    .event-card__footer {
        padding: 15px 17px;
    }

    .event-page {
        padding-top: 17px;
    }

    .scoreboard {
        grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
        gap: 8px;
    }

    .scoreboard__team,
    .scoreboard__team--away {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .scoreboard__team strong {
        width: 100%;
        max-width: 100%;
        font-size: clamp(1.1rem, 5vw, 1.65rem);
        line-height: 1;
        text-align: center;
    }

    .team-code--large {
        width: 52px;
        height: 52px;
        font-size: 12px;
    }

    .scoreboard__score,
    .scoreboard__time {
        font-size: 2.15rem;
    }

    .scoreboard__centre > span {
        max-width: 100px;
        font-size: 8px;
        line-height: 1.35;
    }

    .video-section {
        padding-top: 28px;
    }

    .player-ad {
        padding: 7px;
    }

    .adblock-wall {
        padding: 7px;
    }

    .player-ad__panel,
    .adblock-wall__panel {
        gap: 5px;
        padding: 9px 12px;
    }

    .player-ad__panel > strong,
    .adblock-wall__panel > strong {
        font-size: 1rem;
    }

    .player-ad__cta,
    .player-ad__close {
        min-width: 145px;
        min-height: 31px;
    }

    .adblock-wall__panel button {
        min-width: 145px;
        min-height: 31px;
    }

    .content-section {
        padding: 21px 17px;
    }

    .match-details dl,
    .lineups-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        padding-block: 23px;
    }
}

@media (max-width: 420px) {
    .match-hero__meta {
        align-items: flex-start;
    }

    .match-hero__meta .overline {
        max-width: 190px;
    }

    .scoreboard {
        grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
        gap: 5px;
    }

    .team-code--large {
        width: 46px;
        height: 46px;
        font-size: 10px;
    }

    .scoreboard__team strong {
        font-size: clamp(0.95rem, 4.8vw, 1.2rem);
    }

    .scoreboard__score,
    .scoreboard__time {
        font-size: 1.72rem;
    }

    .scoreboard__centre > span {
        max-width: 78px;
        font-size: 7px;
    }

    .play-button {
        width: 58px;
        height: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    :root {
        color-scheme: light;
    }

    body {
        background: #fff;
        color: #111;
    }

    .site-header,
    .site-footer,
    .event-nav,
    .video-section,
    .button {
        display: none !important;
    }

    .content-panel,
    .content-section,
    .lineup-card,
    .stats-panel {
        border-color: #ccc;
        background: transparent;
        box-shadow: none;
    }
}
