:root {
    --club-primary: #cc0000;
    --club-secondary: #0b0b0b;
    --club-accent: #f4eee8;
    --club-surface: #151515;
    --club-surface-soft: rgba(255, 255, 255, 0.06);
    --club-border: rgba(255, 255, 255, 0.11);
    --club-text: #f7f4ef;
    --club-text-muted: rgba(247, 244, 239, 0.72);
    --club-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    --club-radius-xl: 32px;
    --club-radius-lg: 24px;
    --club-radius-md: 18px;
    --club-radius-sm: 12px;
    --club-header-height: 124px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Barlow", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(204, 0, 0, 0.35), transparent 32%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 26%),
        linear-gradient(180deg, #120f10 0%, #090909 100%);
    color: var(--club-text);
    overflow-x: clip;
}

.brand-mark strong,
.hero-copy h1,
.hero-copy h2,
.detail-hero h1,
.player-detail h1,
.team-hero h1,
.hero-metrics strong,
.player-stats strong,
.match-card__teams,
.team-badge__logo span,
.headline-card__body h2,
.news-card__body h3,
.match-card h3,
.sidebar-card h3,
.section-heading h2,
.article-card h2,
.masthead-story__content h1,
.top-news-ribbon__label,
.feed-story__body h3,
.team-hero__mark {
    font-family: "Manrope", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.club-shell {
    min-height: 100vh;
    overflow-x: clip;
}

.club-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: block;
    min-height: var(--club-header-height);
    padding: 0;
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(10, 5, 5, 0.99), rgba(19, 8, 8, 0.96));
    border-bottom: 1px solid rgba(159, 24, 24, 0.34);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.club-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 44, 44, 0.76), transparent);
}

.club-header__top {
    position: relative;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 64px;
    align-items: center;
    column-gap: 16px;
    min-height: var(--club-header-height);
    padding: 12px 72px 8px 14px;
    background:
        radial-gradient(circle at top center, rgba(173, 20, 20, 0.2), transparent 44%),
        linear-gradient(180deg, rgba(22, 9, 9, 0.99), rgba(16, 7, 7, 0.98));
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.brand-mark img {
    width: min(156px, 41vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38));
}

.platform-mark {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.platform-mark img {
    width: min(84px, 22vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.34));
}

.header-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    z-index: 3;
    gap: 6px;
    width: 50px;
    height: 50px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(118, 110, 110, 0.92), rgba(67, 61, 61, 0.94));
    box-shadow:
        0 16px 26px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: var(--club-text);
}

.header-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
}

.club-nav {
    position: fixed;
    top: calc(var(--club-header-height) + 4px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100dvh - var(--club-header-height) - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(204, 0, 0, 0.2), transparent 34%),
        rgba(15, 15, 15, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    z-index: 55;
}

.club-nav.is-open {
    display: flex;
}

.club-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 6px;
    color: var(--club-text-muted);
    font-weight: 600;
}

.club-nav a:hover,
.club-nav a:focus-visible {
    color: var(--club-text);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--club-primary), #850202);
    color: #fff !important;
    padding: 0 18px;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: none;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}

.menu-backdrop.is-visible {
    display: block;
}

.club-main {
    width: min(1180px, calc(100% - 30px));
    margin: 0 auto;
    padding: 10px 0 120px;
}

.club-flash {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--club-border);
    font-weight: 600;
}

.club-flash--success {
    background: rgba(24, 122, 52, 0.24);
}

.club-flash--error {
    background: rgba(204, 0, 0, 0.22);
}

.club-flash--warning {
    background: rgba(255, 190, 11, 0.2);
}

