:root {
    --bg-primary: #faf9f6;
    --bg-surface: #ffffff;
    --text-primary: #121614;
    --text-secondary: #626e66;
    --accent-green: #16402f;
    --accent-clay: #cc5a37;
    --border-hairline: 1px solid rgba(22, 64, 47, 0.12);
    --container: 1180px;
    --gutter: 28px;
    --section-pad: 120px;
    --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-clay);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.6em;
    color: var(--text-primary);
}

p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.96);
    border-bottom: var(--border-hairline);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 24px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 32px; width: auto; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.nav-item:hover {
    color: var(--accent-clay);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    border: var(--border-hairline);
    background: var(--bg-surface);
    color: var(--text-primary);
    border-radius: 0;
    padding: 10px 14px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-toggle-lines {
    width: 18px;
    height: 10px;
    position: relative;
    display: block;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--accent-green);
}

.menu-toggle-lines::before { top: 0; }
.menu-toggle-lines::after { bottom: 0; }

/* Sections */
.section {
    padding: var(--section-pad) 0;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 18ch;
}

.section-lead {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 58ch;
    margin-bottom: 0;
}

/* Hero */
.hero {
    padding: 80px 0 0;
    border-bottom: var(--border-hairline);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: end;
    padding-bottom: var(--section-pad);
}

.hero-copy { padding-bottom: 24px; }

.hero-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 24px;
    max-width: 14ch;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.hero-intro {
    color: var(--text-secondary);
    max-width: 48ch;
    font-size: 17px;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: var(--border-hairline);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(22, 64, 47, 0.08));
    pointer-events: none;
}

/* Brands */
.brands-section {
    padding: 48px 0 56px;
}

.brands-panel {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 28px 28px 32px;
    background: linear-gradient(145deg, rgba(22, 30, 46, 0.95), rgba(11, 15, 25, 0.98));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brands-panel-head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-panel-head .section-label {
    margin-bottom: 8px;
}

.brands-panel-lead {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 52ch;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 20px 24px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 255, 0, 0.65);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(204, 255, 0, 0.25);
    text-decoration: none;
}

.brand-card img {
    display: block;
    max-height: 46px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Magazine layout */
.magazine {
    padding: var(--section-pad) 0;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.magazine-main h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 24px;
}

.magazine-aside {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: var(--border-hairline);
    background: var(--bg-surface);
}

.stat-block {
    padding: 28px 32px;
    border-bottom: var(--border-hairline);
}

.stat-block:last-child { border-bottom: none; }

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent-green);
}

/* Grand Slam cards */
.slam-section { background: var(--bg-surface); border-top: var(--border-hairline); }

.slam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(22, 64, 47, 0.12);
    border: var(--border-hairline);
    margin-top: 48px;
}

.slam-card {
    background: var(--bg-surface);
    padding: 36px 28px;
    transition: background 0.2s ease;
}

.slam-card:hover { background: var(--bg-primary); }

.slam-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.slam-period {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.slam-desc {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature rows */
.features {
    padding: var(--section-pad) 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 48px 0;
    border-bottom: var(--border-hairline);
}

.feature-row:first-child { padding-top: 0; }
.feature-row:last-child { border-bottom: none; padding-bottom: 0; }

.feature-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: rgba(22, 64, 47, 0.2);
    line-height: 1;
}

.feature-row h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-row p {
    color: var(--text-secondary);
    max-width: 62ch;
    margin: 0;
}

/* Editorial 3-col */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
}

.editorial-card {
    border-top: 2px solid var(--accent-green);
    padding-top: 28px;
}

.editorial-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.editorial-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.editorial-meta {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-clay);
    margin-bottom: 12px;
}

/* Page hero (inner) */
.page-hero {
    padding: 100px 0 64px;
    border-bottom: var(--border-hairline);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    max-width: 20ch;
}

/* Responsibility tiles */
.resp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.resp-tile {
    display: block;
    padding: 48px 40px;
    border: var(--border-hairline);
    background: var(--bg-surface);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.resp-tile:hover {
    border-color: var(--accent-clay);
    background: var(--bg-primary);
    text-decoration: none;
}

.resp-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(22, 64, 47, 0.15);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.resp-tile h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.resp-tile p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.resp-tile:hover h3 { color: var(--accent-clay); }

/* Contact form */
.contact-section {
    padding: var(--section-pad) 0;
    max-width: 560px;
}

.form-group { margin-bottom: 36px; }

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: none;
    border-bottom: var(--border-hairline);
    background: transparent;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--accent-green);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    margin-top: 16px;
    padding: 16px 40px;
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: var(--accent-clay);
    color: var(--bg-surface);
}

