* {
    box-sizing: border-box;
}

:root {
    --bg: #111315;
    --bg-alt: #171a1e;
    --panel: #1c2025;
    --panel-alt: #232830;
    --border: #343a40;
    --text: #f3f4f6;
    --muted: #a7afb8;
    --accent: #f2c500;
    --accent-dark: #caa300;
    --danger: #d9534f;
    --success: #4caf50;
    --shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body {
    position: relative;
    min-height: 100vh;
}

.site-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 40%),
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,0.01) 0,
            rgba(255,255,255,0.01) 2px,
            transparent 2px,
            transparent 14px
        ),
        linear-gradient(180deg, #121418 0%, #0f1113 100%);
    z-index: 0;
}

.site-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px;
}

.site-header {
    margin-bottom: 24px;
}

.site-header-image-wrap {
    background: linear-gradient(180deg, #0f1113 0%, #15191d 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 10px;
}

.site-header-image {
    display: block;
    width: 100%;
    height: auto;
}

.site-nav {
    margin-top: 12px;
    background: linear-gradient(180deg, #181c21 0%, #14181c 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.site-nav li {
    margin: 0;
}

.site-nav a {
    display: block;
    padding: 14px 18px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    border-bottom: 3px solid transparent;
}

.site-nav a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

.site-nav li.active a {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(242, 197, 0, 0.05);
}

.page-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.page-heading h1 {
    margin: 0 0 6px;
    font-size: 34px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.page-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.season-badge,
.pill {
    display: inline-block;
    background: rgba(242, 197, 0, 0.1);
    border: 1px solid rgba(242, 197, 0, 0.35);
    color: var(--accent);
    padding: 10px 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    white-space: nowrap;
}

.panel {
    background: linear-gradient(180deg, var(--panel) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 20px;
}

.panel-accent {
    border-top: 3px solid var(--accent);
}

.panel h2,
.panel h3 {
    margin-top: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.grid {
    display: grid;
    gap: 20px;
}

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

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

.summary-card,
.stat-card,
.news-card,
.video-card {
    background: linear-gradient(180deg, var(--panel-alt) 0%, var(--panel) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 18px;
}

.summary-card-label,
.eyebrow {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    margin-bottom: 8px;
}

.summary-card-value,
.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
}

.home-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.callout {
    border-left: 4px solid var(--accent);
    padding-left: 16px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.button {
    display: inline-block;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #151515;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    padding: 12px 16px;
    border: 1px solid #b39100;
}

.button-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.muted {
    color: var(--muted);
}

.table-wrap {
    overflow-x: auto;
}

.table-dark {
    width: 100%;
    border-collapse: collapse;
}

.table-dark th,
.table-dark td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.table-dark th {
    background: #161a1f;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 12px;
}

.table-dark tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.015);
}

.table-dark tbody tr:hover {
    background: rgba(242, 197, 0, 0.05);
}

.list-clean {
    margin: 0;
    padding-left: 18px;
}

.list-clean li {
    margin-bottom: 10px;
}

.news-card-title,
.video-card-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.news-meta,
.video-meta {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.video-embed-placeholder {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(242, 197, 0, 0.35);
    background: rgba(0, 0, 0, 0.2);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 14px;
}

.site-footer {
    margin-top: 10px;
    padding: 20px;
    background: linear-gradient(180deg, #181c21 0%, #14181c 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.footer-title {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .home-hero,
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-heading {
        display: block;
    }

    .season-badge {
        margin-top: 12px;
        white-space: normal;
    }
}


.table-dark th,
.table-dark td {
    border-bottom: 1px solid var(--border);
    padding: 12px 10px;
    text-align: left;
}

.list-clean {
    margin: 0;
    padding-left: 18px;
}

.site-footer {
    margin-top: 28px;
    padding: 20px;
    background: linear-gradient(180deg, #181c21 0%, #14181c 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.footer-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.footer-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.video-feature-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: start;
}

.video-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0f1113;
}

.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-thumb-link {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0f1113;
    text-decoration: none;
}

.video-thumb-link-large {
    min-height: 320px;
}

.video-thumb {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-thumb-overlay {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-block;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.74);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.video-card-title {
    margin: 14px 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.video-feature-title {
    margin-top: 0;
    font-size: 28px;
}

.video-meta,
.news-meta {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    margin-bottom: 12px;
}

.video-note-panel {
    margin-top: 18px;
    margin-bottom: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.section-heading-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.text-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .home-hero,
    .video-feature-grid,
    .footer-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .page-heading {
        flex-direction: column;
    }
}


.story-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: start;
}

.story-feature-media,
.story-article-media,
.story-card-image-link {
    display: block;
}

.story-feature-image,
.story-article-image,
.story-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--border);
    background: #0f1113;
}

.story-feature-title,
.story-article-title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.1;
}

.story-feature-title a,
.news-card-title a {
    color: var(--text);
    text-decoration: none;
}

.story-feature-title a:hover,
.news-card-title a:hover {
    color: var(--accent);
}

.story-feature-excerpt {
    font-size: 16px;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.story-card {
    background: linear-gradient(180deg, var(--panel-alt) 0%, var(--panel) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.story-card-copy {
    padding: 18px;
}

.story-article {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.story-body {
    margin-top: 22px;
}

.story-body p {
    margin: 0 0 18px;
    color: var(--text);
    line-height: 1.8;
    font-size: 17px;
}

.story-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .story-feature,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .story-feature-title,
    .story-article-title {
        font-size: 24px;
    }

    .story-body p {
        font-size: 16px;
    }
}


.site-utility-right {
    display: none;
}

.site-nav ul {
    justify-content: flex-start;
}

.page-heading {
    margin-bottom: 18px;
}

.homepage-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.homepage-lead-story {
    padding: 20px;
}

.homepage-lead-story-image-link {
    display: block;
    margin-bottom: 18px;
}

.homepage-lead-story-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.homepage-lead-story-title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.06;
}

.homepage-lead-story-title a {
    color: var(--text);
    text-decoration: none;
}

.homepage-lead-story-title a:hover {
    color: var(--accent);
}

.homepage-lead-story-excerpt {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.homepage-side-stack {
    display: grid;
    gap: 20px;
}

.homepage-side-card {
    height: 100%;
}

.homepage-side-title {
    font-size: 24px;
    line-height: 1.1;
}

.homepage-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.homepage-bottom-card {
    min-height: 100%;
}

@media (max-width: 960px) {
    .homepage-top-grid,
    .homepage-bottom-grid {
        grid-template-columns: 1fr;
    }
}


/* Homepage layout refresh */
:root {
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.homepage-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.homepage-lead-column {
    display: grid;
    gap: 20px;
}

.homepage-lead-story,
.homepage-secondary-story {
    padding: 20px;
}

.homepage-lead-story-image-link {
    display: block;
    margin-bottom: 18px;
}

.homepage-lead-story-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.homepage-lead-story-title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.06;
}

.homepage-lead-story-title a,
.homepage-secondary-story-title a {
    color: var(--text);
    text-decoration: none;
}

.homepage-lead-story-title a:hover,
.homepage-secondary-story-title a:hover {
    color: var(--accent);
}

.homepage-lead-story-excerpt {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.homepage-secondary-story-title {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.12;
}

.homepage-side-stack {
    display: grid;
    gap: 20px;
}

.homepage-side-card {
    height: 100%;
}

.homepage-side-title {
    font-size: 24px;
    line-height: 1.1;
}

.homepage-video-item + .homepage-video-item {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-video-thumb-link {
    display: block;
    margin-bottom: 10px;
}

.homepage-video-thumb {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.homepage-video-title {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.22;
}

.homepage-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.homepage-bottom-card {
    min-height: 100%;
}

@media (max-width: 960px) {
    .homepage-top-grid,
    .homepage-bottom-grid {
        grid-template-columns: 1fr;
    }

    .homepage-lead-column {
        gap: 16px;
    }
}