.eyebrow {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-panel,
.masthead-grid,
.detail-hero,
.player-detail,
.team-hero {
    display: grid;
    gap: 22px;
    margin-bottom: 28px;
}

.hero-panel,
.masthead-grid {
    padding: 0 0 8px;
}

.hero-copy,
.headline-card,
.match-card,
.club-card,
.article-card,
.sidebar-card,
.comment-card,
.comment-form,
.detail-hero__content,
.player-detail__content,
.player-detail__media {
    border: 1px solid var(--club-border);
    border-radius: var(--club-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: var(--club-shadow);
}

.hero-copy {
    padding: 26px;
}

.hero-copy h1,
.hero-copy h2,
.detail-hero h1,
.player-detail h1,
.team-hero h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-copy p:last-of-type,
.detail-excerpt,
.player-bio,
.section-note {
    color: var(--club-text-muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.primary-button,
.ghost-button,
.source-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
}

.primary-button {
    border: 0;
    background: linear-gradient(135deg, var(--club-primary), #7a0101);
    color: #fff;
}

.ghost-button,
.source-link,
.text-link {
    border: 1px solid var(--club-border);
    color: var(--club-text);
    background: rgba(255, 255, 255, 0.02);
}

.source-link {
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(247, 244, 239, 0.58);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.3;
}

.source-link:hover,
.source-link:focus-visible {
    color: rgba(247, 244, 239, 0.82);
}

.hero-metrics,
.player-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.hero-metrics div,
.player-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-metrics strong,
.player-stats strong {
    display: block;
    font-size: 1.55rem;
    font-family: "Space Grotesk", sans-serif;
}

.hero-metrics span,
.player-stats span {
    color: var(--club-text-muted);
    font-size: 0.9rem;
}

.hero-stack {
    display: grid;
    gap: 18px;
}

.masthead-story,
.mini-headline,
.team-hero__content,
.team-hero__mark {
    border: 1px solid var(--club-border);
    border-radius: var(--club-radius-xl);
    box-shadow: var(--club-shadow);
}

.masthead-story {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 460px;
}

.masthead-story img {
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.masthead-story__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 11, 11, 0.04) 0%, rgba(11, 11, 11, 0.3) 35%, rgba(204, 0, 0, 0.92) 100%),
        linear-gradient(120deg, rgba(204, 0, 0, 0) 35%, rgba(204, 0, 0, 0.35) 100%);
}

.masthead-story__content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px;
}

.masthead-story__content h1 {
    margin: 12px 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 0.96;
}

.masthead-story__content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.6;
}

.masthead-side {
    display: grid;
    gap: 16px;
}

.masthead-primary {
    display: grid;
    gap: 18px;
    align-content: start;
}

.mini-headline {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.mini-headline img {
    height: 100%;
    min-height: 112px;
    object-fit: cover;
}

.mini-headline div {
    padding: 16px 18px 16px 0;
}

.mini-headline span {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mini-headline strong {
    display: block;
    line-height: 1.3;
}

.headline-card,
.match-card,
.article-card,
.sidebar-card,
.player-detail__content,
.player-detail__media,
.comment-form,
.detail-hero__content {
    overflow: hidden;
}

.article-card,
.detail-sidebar,
.detail-hero__content,
.detail-hero__media {
    min-width: 0;
}

.headline-card img,
.detail-hero__media img,
.player-detail__media img,
.news-card img,
.player-card img,
.ad-card img,
.mini-ad img {
    aspect-ratio: 1.15;
    object-fit: cover;
}

.headline-card__body,
.news-card__body,
.article-card,
.sidebar-card,
.match-card,
.detail-hero__content,
.comment-form,
.player-detail__content {
    padding: 22px;
}

.headline-card__body h2,
.news-card__body h3,
.match-card h3,
.sidebar-card h3,
.section-heading h2,
.article-card h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.headline-badge,
.news-tag,
.status-dot,
.player-pills span,
.contact-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.headline-badge,
.news-tag,
.status-dot--live {
    background: rgba(204, 0, 0, 0.18);
    color: #ffdcdc;
}

.news-tag--dark,
.status-dot--finished {
    background: rgba(255, 255, 255, 0.08);
    color: var(--club-text);
}

.status-dot--upcoming,
.status-dot--postponed {
    background: rgba(255, 190, 11, 0.2);
    color: #ffe8a1;
}

.match-card__top,
.detail-meta,
.news-card__meta,
.comment-card__head,
.section-heading,
.section-heading--compact,
.share-bar,
.club-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.section-heading > div,
.section-heading--compact > div,
.score-card,
.club-card {
    min-width: 0;
}

.section-heading__aside {
    display: grid;
    justify-items: end;
    gap: 12px;
    min-width: 0;
}

.match-card__teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin: 18px 0 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
}

.match-card__teams strong:last-child {
    text-align: right;
}

.match-card__teams--logos {
    align-items: center;
}

.team-badge {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.team-badge--away strong {
    text-align: center;
}

.team-badge__logo {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    overflow: visible;
}

.team-badge__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.team-badge__logo span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.match-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--club-text-muted);
    line-height: 1.65;
    display: grid;
    gap: 8px;
}

.match-meta li {
    position: relative;
    padding-left: 16px;
}

.match-meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    transform: translateY(-50%);
}

.match-meta strong {
    color: var(--club-text);
    font-weight: 700;
}