/* Thank you */
.thank-you-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
}

.thank-you-card {
    max-width: 520px;
    text-align: center;
    padding: 56px 48px;
    border: var(--border-hairline);
    background: var(--bg-surface);
}

.thank-you-card h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thank-you-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    border: var(--border-hairline);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-green);
}

.btn-back:hover {
    border-color: var(--accent-clay);
    color: var(--accent-clay);
    text-decoration: none;
}

/* Legal prose */
.legal-content {
    padding: var(--section-pad) 0;
    max-width: 720px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    font-size: 15px;
}

.legal-content ul {
    padding-left: 1.25em;
    margin-bottom: 1.5em;
}

/* Pre-footer */
.pre-footer {
    border-top: var(--border-hairline);
    background: var(--bg-surface);
    padding: 20px 0;
}

.pre-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.pre-footer-link {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.pre-footer-link:hover { color: var(--accent-clay); }

.pre-footer-sep {
    width: 1px;
    height: 14px;
    background: rgba(22, 64, 47, 0.2);
}

/* Footer */
.site-footer {
    padding: 48px 0 56px;
    border-top: var(--border-hairline);
    background: var(--bg-primary);
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 72ch;
    margin-bottom: 40px;
    line-height: 1.7;
}

.regulator-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: var(--border-hairline);
}

.regulator-item {
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.regulator-item:hover { opacity: 1; }

.regulator-item img {
    height: 48px;
    width: auto;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    margin: 0;
}

/* Responsible manifesto intro */
.manifesto-intro {
    max-width: 58ch;
    color: var(--text-secondary);
    font-size: 17px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slam-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root { --section-pad: 80px; }

    .menu-toggle { display: flex; }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--bg-surface);
        border-bottom: var(--border-hairline);
        padding: 8px 0 16px;
    }

    .site-nav.is-open { display: flex; }

    .nav-item {
        padding: 14px var(--gutter);
        border-bottom: var(--border-hairline);
    }

    .site-header { position: relative; }

    .slam-grid,
    .editorial-grid,
    .resp-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        grid-template-columns: 56px 1fr;
        gap: 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero h1 { max-width: none; }
}

@media (max-width: 480px) {
    :root { --gutter: 20px; --section-pad: 64px; }

    .thank-you-card { padding: 40px 28px; }

    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium sports media redesign */
:root {
    --bg-primary: #0b0f19;
    --bg-surface: #121824;
    --text-primary: #f5f7ff;
    --text-secondary: #abb7cc;
    --accent-green: #ccff00;
    --accent-clay: #d4af37;
    --border-hairline: 1px solid rgba(255, 255, 255, 0.12);
    --font-serif: "Montserrat", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background:
        radial-gradient(circle at 10% 10%, rgba(204, 255, 0, 0.08), transparent 45%),
        radial-gradient(circle at 90% 5%, rgba(212, 175, 55, 0.07), transparent 40%),
        var(--bg-primary);
    color: var(--text-primary);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--accent-green);
}

a:hover {
    color: var(--accent-clay);
}

.section-head {
    margin-bottom: 34px;
}

.site-header {
    position: sticky;
    top: 14px;
    margin: 0 auto;
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 14, 24, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
    padding: 14px 20px;
}

.brand {
    gap: 14px;
}

.brand-logo {
    height: 28px;
    filter: brightness(0) invert(1);
}

.brand-domain {
    display: inline-flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d1daea;
}

.site-nav {
    gap: 14px;
}

