:root {
    --bg: #07121f;
    --bg-soft: #0c1b2d;
    --bg-card: #102239;
    --surface: #ffffff;
    --text: #e8f2ff;
    --muted: #9fb3c9;
    --ink: #111827;
    --ink-soft: #526071;
    --brand: #0ea5e9;
    --brand-2: #22d3ee;
    --accent: #facc15;
    --line: rgba(255, 255, 255, 0.11);
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 32px)); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 18, 31, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img { height: 44px; width: auto; }
.site-menu { display: flex; align-items: center; gap: 22px; color: var(--muted); }
.site-menu a { font-weight: 700; font-size: 0.94rem; }
.site-menu a:hover { color: var(--text); }
.menu-cta {
    color: var(--bg) !important;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
}
.menu-toggle {
    display: none;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
    background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.32), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(34, 211, 238, 0.20), transparent 30%),
        linear-gradient(180deg, #07121f 0%, #0a1b2c 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 320px;
    background: radial-gradient(closest-side, rgba(250, 204, 21, 0.14), transparent);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 44px;
    align-items: center;
}
.hero h1, .page-hero h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.45rem, 6vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
}
.hero p, .page-hero p {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.12rem;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-2);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 900;
}
.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--accent);
    box-shadow: 0 0 22px var(--accent);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button-primary, .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 20px;
    font-weight: 900;
}
.button-primary { background: var(--surface); color: var(--ink); }
.button-secondary { color: var(--text); border: 1px solid var(--line); }

.section { padding: 66px 0; background: var(--surface); color: var(--ink); }
.section-alt { background: #f5f8fc; }
.section-heading { margin-bottom: 28px; }
.section-heading h2 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}
.section-heading .eyebrow { color: #0369a1; }
.split { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.link-arrow { color: #0369a1; font-weight: 900; }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.article-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.hero-featured .article-card { background: rgba(255, 255, 255, 0.08); color: var(--text); }
.article-card-large { box-shadow: var(--shadow); }
.card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-card);
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .card-image img { transform: scale(1.045); }
.card-content { padding: 22px; }
.card-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.card-kicker span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    font-size: 0.74rem;
    font-weight: 900;
}
.hero-featured .card-kicker span { background: rgba(255, 255, 255, 0.12); color: var(--brand-2); }
.article-card h2 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.18; letter-spacing: -0.025em; }
.article-card-large h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.article-card p { margin: 0; color: var(--ink-soft); }
.hero-featured .article-card p { color: var(--muted); }
.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 700;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.sport-pill {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 92px;
    padding: 18px;
    border-radius: 20px;
    background: #eef6ff;
    border: 1px solid rgba(14, 165, 233, 0.16);
    transition: 0.2s ease;
}
.sport-pill:hover { transform: translateY(-3px); background: #e0f2fe; }
.sport-pill span { font-weight: 900; }
.sport-pill small { color: var(--ink-soft); }

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.competition-card {
    display: block;
    min-height: 190px;
    padding: 20px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #0f2239, #06111d);
    color: var(--text);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
}
.competition-card span { color: var(--brand-2); font-weight: 900; font-size: 0.8rem; }
.competition-card h3 { margin: 10px 0; font-size: 1.15rem; line-height: 1.1; }
.competition-card p { color: var(--muted); margin: 0; font-size: 0.94rem; }

.page-hero {
    padding: 72px 0;
    background: linear-gradient(140deg, #07121f 0%, #10243c 100%);
}
.article-hero {
    padding: 54px 0;
    background: linear-gradient(140deg, #07121f 0%, #10243c 100%);
}
.article-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 44px;
}
.breadcrumbs { display: flex; gap: 10px; margin-bottom: 18px; color: var(--muted); font-weight: 800; }
.article-hero h1 { margin: 12px 0 18px; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 0.98; }
.article-hero p { color: var(--muted); font-size: 1.12rem; }
.article-main-image { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-weight: 800; }
.article-meta a { color: var(--brand-2); }
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
    padding: 56px 0;
    color: var(--ink);
}
.article-page { background: var(--surface); }
.article-content {
    font-size: 1.08rem;
    color: #1f2937;
}
.article-content h2 { margin-top: 34px; font-size: 1.7rem; line-height: 1.2; }
.article-content p { margin: 0 0 20px; }
.article-content a { color: #0369a1; font-weight: 800; }
.source-note {
    margin-top: 32px !important;
    padding: 16px;
    border-radius: 16px;
    background: #f1f5f9;
    font-size: 0.94rem;
}
.article-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    padding: 20px;
    border-radius: var(--radius);
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.article-sidebar h2 { margin-top: 0; font-size: 1.05rem; }
.article-sidebar a { display: block; padding: 14px 0; border-top: 1px solid #e5e7eb; font-weight: 800; }
.rich-text { font-size: 1.08rem; color: #243041; }
.rich-text h2 { margin-top: 30px; }
.empty-state { text-align: center; padding: 46px 0; color: var(--ink-soft); }

.site-footer {
    background: #06111d;
    color: var(--muted);
    padding: 48px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
}
.footer-grid h3 { color: var(--text); margin: 0 0 12px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-bottom { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); }

@media (max-width: 980px) {
    .menu-toggle { display: inline-flex; }
    .site-menu {
        position: absolute;
        top: 78px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 22px;
        background: #0b1b2d;
        box-shadow: var(--shadow);
    }
    .site-menu.is-open { display: flex; }
    .hero-grid, .article-hero-grid, .article-layout { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sports-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .competitions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-sidebar { position: static; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 24px, 1180px); }
    .hero { padding: 50px 0; }
    .hero-actions, .split { align-items: stretch; flex-direction: column; }
    .articles-grid, .sports-grid, .competitions-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .card-meta { flex-direction: column; }
}