.ad-strip,
.results-strip,
.player-grid,
.news-grid,
.dashboard-grid,
.detail-layout,
.comments-layout,
.ticker-grid {
    display: grid;
    gap: 18px;
}

.ad-card,
.mini-ad,
.mobile-dock-ad {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--club-border);
    background: rgba(255, 255, 255, 0.04);
}

.ad-card span,
.mini-ad span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    font-weight: 700;
}

.dashboard-grid,
.section-block,
.results-strip,
.ad-strip,
.ad-strip--inline,
.comments-section,
.related-section {
    margin-bottom: 30px;
}

.club-card,
.sidebar-card,
.comment-card,
.empty-card,
.ticker-card,
.player-summary,
.team-hero__content,
.team-hero__mark {
    padding: 22px;
}

.team-hero {
    grid-template-columns: 120px 1fr;
    align-items: stretch;
}

.team-hero__mark {
    display: grid;
    place-items: center;
    min-height: 120px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.3rem;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.28), rgba(255, 255, 255, 0.04));
}

.club-card p:last-child,
.news-card__body p,
.headline-card__body p,
.ticker-card span,
.sidebar-list__item small,
.news-card__meta small {
    color: var(--club-text-muted);
}

.table-shell {
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: thin;
}

.team-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    min-width: 0;
    max-width: 100%;
}

.team-link__mark {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

.team-link__logo {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    object-fit: contain;
}

.team-link span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

th {
    color: var(--club-text-muted);
    font-size: 0.84rem;
    text-transform: uppercase;
}

tr.is-club {
    background: rgba(204, 0, 0, 0.12);
}

.results-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-chip {
    padding: 16px 18px;
    border: 1px solid var(--club-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.result-chip strong {
    display: block;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.result-chip__scoreline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-chip__logo {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    object-fit: contain;
}

.result-chip span {
    color: var(--club-text-muted);
}

.section-block,
.comments-section,
.related-section {
    padding-top: 8px;
}

.player-grid,
.news-grid,
.ticker-grid {
    grid-template-columns: 1fr;
}

.player-card,
.news-card,
.ticker-card,
.sidebar-list__item {
    overflow: hidden;
    border: 1px solid var(--club-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--club-shadow);
}

.archive-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.archive-pagination__status {
    color: var(--club-text-muted);
    font-weight: 700;
}

.player-card img {
    aspect-ratio: 0.9;
}

.player-card__body {
    padding: 18px;
}

.player-card__body strong,
.ticker-card strong,
.sidebar-list__item strong {
    display: block;
}

.player-card__body small {
    color: var(--club-text-muted);
    line-height: 1.55;
}

.news-card__body h3,
.headline-card__body h2 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 1.35rem;
    line-height: 1.08;
}

.news-card__body a,
.headline-card__body a,
.sidebar-list__item,
.ticker-card,
.back-link {
    font-weight: 700;
}

.detail-hero__media img {
    aspect-ratio: 1.18;
    height: 100%;
}

.detail-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
    color: var(--club-text-muted);
    font-size: 0.92rem;
    margin: 18px 0;
}

.standings-page {
    padding: 22px;
}

.article-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

.article-body p:first-child {
    margin-top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.share-bar {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.share-bar__label {
    margin-right: 2px;
    color: var(--club-text-muted);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.share-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.share-pill--whatsapp {
    background: #1f9f54;
}

.share-pill--instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.share-pill--facebook {
    background: #1877f2;
}

.share-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
}

.share-pill__icon svg {
    width: 100%;
    height: 100%;
}

.top-news-ribbon {
    position: sticky;
    top: var(--club-header-height);
    z-index: 42;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
    min-height: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(96, 18, 18, 0.98), rgba(77, 14, 14, 0.96));
    overflow: hidden;
}

.top-news-ribbon__label {
    display: none;
    align-items: center;
    align-self: stretch;
    padding: 0 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.top-news-ribbon__viewport {
    overflow: hidden;
}

.top-news-ribbon__track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    padding: 0 8px;
    animation: ribbon-scroll 42s linear infinite;
}

.top-news-ribbon__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.88);
}

.top-news-ribbon__item span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-news-ribbon__item strong {
    font-size: 0.88rem;
    font-weight: 700;
}

.masthead-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--club-radius-xl);
    border: 1px solid var(--club-border);
    box-shadow: var(--club-shadow);
    background: rgba(255, 255, 255, 0.03);
    min-height: 520px;
}

.masthead-slider__viewport {
    position: relative;
    min-height: 520px;
}