.nav-item {
    padding: 10px 14px;
    border-radius: 999px;
    color: #d8e0ee;
    font-size: 11px;
    letter-spacing: 0.1em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-item:hover {
    color: #05070c;
    background: var(--accent-green);
    transform: translateY(-1px);
}

.menu-toggle {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
    color: #f2f5ff;
    border-radius: 999px;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    background: var(--accent-green);
}

.hero {
    padding-top: 44px;
    border-bottom: none;
}

.hero-banner {
    position: relative;
    min-height: min(74vh, 720px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: min(74vh, 720px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(6, 10, 16, 0.85) 20%, rgba(6, 10, 16, 0.38) 55%, rgba(6, 10, 16, 0.8) 100%),
        linear-gradient(0deg, rgba(6, 10, 16, 0.6), transparent 40%);
}

.hero-copy {
    position: absolute;
    left: clamp(20px, 5vw, 64px);
    bottom: clamp(24px, 6vw, 64px);
    max-width: 58ch;
    z-index: 2;
    padding-bottom: 0;
}

.hero-kicker {
    color: var(--accent-green);
    margin-bottom: 14px;
}

.hero h1 {
    margin-bottom: 18px;
    max-width: 19ch;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 1.02;
}

.hero-intro {
    font-size: 1rem;
    color: #dce5f4;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--accent-green);
    color: #080d14;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-cta-secondary {
    background: transparent;
    color: #f5f7ff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-cta:hover {
    color: #111620;
    background: #e5ff73;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(204, 255, 0, 0.25);
}

.hero-cta-secondary:hover {
    color: #080d14;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.12);
}

.brands-section {
    padding: 40px 0 52px;
    background: transparent;
    border-bottom: none;
}

.brands-panel {
    border-top: 2px solid var(--accent-green);
}

.slam-section,
.pre-footer,
.site-footer,
.magazine-aside,
.resp-tile,
.thank-you-card {
    background: rgba(18, 24, 36, 0.72);
    border-color: rgba(255, 255, 255, 0.12);
}

.match-hub,
.tournament-feed,
.player-section,
.news-section {
    padding: 88px 0;
}

.match-grid,
.media-grid,
.player-grid,
.news-grid {
    display: grid;
    gap: 22px;
}

.match-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.match-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(20, 27, 40, 0.92), rgba(11, 15, 25, 0.95));
    border-radius: 16px;
    padding: 24px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.match-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(204, 255, 0, 0.5);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

.match-state {
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.match-state.is-live {
    color: var(--accent-green);
}

.match-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.match-card h3 span {
    color: #8e99ae;
    font-size: 0.85em;
    margin: 0 4px;
}

.match-score {
    margin-bottom: 8px;
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
}

.match-meta {
    margin: 0;
    color: #9eacc6;
    font-size: 14px;
}

.media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(14, 20, 32, 0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.media-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.media-body {
    padding: 18px;
}

.media-tag {
    margin-bottom: 8px;
    color: var(--accent-clay);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 700;
}

.media-body h3 {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.player-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.player-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(14, 20, 32, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.player-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.player-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.player-body {
    padding: 18px;
}

.player-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.player-body p {
    margin: 0;
    color: #b1bfd5;
}

.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 21, 33, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.news-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-meta {
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    font-weight: 700;
}

.news-card p {
    color: #b3c1d6;
    margin: 0;
}

.news-card-accent {
    border-color: rgba(204, 255, 0, 0.4);
    background: linear-gradient(180deg, rgba(28, 35, 20, 0.75), rgba(16, 24, 12, 0.82));
}

.section-label {
    color: #98a7bf;
}

.section-lead,
.magazine-main p,
.feature-row p,
.manifesto-intro,
.footer-copy,
.footer-disclaimer {
    color: #acbbd2;
}

.feature-num,
.resp-num {
    color: rgba(204, 255, 0, 0.2);
}

.btn-submit {
    background: var(--accent-green);
    color: #0a111c;
    border-radius: 999px;
}

.btn-submit:hover {
    background: #e1ff61;
    color: #0a111c;
}

.form-group input,
.form-group textarea,
.form-group select {
    border-bottom-color: rgba(255, 255, 255, 0.24);
    color: #eef2f9;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7f8ca3;
}

.pre-footer-link,
.stat-label {
    color: #b3bfd3;
}

.stat-value {
    color: var(--accent-green);
}

.regulator-item img {
    height: auto;
    max-height: 56px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: none;
}

@media (max-width: 1024px) {
    .site-header {
        width: calc(100% - (var(--gutter) * 2));
    }

    .match-grid,
    .media-grid,
    .player-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 8px;
    }

    .header-inner {
        padding: 12px 14px;
    }

    .brand-domain {
        display: none;
    }

    .site-nav {
        background: rgba(12, 16, 26, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        padding: 8px 10px 14px;
    }

    .nav-item {
        border-radius: 10px;
        margin: 3px 0;
        border-bottom: none;
    }

    .hero-banner,
    .hero-banner img {
        min-height: 520px;
    }

    .hero-copy {
        right: 18px;
        left: 18px;
        bottom: 18px;
    }

    .hero h1 {
        max-width: none;
    }

    .match-grid,
    .media-grid,
    .player-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .brands-panel {
        padding: 22px 18px 24px;
    }
}
