:root {
    --bg: #050504;
    --bg-soft: #090806;
    --panel: rgba(14, 13, 9, .88);
    --panel-solid: #0e0d09;
    --panel-light: #15130d;
    --gold: #c7a84f;
    --gold-light: #ead17d;
    --gold-dark: #7e6529;
    --text: #f0ece2;
    --muted: #918c82;
    --muted-dark: #68645c;
    --line: rgba(199, 168, 79, .25);
    --line-strong: rgba(199, 168, 79, .45);
    --line-soft: rgba(255, 255, 255, .09);
    --success: #67c391;
    --warning: #d9bd67;
    --danger: #d98b82;
    --push: #9ba9c5;
    --max-width: 1216px;
    --radius: 8px;
    --shadow: 0 18px 54px rgba(0, 0, 0, .25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(rgba(199, 168, 79, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199, 168, 79, .026) 1px, transparent 1px),
        radial-gradient(circle at 10% 5%, rgba(133, 104, 36, .12), transparent 29rem),
        radial-gradient(circle at 88% 8%, rgba(199, 168, 79, .07), transparent 25rem),
        var(--bg);
    background-size: 64px 64px, 64px 64px, auto, auto, auto;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(calc(100% - 64px), var(--max-width));
    margin: 0 auto;
}

.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;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 79px;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(5, 5, 4, .9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 79px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    min-width: 210px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: block;
    border: 1px solid var(--gold);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 4px rgba(199, 168, 79, .08);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: #f6f0df;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.35;
}

.brand small {
    margin-top: 2px;
    color: var(--gold-dark);
    font-size: 8px;
    letter-spacing: .18em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.site-nav a,
.nav-disabled {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #c7c1b5;
    font-size: 13px;
    white-space: nowrap;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--gold-light);
    background: rgba(199, 168, 79, .07);
}

.site-nav a.is-active {
    border-color: rgba(199, 168, 79, .18);
}

.site-nav .nav-external {
    border-color: var(--line);
    color: #d8c98f;
    background: rgba(199, 168, 79, .035);
}

.site-nav .nav-external::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 7px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.site-nav .nav-external:hover {
    border-color: var(--line-strong);
}

.nav-disabled {
    color: #5f5b54;
    cursor: not-allowed;
}

.nav-toggle {
    width: 42px;
    height: 42px;
    display: none;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(199, 168, 79, .04);
    color: var(--gold-light);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: currentColor;
}

/* Shared controls */
.button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #151106;
    border-color: #d5b85f;
    background: linear-gradient(135deg, #ead17d, #b78e32);
    box-shadow: 0 8px 24px rgba(183, 142, 50, .14);
}

.button-primary:hover {
    background: linear-gradient(135deg, #f2dc91, #c49a39);
}

.button-ghost {
    color: var(--gold-light);
    border-color: var(--line);
    background: rgba(199, 168, 79, .035);
}

.button-ghost:hover {
    border-color: var(--line-strong);
    background: rgba(199, 168, 79, .08);
}

.button-disabled {
    color: #5f5b54;
    border-color: var(--line-soft);
    cursor: not-allowed;
}

.button-small {
    min-height: 34px;
    padding: 6px 13px;
    font-size: 12px;
}

.eyebrow,
.hero-kicker,
.section-kicker {
    display: inline-block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .23em;
    text-transform: uppercase;
}

.section {
    padding: 66px 0;
}

.section-dark {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, .012);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 5px 0 0;
    font-size: 28px;
    font-weight: 650;
}

.text-link,
.card-action-link,
.section-link {
    color: var(--gold);
    font-size: 12px;
}

.text-link:hover,
.card-action-link:hover,
.section-link:hover {
    color: var(--gold-light);
}

.empty-state {
    padding: 38px 24px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    background: rgba(199, 168, 79, .018);
    text-align: center;
}

.grid-span,
.card-span {
    grid-column: 1 / -1;
}

.tag,
.access-badge,
.league-badge,
.top-badge,
.result-badge {
    min-height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 9px;
    border: 1px solid var(--line);
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.tag,
.league-badge {
    color: #aaa397;
    border-color: var(--line-soft);
    background: rgba(255, 255, 255, .025);
}

.tag-top,
.top-badge {
    color: #171205;
    border-color: #d1b45b;
    background: linear-gradient(135deg, #e4ca75, #ad842c);
}

.access-badge {
    color: var(--gold-light);
    background: rgba(199, 168, 79, .09);
}

.result-badge.hit {
    color: #8dd9aa;
    border-color: rgba(103, 195, 145, .27);
    background: rgba(103, 195, 145, .1);
}

.result-badge.half {
    color: #e1c66f;
    border-color: rgba(217, 189, 103, .28);
    background: rgba(217, 189, 103, .09);
}

.result-badge.miss {
    color: #e19a92;
    border-color: rgba(217, 139, 130, .25);
    background: rgba(217, 139, 130, .09);
}

.result-badge.push {
    color: #b4bed3;
    border-color: rgba(155, 169, 197, .25);
    background: rgba(155, 169, 197, .09);
}

.result-badge.pending {
    color: var(--muted);
    border-color: var(--line-soft);
    background: rgba(255, 255, 255, .025);
}

/* V4 today / reviews */
.page-shell {
    width: min(calc(100% - 64px), var(--max-width));
    margin: 0 auto;
    padding: 24px 0 72px;
}

.hero-section {
    position: relative;
    padding: 22px 0 28px;
    border-bottom: 1px solid var(--line-soft);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 72px;
}

.hero-title {
    margin: 7px 0 10px;
    color: #f5efe2;
    font-size: clamp(25px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.3;
}

.hero-description {
    max-width: 720px;
    margin: 0;
    color: #aaa49a;
    font-size: 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-signal-card {
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(199, 168, 79, .08), transparent 55%),
        rgba(12, 11, 8, .76);
}

.signal-label {
    color: var(--gold-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.signal-main {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 5px 0 12px;
}

.signal-main strong {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.signal-main span {
    padding-bottom: 3px;
    color: #b0aa9e;
    font-size: 12px;
}

.signal-lines {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
}

.signal-lines > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.signal-lines small {
    color: var(--muted);
    font-size: 10px;
}

.signal-lines b {
    color: var(--gold-light);
    font-size: 16px;
}

.metric-grid,
.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.review-stats-grid {
    gap: 18px;
}

.metric-card {
    min-width: 0;
    min-height: 142px;
    padding: 18px 20px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(199, 168, 79, .045), transparent 55%),
        var(--panel);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .12);
}

.metric-card > span {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}

.metric-card > strong {
    display: block;
    margin: 7px 0 3px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.metric-card > strong small {
    color: var(--muted);
    font-family: inherit;
    font-size: 11px;
}

.metric-card h2 {
    margin: 8px 0 2px;
    color: #dcd6c9;
    font-size: 13px;
    font-weight: 650;
}

.metric-card p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.metric-card-summary > strong {
    font-size: 31px;
}

.result-metric {
    border-top-width: 2px;
}

.result-metric.hit {
    border-top-color: rgba(103, 195, 145, .55);
}

.result-metric.half {
    border-top-color: rgba(217, 189, 103, .6);
}

.result-metric.miss {
    border-top-color: rgba(217, 139, 130, .55);
}

.result-metric.push {
    border-top-color: rgba(155, 169, 197, .55);
}

.result-metric.hit > strong {
    color: var(--success);
}

.result-metric.half > strong {
    color: var(--warning);
}

.result-metric.miss > strong {
    color: var(--danger);
}

.result-metric.push > strong {
    color: var(--push);
}

.page-section {
    margin-top: 42px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.section-head h2,
.history-panel-head h2,
.recent-strip h2,
.cta-panel h2 {
    margin: 4px 0 2px;
    color: #f0ece2;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}

.section-head p,
.history-panel-head p,
.recent-strip p,
.cta-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.section-count {
    flex: 0 0 auto;
    padding: 5px 10px;
    border: 1px solid var(--line-soft);
    border-radius: 99px;
    color: #aaa397;
    background: rgba(255, 255, 255, .018);
    font-size: 10px;
}

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

.intel-card,
.top-watch-card,
.review-card {
    position: relative;
    min-width: 0;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(199, 168, 79, .025), transparent 55%),
        rgba(11, 10, 7, .82);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .13);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.intel-card:hover,
.top-watch-card:hover,
.review-card:hover {
    transform: translateY(-1px);
    border-color: rgba(199, 168, 79, .35);
    background-color: rgba(14, 13, 9, .9);
}

.intel-card-wide {
    display: grid;
    grid-template-columns: minmax(290px, .9fr) minmax(340px, 1.1fr) 112px;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

.card-labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.intel-card h3,
.top-watch-card h3,
.review-card h3,
.history-row h3 {
    margin: 10px 0 4px;
    color: #f0ece3;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.intel-card h3 a:hover,
.top-watch-card h3 a:hover,
.review-card h3 a:hover {
    color: var(--gold-light);
}

.match-teams {
    margin: 2px 0 0;
    color: #c9c2b5;
    font-size: 13px;
}

.time-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    color: #777168;
    font-size: 10px;
}

.intel-pick-panel,
.pick-box {
    min-width: 0;
    padding: 13px 15px;
    border: 1px solid rgba(199, 168, 79, .25);
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(199, 168, 79, .08), rgba(199, 168, 79, .025));
}

.intel-pick-panel span,
.intel-pick-panel strong,
.intel-pick-panel small,
.pick-box span,
.pick-box strong {
    display: block;
}

.intel-pick-panel span,
.pick-box span {
    color: var(--gold);
    font-size: 10px;
}

.intel-pick-panel strong,
.pick-box strong {
    margin-top: 3px;
    color: #f2e8c9;
    font-size: 17px;
    line-height: 1.35;
}

.intel-pick-panel small {
    margin-top: 8px;
    color: #817b70;
    font-size: 10px;
}

.intel-card-action {
    display: flex;
    justify-content: flex-end;
}

.intel-card-foot {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 -20px -20px;
    padding: 11px 20px;
    border-top: 1px solid var(--line-soft);
    color: #706b63;
    font-size: 10px;
}

.intel-card-foot span:last-child {
    max-width: 62%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: right;
}

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

.top-watch-card {
    padding: 20px;
    border-color: rgba(199, 168, 79, .3);
    background:
        linear-gradient(145deg, rgba(199, 168, 79, .09), transparent 52%),
        rgba(13, 11, 7, .9);
}

.top-watch-card > time,
.match-card > time {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #706b62;
    font-size: 10px;
}

.top-watch-card h3 {
    margin-top: 18px;
}

.pick-box {
    margin-top: 14px;
}

.pick-box.compact strong {
    font-size: 14px;
}

.card-summary {
    display: -webkit-box;
    min-height: 43px;
    margin: 13px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.top-watch-card > .card-action-link {
    display: inline-block;
    margin-top: 14px;
}

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

.match-card {
    padding: 20px;
}

.match-card h3 {
    margin-top: 18px;
}

.match-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
}

.match-card footer small {
    color: #706b63;
    font-size: 10px;
}

.history-panel {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(11, 10, 7, .72);
    overflow: hidden;
}

.history-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 20px;
    border-bottom: 1px solid var(--line-soft);
}

.history-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.history-metrics span,
.history-metrics a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid var(--line-soft);
    border-radius: 99px;
    color: #aaa397;
    font-size: 10px;
}

.history-metrics strong {
    color: var(--gold-light);
    font-size: 13px;
}

.history-metrics a {
    color: var(--gold);
    border-color: var(--line);
}

.history-row {
    display: grid;
    grid-template-columns: 110px minmax(220px, 1.25fr) minmax(140px, .8fr) minmax(140px, .8fr) 86px;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.history-row:last-child {
    border-bottom: 0;
}

.history-row > div:first-child {
    display: grid;
    justify-items: start;
    gap: 6px;
}

.history-row time,
.history-row small {
    color: #777168;
    font-size: 10px;
}

.history-row h3 {
    margin: 2px 0 0;
    font-size: 14px;
}

.history-row > div:nth-child(3) strong,
.history-row > div:nth-child(4) strong {
    display: block;
    margin-top: 3px;
    color: #d6d0c4;
    font-size: 12px;
    font-weight: 500;
}

.history-row > a {
    color: var(--gold);
    font-size: 11px;
    text-align: right;
}

.recent-strip {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
    align-items: center;
    gap: 30px;
    margin-top: 16px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(110deg, rgba(199, 168, 79, .075), transparent 55%),
        rgba(12, 11, 8, .78);
}

.recent-strip h2 {
    font-size: 17px;
}

.recent-strip-data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.recent-strip-data span {
    padding: 6px 10px;
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    color: #918b80;
    background: rgba(255, 255, 255, .018);
    font-size: 10px;
}

.recent-strip-data strong {
    margin-left: 3px;
    color: var(--gold-light);
    font-size: 13px;
}

.recent-strip-data small {
    color: #6d685f;
    font-size: 10px;
}

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

.archive-card {
    min-height: 194px;
    padding: 20px;
}

.archive-card.hit {
    --result-color: 103, 195, 145;
}

.archive-card.half {
    --result-color: 217, 189, 103;
}

.archive-card.miss {
    --result-color: 217, 139, 130;
}

.archive-card.push {
    --result-color: 155, 169, 197;
}

.archive-card > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.archive-card > header time {
    color: #706b63;
    font-size: 10px;
}

.card-league {
    display: block;
    margin-top: 12px;
    color: var(--gold-dark);
    font-size: 9px;
    letter-spacing: .1em;
}

.archive-card h3 {
    margin: 3px 0 10px;
}

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

.review-facts p {
    min-width: 0;
    margin: 0;
}

.review-facts span,
.review-facts strong {
    display: block;
}

.review-facts span {
    color: #777168;
    font-size: 10px;
}

.review-facts strong {
    margin-top: 2px;
    color: #d8d2c5;
    font-size: 11px;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.review-note {
    display: -webkit-box;
    margin: 13px 0 0;
    padding: 9px 11px;
    border: 1px solid rgba(var(--result-color), .25);
    border-radius: 5px;
    overflow: hidden;
    color: #b8b1a5;
    background: rgba(var(--result-color), .075);
    font-size: 11px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.archive-card > .card-action-link {
    display: inline-block;
    margin-top: 11px;
}

.review-archive-sections {
    display: grid;
    gap: 40px;
}

.archive-group {
    scroll-margin-top: 95px;
}

.archive-group-head {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-soft);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 46px;
    padding: 25px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 85% 20%, rgba(199, 168, 79, .11), transparent 20rem),
        rgba(13, 11, 7, .86);
}

.cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

/* Homepage */
.hero {
    position: relative;
    padding: 84px 0 74px;
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -140px;
    top: -270px;
    border: 1px solid rgba(199, 168, 79, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(199, 168, 79, .012), 0 0 0 140px rgba(199, 168, 79, .008);
}

.hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    margin: 10px 0 0;
    color: var(--gold-light);
    font-family: Georgia, "Songti SC", serif;
    font-size: clamp(52px, 8vw, 92px);
    font-weight: 500;
    letter-spacing: .09em;
    line-height: 1.08;
}

.hero-copy h2 {
    margin: 17px 0 8px;
    font-size: 24px;
    font-weight: 500;
}

.hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
}

.hero-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-ring {
    position: relative;
    width: 230px;
    height: 230px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 168, 79, .32);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 168, 79, .09), transparent 65%);
}

.hero-ring::before {
    content: "";
    position: absolute;
    inset: 17px;
    border: 1px dashed rgba(199, 168, 79, .23);
    border-radius: 50%;
}

.hero-ring span {
    position: absolute;
    top: 44px;
    color: var(--gold-dark);
    font-size: 9px;
    letter-spacing: .32em;
}

.hero-ring strong {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: .13em;
    line-height: 1.3;
    text-align: center;
}

.hero-data {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    color: #777168;
    font-size: 10px;
}

.featured-section {
    border-bottom: 1px solid var(--line-soft);
    background: rgba(199, 168, 79, .015);
}

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

.featured-card,
.content-card,
.channel-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.featured-card {
    display: flex;
    flex-direction: column;
    border-color: var(--line);
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #777168;
    font-size: 10px;
}

.featured-league {
    display: block;
    margin-top: 18px;
    color: var(--gold-dark);
    font-size: 10px;
    letter-spacing: .12em;
}

.featured-card h3,
.content-card h3 {
    margin: 7px 0;
    font-size: 19px;
    line-height: 1.45;
}

.featured-card p,
.content-card p {
    color: var(--muted);
    font-size: 12px;
}

.teams {
    color: #d7d0c2 !important;
    font-weight: 700;
}

.pick-line {
    display: flex;
    gap: 10px;
    margin: 13px 0;
    padding: 9px 11px;
    border-left: 2px solid var(--gold);
    background: rgba(199, 168, 79, .055);
    color: #d7d0c2;
    font-size: 11px;
}

.pick-line span {
    flex: 0 0 auto;
    color: var(--gold);
}

.featured-card .button {
    align-self: flex-start;
    margin-top: auto;
}

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

.content-card {
    position: relative;
    min-height: 260px;
    padding-bottom: 54px;
}

.card-link {
    position: absolute;
    right: 22px;
    bottom: 19px;
    color: var(--gold);
    font-size: 11px;
}

.channel-card {
    min-height: 225px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.channel-index {
    align-self: flex-end;
    color: rgba(199, 168, 79, .25);
    font-family: Georgia, serif;
    font-size: 34px;
}

.channel-card h2 {
    margin: 5px 0;
    font-size: 22px;
}

.channel-card p {
    margin: 0 0 20px;
    color: var(--muted);
}

.channel-card .button {
    margin-top: auto;
}

/* Detail */
.detail-header {
    padding: 54px 0 38px;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(199, 168, 79, .018);
}

.detail-narrow {
    max-width: 860px;
}

.back-link {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 12px;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-header h1 {
    margin: 13px 0 10px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.35;
}

.detail-summary {
    color: var(--muted);
    font-size: 16px;
}

.detail-time {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 20px;
    color: #777168;
    font-size: 12px;
}

.detail-time span {
    color: #ded7c9;
    font-weight: 700;
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.detail-facts > div {
    padding: 17px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.detail-facts span,
.detail-facts strong {
    display: block;
}

.detail-facts span {
    color: var(--gold-dark);
    font-size: 10px;
}

.detail-facts strong {
    margin-top: 4px;
    color: var(--gold-light);
    font-size: 17px;
}

.article-body {
    padding: 8px 0 34px;
    color: #ccc5b8;
    font-size: 15px;
    line-height: 2;
}

.review-detail {
    margin-bottom: 32px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.review-detail-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-soft);
}

.review-detail-heading h2 {
    margin: 3px 0 0;
    font-size: 24px;
}

.review-summary {
    padding: 12px 14px;
    border-left: 2px solid var(--gold);
    color: #ddd5c7;
    background: rgba(199, 168, 79, .045);
}

.review-body {
    padding: 15px 0;
    color: #c8c1b4;
    line-height: 1.95;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0 42px;
    border-top: 1px solid var(--line-soft);
    color: #6e6961;
    font-size: 11px;
}

.not-found {
    min-height: 65vh;
    display: grid;
    place-items: center;
    padding: 70px 0;
    text-align: center;
}

.error-code {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 84px;
}

.not-found h1 {
    margin: 0;
}

.not-found p {
    color: var(--muted);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line-soft);
    background: rgba(5, 5, 4, .92);
}

.footer-inner {
    min-height: 138px;
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(300px, 1fr);
    align-items: center;
    gap: 12px 40px;
    padding-top: 28px;
    padding-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-brand img {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: #ded7c9;
    font-size: 15px;
}

.footer-brand span {
    color: var(--gold-dark);
    font-size: 8px;
    letter-spacing: .16em;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-nav a {
    color: #a59e92;
    font-size: 12px;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-inner > p {
    grid-column: 1 / -1;
    margin: 7px 0 0;
    color: #6f6a62;
    font-size: 10px;
}

.footer-inner > small {
    grid-column: 1 / -1;
    color: #514e48;
    font-size: 9px;
}

@media (max-width: 1000px) {
    .brand {
        min-width: auto;
    }

    .site-nav a,
    .nav-disabled {
        padding-right: 10px;
        padding-left: 10px;
    }

    .hero-grid {
        gap: 34px;
    }

    .intel-card-wide {
        grid-template-columns: minmax(240px, .85fr) minmax(300px, 1.15fr) 96px;
        gap: 16px;
    }

    .history-row {
        grid-template-columns: 100px minmax(180px, 1.2fr) minmax(120px, .8fr) minmax(120px, .8fr) 70px;
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .metric-grid,
    .review-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .hero .hero-grid {
        grid-template-columns: minmax(0, 1fr) 270px;
    }

    .intel-card-wide {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    }

    .intel-card-action {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

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

    .history-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .history-metrics {
        justify-content: flex-start;
    }

    .history-row {
        grid-template-columns: 100px minmax(180px, 1fr) minmax(120px, .7fr) minmax(120px, .7fr);
    }

    .history-row > a {
        grid-column: 2 / -1;
        text-align: left;
    }
}

@media (max-width: 760px) {
    .container,
    .page-shell {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .site-header {
        height: auto;
        min-height: 68px;
    }

    .header-inner {
        min-height: 68px;
        flex-wrap: wrap;
        gap: 0;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand strong {
        font-size: 16px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        width: 100%;
        max-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
        overflow: hidden;
        opacity: 0;
        transition: max-height .2s ease, opacity .2s ease, padding .2s ease;
    }

    .site-nav.is-open {
        max-height: 240px;
        padding: 8px 0 14px;
        opacity: 1;
    }

    .site-nav a,
    .nav-disabled {
        width: 100%;
    }

    .page-shell {
        padding-top: 14px;
        padding-bottom: 52px;
    }

    .hero-grid,
    .hero .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-signal-card {
        max-width: none;
    }

    .hero {
        padding: 58px 0 52px;
    }

    .hero-panel {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 16vw, 70px);
    }

    .section {
        padding: 50px 0;
    }

    .featured-grid,
    .card-grid,
    .channel-grid,
    .match-card-grid,
    .review-card-grid,
    .top-watch-grid {
        grid-template-columns: 1fr;
    }

    .intel-card-wide {
        grid-template-columns: 1fr;
    }

    .intel-card-action {
        grid-column: auto;
    }

    .intel-card-foot {
        grid-column: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .intel-card-foot span:last-child {
        max-width: 100%;
        text-align: left;
    }

    .recent-strip {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .recent-strip-data {
        justify-content: flex-start;
    }

    .history-row {
        grid-template-columns: 95px 1fr;
        gap: 12px;
    }

    .history-row > div:nth-child(3),
    .history-row > div:nth-child(4) {
        grid-column: 2;
    }

    .history-row > a {
        grid-column: 2;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-inner > p,
    .footer-inner > small {
        grid-column: auto;
    }

    .detail-facts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .metric-grid,
    .review-stats-grid {
        grid-template-columns: 1fr;
    }

    .metric-card {
        min-height: 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .hero-actions,
    .hero-actions .button,
    .cta-actions,
    .cta-actions .button {
        width: 100%;
    }

    .signal-lines,
    .review-facts {
        grid-template-columns: 1fr;
    }

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

    .recent-strip-data small {
        grid-column: 1 / -1;
    }

    .history-panel-head {
        padding: 17px;
    }

    .history-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .history-metrics span,
    .history-metrics a {
        justify-content: space-between;
    }

    .history-row {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .history-row > div:nth-child(3),
    .history-row > div:nth-child(4),
    .history-row > a {
        grid-column: auto;
    }

    .history-row > a {
        text-align: left;
    }

    .article-footer,
    .review-detail-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}