.masthead-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.masthead-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.masthead-story {
    height: 100%;
    min-height: 520px;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(180deg, #3b0a0a 0%, #8b0000 58%, #b70000 100%);
}

.masthead-story--fallback img {
    object-fit: contain;
    padding: 22px;
    opacity: 0.26;
    transform: scale(1.02);
}

.masthead-story__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.masthead-story__meta small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
}

.masthead-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(11, 11, 11, 0.42);
    color: #fff;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.masthead-slider__nav span {
    font-size: 2rem;
    line-height: 1;
}

.masthead-slider__nav--prev {
    left: 16px;
}

.masthead-slider__nav--next {
    right: 16px;
}

.masthead-slider__dots {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.masthead-slider__dot {
    width: 30px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.masthead-slider__dot.is-active {
    background: #fff;
}

.headline-stack {
    display: grid;
    gap: 14px;
}

.ad-card--hero-inline {
    min-height: 220px;
}

.ad-strip--hero-mobile {
    display: grid;
}

.hero-copy--feature {
    background:
        radial-gradient(circle at top right, rgba(204, 0, 0, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.hero-copy__note {
    display: grid;
    gap: 6px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-copy__note strong {
    font-size: 0.96rem;
}

.hero-copy__note span {
    color: var(--club-text-muted);
    line-height: 1.5;
}

.match-card--hero {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(19, 8, 10, 0.92), rgba(44, 9, 10, 0.78));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    isolation: isolate;
    overflow: hidden;
}

.match-card__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 10, 12, 0.58) 0%, rgba(39, 13, 15, 0.46) 32%, rgba(84, 17, 17, 0.54) 100%),
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
        url('etihad-stadium.jpg') center center / cover no-repeat;
    opacity: 0.92;
    transform: scale(1.02);
}

.match-card__surface {
    position: relative;
    z-index: 1;
    padding: 24px 28px 26px;
}

.match-card--hero h3 {
    max-width: none;
    margin: 10px 0 0;
    font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-align: center;
    color: #d9ebff;
}

.match-card--hero .team-badge__logo {
    width: 92px;
    height: 92px;
}

.match-card--hero .team-badge strong {
    font-size: 1.08rem;
    line-height: 1.12;
    color: #f4f7fb;
}

.match-card--hero .match-meta {
    margin-top: 12px;
    font-size: 0.98rem;
    color: rgba(239, 242, 247, 0.9);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 14px;
    text-align: center;
}

.match-card--hero .hero-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.match-card--hero .match-card__top {
    align-items: center;
}

.match-card--hero .status-dot {
    margin-left: auto;
    background: rgba(236, 178, 56, 0.88);
    color: #2b1d07;
    box-shadow: none;
}

.match-card--secondary {
    display: none;
}

.match-card--hero .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.match-card--hero .match-card__teams {
    margin: 26px 0 18px;
    gap: 30px;
}

.match-card--hero .match-card__teams > span {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
}

.match-card--hero .team-badge {
    gap: 10px;
}

.match-card--hero .team-badge__logo img {
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.match-card--hero .match-meta li {
    padding-left: 0;
}

.match-card--hero .match-meta li::before {
    content: none;
}

.match-card--hero .match-meta strong {
    font-weight: 800;
}

.match-card--hero .primary-button,
.match-card--hero .ghost-button {
    min-height: 50px;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.match-card--hero .ghost-button {
    background: rgba(19, 18, 20, 0.34);
    border-color: rgba(255, 255, 255, 0.22);
}

.mini-headline small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

.detail-hero {
    position: relative;
    overflow: hidden;
}

.detail-hero__content,
.detail-hero__media {
    position: relative;
}

.detail-hero__content {
    background:
        radial-gradient(circle at top right, rgba(204, 0, 0, 0.24), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    min-width: 0;
}

.detail-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.04), rgba(204, 0, 0, 0.4));
    pointer-events: none;
}

.article-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at top left, rgba(204, 0, 0, 0.14), transparent 32%);
}

.news-feed-list {
    display: grid;
    gap: 16px;
}

.feed-story {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--club-border);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    box-shadow: var(--club-shadow);
}

.feed-story__media img {
    width: 100%;
    height: 100%;
    min-height: 164px;
    object-fit: cover;
}

.feed-story__body {
    display: grid;
    gap: 12px;
    padding: 18px 18px 18px 16px;
}

.feed-story__topline,
.feed-story__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.feed-story__topline small,
.feed-story__footer small {
    color: var(--club-text-muted);
    font-size: 0.84rem;
}

.feed-story__body h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.42rem;
    line-height: 1.08;
}

.feed-story__body p {
    margin: 0;
    color: var(--club-text-muted);
    line-height: 1.6;
}

.feed-story__footer a {
    font-weight: 700;
}

.masthead-side {
    align-content: start;
}

.section-block,
.comments-section,
.related-section {
    margin-bottom: 38px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-copy,
.match-card,
.club-card,
.article-card,
.sidebar-card,
.comment-card,
.comment-form,
.player-card,
.ticker-card,
.result-chip,
.mini-headline,
.team-hero__content,
.team-hero__mark,
.player-summary,
.player-detail__content,
.player-detail__media,
.detail-hero__content {
    box-shadow: none;
}

.hero-copy,
.match-card,
.club-card,
.sidebar-card,
.player-detail__content,
.player-detail__media,
.detail-hero__content,
.comment-form {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: transparent;
}

.article-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 18px;
}

.detail-layout {
    gap: 32px;
}

.detail-hero {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-hero__content {
    padding: 30px 0 30px 0;
}

.detail-hero__media {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.detail-hero__media img {
    border-radius: 26px;
}

.share-bar {
    padding: 0 0 18px;
    margin-bottom: 24px;
}

.sidebar-card {
    padding: 0 0 22px;
}

.sidebar-card + .sidebar-card {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.match-card,
.club-card {
    padding: 0 0 24px;
}

.match-card h3,
.club-card h2,
.score-card h2,
.section-heading h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.table-shell {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

table {
    background: transparent;
}

th,
td {
    padding-left: 0;
    padding-right: 12px;
}

.feed-story {
    grid-template-columns: 164px 1fr;
    gap: 20px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 20px;
}

.feed-story + .feed-story {
    margin-top: 6px;
}

.feed-story__media img {
    min-height: 172px;
    border-radius: 18px;
}

.feed-story__body {
    padding: 4px 0 0;
}

.results-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.result-chip {
    padding: 0 0 14px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
}

.player-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.player-card img {
    border-radius: 24px;
}

.player-card__body,
.standings-page {
    padding-left: 0;
    padding-right: 0;
}

.ticker-card {
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.club-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes ribbon-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sidebar-list {
    display: grid;
    gap: 12px;
}

.sidebar-list__item {
    padding: 16px 18px;
}

.comments-layout {
    grid-template-columns: 1fr;
}

.comment-list {
    display: grid;
    gap: 14px;
}

.comment-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.comment-form {
    display: grid;
    gap: 14px;
}

.comment-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--club-text);
    background: rgba(255, 255, 255, 0.04);
}

.comment-form textarea {
    resize: vertical;
    min-height: 160px;
}

.empty-card {
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--club-text-muted);
}

.player-detail__media,
.player-detail__content {
    padding: 18px;
}

.player-detail__media img {
    border-radius: 24px;
}

.player-pills,
.contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.player-pills span,
.contact-pills span {
    background: rgba(255, 255, 255, 0.06);
}

.player-summary {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--club-text);
}

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.club-footer {
    width: min(1180px, calc(100% - 30px));
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 0 32px;
    color: var(--club-text-muted);
    font-size: 0.74rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.club-footer strong {
    display: block;
    color: var(--club-text);
    margin-bottom: 6px;
}

.club-footer__meta,
.club-footer__credit {
    display: grid;
    gap: 6px;
}

.club-footer__credit a {
    color: var(--club-text);
    font-size: 0.74rem;
    letter-spacing: 0.03em;
    opacity: 0.84;
}

.club-footer__brandmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.02rem;
}

.club-footer__brandmark strong {
    display: inline;
    margin: 0;
    font-weight: 800;
}

.club-footer__brandmark span {
    font-weight: 400;
}

.mobile-dock-ad {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 40;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    padding: 10px;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.92);
}

.mobile-dock-ad img {
    border-radius: 16px;
    aspect-ratio: 1;
    object-fit: cover;
}

.mobile-dock-ad strong {
    display: block;
    margin-bottom: 6px;
}

.mobile-dock-ad span {
    color: var(--club-text-muted);
}

.share-toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 60;
    transform: translateX(-50%);
    width: min(92vw, 420px);
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    box-shadow: var(--club-shadow);
}

.club-toast-stack {
    position: fixed;
    right: 16px;
    bottom: 24px;
    left: 16px;
    z-index: 75;
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.club-toast,
.share-toast {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: auto;
}

.club-toast.is-visible,
.share-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.share-toast {
    transform: translate(-50%, 16px);
}

.share-toast.is-visible {
    transform: translate(-50%, 0);
}

.club-toast {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    width: min(100%, 420px);
    margin-left: auto;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 10, 10, 0.96);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.club-toast--success {
    border-color: rgba(204, 0, 0, 0.32);
}

.club-toast--error {
    border-color: rgba(255, 110, 110, 0.34);
}

.club-toast--warning {
    border-color: rgba(255, 184, 88, 0.3);
}

.club-toast__body {
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.club-toast__close {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.comment-card {
    display: grid;
    gap: 12px;
}

.comment-card--reply {
    margin-top: 12px;
    margin-left: 18px;
    padding: 16px 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.comment-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.comment-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.74);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.comment-action:hover,
.comment-action.is-active {
    color: #fff;
    border-color: rgba(204, 0, 0, 0.4);
    background: rgba(204, 0, 0, 0.12);
}

.comment-action__icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.comment-action__icon svg {
    width: 100%;
    height: 100%;
}

.comment-action__count {
    min-width: 10px;
    font-size: 0.82rem;
    font-weight: 700;
}

.comment-action--reply {
    font-size: 0.82rem;
    font-weight: 600;
}

.comment-reply-wrap {
    padding-top: 4px;
}

.comment-replies {
    display: grid;
    gap: 12px;
    margin-top: 2px;
}

.comment-form--reply {
    padding: 16px 16px 18px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.comment-form--reply textarea {
    min-height: 120px;
}

.comment-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-cancel {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
}

.detail-layout {
    align-items: start;
    gap: 40px;
}

.article-card {
    min-width: 0;
}

.share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 0 20px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.share-bar__label {
    flex: 0 0 auto;
    min-width: 64px;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-body {
    display: grid;
    gap: 18px;
    min-height: 200px;
}

.article-body > * {
    max-width: 100%;
}

.source-link {
    display: inline-flex;
    margin-top: 20px;
}

.detail-sidebar {
    display: grid;
    gap: 8px;
    align-content: start;
}

.sidebar-list {
    gap: 14px;
}

.sidebar-list__item--story {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
}

.sidebar-list__thumb {
    width: 86px;
    height: 86px;
    border-radius: 18px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-list__copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.sidebar-list__item--story strong {
    font-size: 1.02rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.sidebar-list__item--story small {
    font-size: 0.8rem;
}

.fixture-compact {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(204, 0, 0, 0.05));
}

.fixture-compact__teams {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fixture-compact__club {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(204, 0, 0, 0.18);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.fixture-compact__versus {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fixture-compact strong {
    font-size: 1.3rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.fixture-compact > span {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.45;
}

.next-article-rail {
    display: grid;
    gap: 16px;
    margin-bottom: 38px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.next-article-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.next-article-card img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
}

.next-article-card__body {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 22px 24px 22px 0;
}

.next-article-card__body small,
.next-article-card__body em {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.next-article-card__body strong {
    font-size: clamp(1.32rem, 3vw, 1.9rem);
    line-height: 1.08;
}

.ad-card--desktop,
.mini-ad.ad-card--desktop,
.mobile-dock-ad.ad-card--desktop {
    display: none;
}

@media (min-width: 700px) {
    .hero-panel,
    .masthead-grid,
    .detail-hero,
    .player-detail,
    .dashboard-grid,
    .detail-layout,
    .comments-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .results-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .player-grid,
    .news-grid--secondary,
    .ticker-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid--primary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-feed-list {
        grid-template-columns: 1fr;
    }

    .club-toast-stack {
        left: auto;
        width: min(420px, calc(100vw - 32px));
    }
}

@media (max-width: 959px) {
    .detail-layout {
        gap: 28px;
    }

    .share-bar__label {
        min-width: 100%;
        margin-right: 0;
    }

    .sidebar-list__item--story {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .sidebar-list__thumb {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .fixture-compact {
        padding: 16px;
    }

    .fixture-compact strong {
        font-size: 1.08rem;
    }

    .next-article-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .next-article-card img {
        min-height: 210px;
    }

    .next-article-card__body {
        padding: 18px;
    }
}

@media (min-width: 960px) {
    .club-header {
        min-height: 92px;
    }

    .club-header__top {
        grid-template-columns: auto auto minmax(0, 1fr);
        align-items: start;
        column-gap: 26px;
        min-height: 92px;
        padding: 16px calc((100vw - min(1240px, calc(100% - 36px))) / 2 + 18px) 12px;
    }

    .platform-mark {
        display: none;
    }

    .brand-mark img {
        width: 134px;
    }

    .brand-mark {
        justify-content: flex-start;
        align-self: start;
        padding-top: 2px;
    }

    .header-toggle {
        display: none;
    }

    .club-nav {
        position: static;
        right: auto;
        left: auto;
        top: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        align-self: start;
        gap: 32px;
        margin-left: auto;
        max-height: none;
        overflow: visible;
        width: 100%;
        padding: 6px 0 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .club-nav a {
        min-height: auto;
        padding: 8px 0;
        font-size: 0.98rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        color: rgba(255, 247, 247, 0.86);
        position: relative;
        transition: color 0.18s ease;
    }

    .club-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -6px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(204, 0, 0, 0), rgba(204, 0, 0, 0.95), rgba(204, 0, 0, 0));
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.18s ease;
    }

    .club-nav a:hover,
    .club-nav a:focus-visible {
        color: #ffffff;
    }

    .club-nav a:hover::after,
    .club-nav a:focus-visible::after {
        transform: scaleX(1);
    }

    .top-news-ribbon {
        top: 92px;
    }

    .hero-panel,
    .masthead-grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        align-items: start;
    }

    .dashboard-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        align-items: start;
    }

    .score-card {
        grid-column: 1 / 2;
    }

    .info-card {
        grid-column: 2 / 3;
        grid-row: 1 / span 2;
    }

    .detail-hero {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        align-items: stretch;
    }

    .detail-layout {
        grid-template-columns: minmax(0, 1.25fr) 340px;
        align-items: start;
    }

    .comments-layout {
        grid-template-columns: minmax(0, 1.1fr) 360px;
        align-items: start;
    }

    .player-detail {
        grid-template-columns: 420px minmax(0, 1fr);
    }

    .player-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-grid--primary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-grid--secondary,
    .ticker-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ad-card--desktop {
        display: block;
    }

    .team-hero {
        grid-template-columns: 160px 1fr;
    }

    .news-feed-list {
        grid-template-columns: 1fr;
    }

    .detail-hero__content {
        padding-right: 24px;
    }
}

@media (max-width: 959px) {
    .club-header {
        box-shadow: none;
    }

    .club-header__top {
        grid-template-columns: 84px minmax(0, 1fr);
        padding: 10px 88px 4px 14px;
        min-height: var(--club-header-height);
    }

    .brand-mark img {
        width: min(148px, 40vw);
    }

    .platform-mark img {
        width: min(80px, 21vw);
    }

    .header-toggle {
        display: inline-flex;
        right: 12px;
        width: 52px;
        height: 52px;
        border-radius: 18px;
        border-color: rgba(255, 255, 255, 0.32);
        background: linear-gradient(180deg, rgba(126, 122, 122, 0.96), rgba(78, 72, 72, 0.96));
    }

    .club-main {
        width: 100%;
        padding-top: 0;
        padding-bottom: 96px;
    }

    .top-news-ribbon {
        top: var(--club-header-height);
        border-bottom: 1px solid rgba(214, 28, 28, 0.68);
    }

    .masthead-grid {
        margin: 0;
        width: 100%;
        gap: 0;
        padding-top: 0;
        margin-bottom: 0;
    }

    .masthead-slider {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        min-height: 406px;
    }

    .masthead-slider__viewport,
    .masthead-story,
    .masthead-story img {
        min-height: 406px;
        border-radius: 0;
    }

    .masthead-story--fallback img {
        padding: 16px 16px 28px;
        object-position: center 28%;
    }

    .masthead-story__content {
        padding: 18px 18px 74px;
    }

    .masthead-story__content h1 {
        font-size: clamp(1.56rem, 7vw, 2.3rem);
        line-height: 1.02;
        max-width: min(88vw, 18ch);
    }

    .masthead-story__content p {
        font-size: 0.96rem;
        line-height: 1.55;
        max-width: min(88vw, 34ch);
    }

    .masthead-slider__nav {
        width: 44px;
        height: 44px;
        top: 50%;
    }

    .masthead-slider__dots {
        left: 0;
        right: 0;
        bottom: 18px;
    }

    .match-card--hero h3 {
        font-size: 1.28rem;
        line-height: 1.08;
    }

    .match-card--hero .match-card__teams {
        gap: 14px;
        margin-top: 16px;
    }

    .match-card--hero .team-badge:first-child {
        justify-items: start;
        text-align: left;
    }

    .match-card--hero .team-badge--away {
        justify-items: end;
        text-align: right;
    }

    .match-card--hero .team-badge__logo {
        width: 78px;
        height: 78px;
    }

    .match-card--hero .team-badge strong {
        font-size: 0.96rem;
    }

    .match-card--hero .match-meta {
        font-size: 0.92rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px 10px;
    }

    .match-card--hero .match-meta li:last-child {
        grid-column: 1 / -1;
    }

    .match-card__surface {
        padding: 18px 18px 20px;
    }

    .match-card--hero .hero-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-copy,
    .match-card,
    .club-card,
    .sidebar-card,
    .comment-form,
    .player-detail__content,
    .player-detail__media,
    .detail-hero__content {
        padding-left: 0;
        padding-right: 0;
    }

    .section-heading,
    .section-heading--compact {
        align-items: flex-start;
        gap: 10px;
    }

    .section-heading h2,
    .section-heading--compact h2,
    .score-card h2,
    .club-card h2 {
        font-size: clamp(1.2rem, 5.2vw, 1.7rem);
        line-height: 1.08;
    }

    .text-link {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.86rem;
        flex-shrink: 0;
    }

    .score-card .table-shell {
        overflow: hidden;
    }

    .score-card table {
        table-layout: fixed;
    }

    .score-card th,
    .score-card td {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 4px;
        font-size: 0.76rem;
    }

    .score-card th:first-child,
    .score-card td:first-child {
        width: 20px;
    }

    .score-card th:nth-child(3),
    .score-card td:nth-child(3),
    .score-card th:nth-child(4),
    .score-card td:nth-child(4),
    .score-card th:nth-child(5),
    .score-card td:nth-child(5) {
        width: 28px;
        text-align: right;
    }

    .score-card .team-link {
        gap: 6px;
    }

    .score-card .team-link__mark {
        width: 24px;
        height: 24px;
        font-size: 0.64rem;
        flex: 0 0 24px;
    }

    .score-card .team-link__logo {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .score-card .team-link span:last-child {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.72rem;
    }

    .standings-page .table-shell {
        overflow-x: auto;
    }

    .standings-page table {
        table-layout: fixed;
    }

    .standings-page th,
    .standings-page td {
        padding-top: 9px;
        padding-bottom: 9px;
        padding-right: 4px;
        font-size: 0.68rem;
    }

    .standings-page .team-link {
        gap: 5px;
    }

    .standings-page .team-link__mark {
        width: 20px;
        height: 20px;
        font-size: 0.56rem;
        flex: 0 0 20px;
    }

    .standings-page .team-link__logo {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .standings-page .team-link span:last-child {
        display: block;
        max-width: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.68rem;
    }

    .standings-page th:first-child,
    .standings-page td:first-child,
    .score-card th:first-child,
    .score-card td:first-child {
        width: 18px;
    }

    .standings-page th:nth-child(3),
    .standings-page td:nth-child(3),
    .standings-page th:nth-child(4),
    .standings-page td:nth-child(4),
    .standings-page th:nth-child(5),
    .standings-page td:nth-child(5),
    .standings-page th:nth-child(6),
    .standings-page td:nth-child(6),
    .standings-page th:nth-child(7),
    .standings-page td:nth-child(7),
    .standings-page th:nth-child(8),
    .standings-page td:nth-child(8) {
        width: 26px;
        text-align: right;
    }

    .detail-hero h1 {
        font-size: clamp(1.9rem, 8vw, 3rem);
        line-height: 1.04;
    }

    .feed-story {
        grid-template-columns: 118px 1fr;
        gap: 14px;
    }

    .feed-story__media img {
        min-height: 132px;
    }

    .feed-story__body h3 {
        font-size: 1.2rem;
    }

    .feed-story__body p {
        font-size: 0.95rem;
    }

    .share-bar {
        gap: 12px;
    }

    .share-bar__label {
        width: 100%;
        margin-right: 0;
    }

    .results-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .result-chip {
        padding: 0 0 12px;
    }

    .result-chip strong {
        font-size: 0.92rem;
        line-height: 1.3;
    }

    .result-chip__logo {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .result-chip span {
        font-size: 0.84rem;
    }
}

@media (min-width: 1180px) {
    .club-main {
        padding-top: 12px;
    }
}

@media (max-width: 959px) {
    .club-footer {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 960px) {
    .club-footer {
        grid-template-columns: 1fr auto auto;
        align-items: end;
    }
}

@media (min-width: 960px) {
    .mobile-dock-ad,
    .ad-card--mobile,
    .mini-ad.ad-card--mobile {
        display: none;
    }

    .ad-strip--hero-mobile {
        display: none;
    }
}
