/* =========================================================
   GOAL ZONE — 世界杯开户平台 · 官方入口
   Theme: Modern Sports Portal · Bento Mosaic
   Palette: snow base + midnight navy + signal crimson + steel
   Typography: condensed display + clean sans
   ========================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --snow: #f5f7fb;
    --paper: #ffffff;
    --ink: #0b1f3a;
    --ink-2: #142a4a;
    --ink-3: #1d3866;
    --red: #dc2433;
    --red-2: #b81d2a;
    --red-soft: #fde7e9;
    --gold: #f5b400;
    --slate: #334155;
    --muted: #5b6779;
    --line: #e3e6ec;
    --line-2: #d2d7df;
    --live: #e11d48;
    --radius: 14px;
}
html, body { background: var(--snow); color: var(--ink); }
body {
    font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }

.disp {
    font-family: "Oswald", "Barlow Condensed", "Bebas Neue", "Impact", "Arial Narrow", "PingFang SC", sans-serif;
    font-weight: 700;
    letter-spacing: .01em;
}
.mono {
    font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", Consolas, "Courier New", monospace;
    letter-spacing: .04em;
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px){ .wrap { padding: 0 18px; } }

/* ====== Live ticker strip ====== */
.ticker {
    background: var(--ink);
    color: #fff;
    border-bottom: 2px solid var(--red);
    overflow: hidden;
    padding: 8px 0;
    font-size: 12.5px;
}
.ticker .row { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; white-space: nowrap; }
.ticker .live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-family: "Oswald", "Impact", "Arial Narrow", sans-serif;
}
.ticker .live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.ticker .score {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}
.ticker .score b { color: var(--gold); font-weight: 700; }
.ticker .score em { color: #a0aec0; font-style: normal; }

/* ====== Top nav ====== */
.nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 30;
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", "Impact", "Arial Narrow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.brand .mark::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 12px;
    height: 100%;
    background: var(--red);
    transform: skewX(-18deg) translateX(6px);
}
.brand .mark span { position: relative; z-index: 2; }
.brand-text { line-height: 1.1; }
.brand-text strong {
    font-family: "Oswald", "Impact", "Arial Narrow", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    display: block;
    letter-spacing: .02em;
}
.brand-text small {
    color: var(--muted);
    font-size: 10.5px;
    letter-spacing: .26em;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
    font-family: "JetBrains Mono", monospace;
}
.nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}
.nav ul a {
    display: inline-block;
    padding: 10px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--slate);
    border-radius: 8px;
}
.nav ul a:hover, .nav ul a.on {
    background: var(--ink);
    color: #fff;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav .toggle {
    display: none;
    border: 1.5px solid var(--ink);
    background: transparent;
    padding: 6px 10px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
}
@media (max-width: 980px){
    .nav ul { display: none; flex-direction: column; width: 100%; padding-top: 10px; gap: 0; border-top: 1px solid var(--line); }
    .nav ul.open { display: flex; }
    .nav ul a { width: 100%; border-radius: 0; padding: 14px 10px; border-bottom: 1px solid var(--line); }
    .nav-row { flex-wrap: wrap; }
    .nav .toggle { display: inline-block; }
    .nav-cta .btn-ghost { display: none; }
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    border: 2px solid transparent;
    transition: transform .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-2); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-line { background: var(--paper); border-color: var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); }

/* ====== Hero · Bento mosaic ====== */
.hero { padding: 36px 0 60px; }
.bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 540px;
}
.bento .tile {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
}
.bento .tile:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -22px rgba(11,31,58,.18); border-color: var(--ink-2); }
.bento .a { grid-column: 1; grid-row: 1 / span 2; background: var(--ink); color: #fff; }
.bento .b { grid-column: 2; grid-row: 1; background: var(--red); color: #fff; }
.bento .c { grid-column: 3; grid-row: 1; }
.bento .d { grid-column: 2; grid-row: 2; }
.bento .e { grid-column: 3; grid-row: 2; }

.tile-img { position: absolute; inset: 0; opacity: .25; object-fit: cover; width: 100%; height: 100%; }
.bento .a .tile-img { opacity: .22; }
.bento .b .tile-img { opacity: .18; }
.bento .a, .bento .b { position: relative; }
.bento .a::after, .bento .b::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 0%, transparent 60%, rgba(0,0,0,.18) 100%);
    pointer-events: none;
}

.tile-body { position: relative; padding: 30px 28px; display: flex; flex-direction: column; height: 100%; z-index: 2; }
.bento .a .tile-body { padding: 38px 36px; }
.tag-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: var(--gold);
    margin-bottom: 18px;
}
.tag-line.dark { color: var(--red); }
.tag-line::before {
    content: "";
    width: 18px; height: 2px;
    background: currentColor;
}
.tile h2 {
    font-family: "Oswald", "Impact", "Arial Narrow", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.05;
    letter-spacing: -.005em;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.bento .a h2 { font-size: clamp(36px, 4.2vw, 60px); }
.bento .a h2 em, .bento .b h2 em { color: var(--gold); font-style: normal; }
.bento .c h2 em, .bento .d h2 em, .bento .e h2 em { color: var(--red); font-style: normal; }
.tile p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.8; max-width: 480px; flex: 1; }
.bento .c p, .bento .d p, .bento .e p { color: var(--muted); }
.tile-foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.tile-foot .read {
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bento .c .tile-foot .read, .bento .d .tile-foot .read, .bento .e .tile-foot .read { color: var(--red); }
.tile .pill {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(245,180,0,.16);
    color: var(--gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 100px;
}
.bento .c .pill, .bento .d .pill, .bento .e .pill {
    background: var(--red-soft);
    color: var(--red);
}

@media (max-width: 980px){
    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .bento .a, .bento .b, .bento .c, .bento .d, .bento .e {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
    }
    .bento .a { grid-column: 1 / span 2; min-height: 320px; }
}
@media (max-width: 600px){
    .bento { grid-template-columns: 1fr; }
    .bento .a { grid-column: 1; }
}

/* ====== Section base ====== */
.s { padding: 80px 0; }
.s.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.s.ink { background: var(--ink); color: #fff; }
.s.gradient {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
    color: #fff;
}
.s-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.s-head h2 {
    font-family: "Oswald", "Impact", "Arial Narrow", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.05;
    letter-spacing: -.005em;
    text-transform: uppercase;
}
.s-head h2 em { color: var(--red); font-style: normal; }
.s.ink .s-head h2, .s.gradient .s-head h2 { color: #fff; }
.s.ink .s-head h2 em, .s.gradient .s-head h2 em { color: var(--gold); }
.s-head .kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .3em;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.s.ink .s-head .kicker, .s.gradient .s-head .kicker { color: var(--gold); }
.s-head .kicker::before {
    content: "■";
    color: currentColor;
}
.s-head .more {
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--red);
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
}
.s.ink .s-head .more, .s.gradient .s-head .more { color: var(--gold); border-color: var(--gold); }

/* ====== Match cards (scoreboard style) ====== */
.match-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.match {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.match:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 18px 40px -22px rgba(11,31,58,.18); }
.match .m-head {
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.match .m-head .tag-live {
    background: var(--red);
    padding: 2px 8px;
    border-radius: 3px;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.match .m-head .tag-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
.match .m-head .tag-end { background: var(--slate); padding: 2px 8px; border-radius: 3px; color: #fff; font-weight: 700; }
.match .m-head .tag-upc { background: var(--gold); padding: 2px 8px; border-radius: 3px; color: var(--ink); font-weight: 700; }
.match .m-body {
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.match .team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.match .team .lg {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.match .team:nth-child(3) .lg { background: var(--red); }
.match .team .nm {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--ink);
}
.match .vs {
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--ink);
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.match .vs small { font-size: 10.5px; color: var(--muted); letter-spacing: .14em; margin-top: 4px; font-family: "JetBrains Mono", monospace; }
.match .vs.score { color: var(--red); }
.match .m-foot {
    border-top: 1px solid var(--line);
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    letter-spacing: .08em;
}
@media (max-width: 880px){ .match-row { grid-template-columns: 1fr; } }

/* ====== Steps (开户流程) ====== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: stp;
}
.step {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 26px 22px;
    position: relative;
    transition: background .2s, border-color .2s;
}
.step:hover { background: rgba(255,255,255,.08); border-color: var(--gold); }
.step::before {
    counter-increment: stp;
    content: "0" counter(stp);
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    color: rgba(245,180,0,.18);
    position: absolute;
    top: 14px;
    right: 18px;
}
.step h3 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
}
.step p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.8; position: relative; }
@media (max-width: 980px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .steps { grid-template-columns: 1fr; } }

/* ====== Article cards ====== */
.art-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.art {
    background: var(--paper);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .2s, border-color .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.art:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 18px 40px -22px rgba(11,31,58,.2); }
.art .pic { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.art .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art:hover .pic img { transform: scale(1.05); }
.art .pic .corner {
    position: absolute;
    top: 0; left: 0;
    background: var(--red);
    color: #fff;
    padding: 6px 14px;
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    padding-right: 22px;
}
.art .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.art .meta { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.art h3 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 10px;
}
.art h3 em { color: var(--red); font-style: normal; }
.art p { color: var(--muted); font-size: 14px; flex: 1; margin-bottom: 14px; line-height: 1.8; }
.art .read { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: .08em; font-family: "Oswald", "Impact", sans-serif; text-transform: uppercase; }
@media (max-width: 880px){ .art-row { grid-template-columns: 1fr; } }

/* ====== Stats strip ====== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--ink);
    border-radius: 12px;
    overflow: hidden;
}
.stats .it {
    padding: 26px 24px;
    border-right: 1px solid rgba(255,255,255,.08);
    color: #fff;
    position: relative;
}
.stats .it::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.stats .it:hover::after { transform: scaleX(1); }
.stats .it:last-child { border-right: none; }
.stats .it strong {
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -.02em;
}
.stats .it span {
    display: block;
    margin-top: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    color: rgba(255,255,255,.7);
    letter-spacing: .22em;
    text-transform: uppercase;
}
@media (max-width: 720px){
    .stats { grid-template-columns: 1fr 1fr; }
    .stats .it { border-bottom: 1px solid rgba(255,255,255,.08); }
    .stats .it:nth-child(even){ border-right: none; }
    .stats .it:nth-last-child(-n+2){ border-bottom: none; }
}

/* ====== Features 6-grid ====== */
.feat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feat {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 26px;
    transition: border-color .2s, box-shadow .2s;
    position: relative;
}
.feat::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 4px 0 0 0;
}
.feat:hover { border-color: var(--ink); box-shadow: 0 18px 40px -22px rgba(11,31,58,.18); }
.feat .icn {
    width: 40px; height: 40px;
    background: var(--ink);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}
.feat h3 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--ink);
}
.feat p { color: var(--muted); font-size: 14px; line-height: 1.8; }
@media (max-width: 880px){ .feat-row { grid-template-columns: 1fr; } }

/* ====== CTA banner ====== */
.cta-banner {
    background: var(--red);
    color: #fff;
    border-radius: 16px;
    padding: 50px 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.cta-banner::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}
.cta-banner h2 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    position: relative;
}
.cta-banner h2 em { color: var(--gold); font-style: normal; }
.cta-banner p { margin-top: 10px; color: rgba(255,255,255,.85); position: relative; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; justify-content: flex-end; }
@media (max-width: 880px){ .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; } .cta-banner .actions { justify-content: flex-start; } }

/* ====== Page head (inner pages) ====== */
.page-head {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.page-head::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 320px;
    height: 320px;
    background: var(--red);
    opacity: .12;
    border-radius: 50%;
}
.page-head .kicker { color: var(--gold); font-family: "JetBrains Mono", monospace; font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; }
.page-head h1 {
    margin-top: 14px;
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -.005em;
    max-width: 880px;
}
.page-head h1 em { color: var(--red); font-style: normal; }
.page-head p {
    margin-top: 16px;
    color: rgba(255,255,255,.78);
    max-width: 720px;
    font-size: 15.5px;
    line-height: 1.85;
}
.crumb {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.crumb a { color: var(--red); font-weight: 700; }

/* ====== Filter row ====== */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 22px 0 30px;
}
.filters a {
    padding: 8px 16px;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    font-size: 13px;
    color: var(--slate);
    font-weight: 600;
    transition: all .2s;
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.filters a:hover, .filters a.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.filters a.on { background: var(--red); border-color: var(--red); }

/* ====== Sidebar list page (data table) ====== */
.data-table {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}
.data-table table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}
.data-table th {
    background: var(--ink);
    color: #fff;
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .12em;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--snow); }
.data-table td .rank {
    display: inline-block;
    background: var(--red);
    color: #fff;
    width: 26px; height: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 700;
    font-size: 12px;
}

/* ====== Article body (long copy) ====== */
.copy-wrap { display: grid; grid-template-columns: 2.5fr 1fr; gap: 50px; padding: 50px 0 70px; }
@media (max-width: 980px){ .copy-wrap { grid-template-columns: 1fr; } }
.copy h2 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    margin: 28px 0 14px;
    color: var(--ink);
    padding-left: 14px;
    border-left: 6px solid var(--red);
    line-height: 1.2;
}
.copy h2 em { color: var(--red); font-style: normal; }
.copy h3 { font-size: 17px; font-weight: 700; margin: 20px 0 10px; color: var(--ink-2); }
.copy p { font-size: 15.5px; line-height: 1.95; margin-bottom: 14px; color: #1d2735; }
.copy ul, .copy ol { margin: 6px 0 18px 22px; }
.copy li { margin-bottom: 8px; line-height: 1.85; font-size: 15px; }
.copy blockquote {
    border-left: 4px solid var(--red);
    background: var(--red-soft);
    padding: 14px 20px;
    margin: 18px 0;
    color: var(--ink);
    font-size: 15px;
    border-radius: 0 8px 8px 0;
}
.copy table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.copy table th, .copy table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    text-align: left;
}
.copy table th { background: var(--ink); color: #fff; font-family: "Oswald", "Impact", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.copy table tr:last-child td { border-bottom: none; }
.aside { position: sticky; top: 80px; align-self: start; }
.aside-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 22px;
    margin-bottom: 18px;
}
.aside-card h4 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink);
    font-size: 14px;
    letter-spacing: .12em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}
.aside-card ul { list-style: none; }
.aside-card ul li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.aside-card ul li:last-child { border-bottom: none; }
.aside-card ul li a { display: flex; gap: 8px; align-items: flex-start; color: var(--ink); }
.aside-card ul li a:hover { color: var(--red); }
.aside-card ul li i {
    font-family: "Oswald", "Impact", sans-serif;
    color: var(--red);
    font-style: normal;
    font-weight: 700;
    min-width: 22px;
}

.tag-row { margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row a {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    color: var(--slate);
    letter-spacing: .12em;
}
.tag-row a:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* ====== Contact ====== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; padding: 60px 0 70px; }
.cform, .cinfo {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 32px;
}
.cform h3, .cinfo h3 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink);
    font-size: 22px;
    margin-bottom: 18px;
}
.fld { margin-bottom: 14px; }
.fld label {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 5px;
}
.fld input, .fld select, .fld textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    background: var(--snow);
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
    outline: 3px solid rgba(220,36,51,.18);
    border-color: var(--red);
    background: #fff;
}
.cinfo .row { padding: 16px 0; border-bottom: 1px dashed var(--line); }
.cinfo .row:last-child { border-bottom: none; }
.cinfo .row small { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--red); letter-spacing: .2em; text-transform: uppercase; }
.cinfo .row strong { display: block; margin-top: 4px; font-family: "Oswald", "Impact", "PingFang SC", sans-serif; font-size: 18px; color: var(--ink); }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }

/* ====== Footer ====== */
footer.bot {
    background: var(--ink);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
    position: relative;
}
footer.bot::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 30%, var(--gold) 30%, var(--gold) 60%, transparent 60%);
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-grid .col h4 {
    font-family: "Oswald", "Impact", "PingFang SC", sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .22em;
    margin-bottom: 14px;
}
.foot-grid .col ul { list-style: none; }
.foot-grid .col ul li { padding: 5px 0; font-size: 14px; }
.foot-grid .col ul li a:hover { color: var(--gold); }
.foot-grid .col p { font-size: 14px; line-height: 1.8; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot-brand .mark { width: 40px; height: 40px; font-size: 16px; }
.foot-brand strong { color: #fff; font-family: "Oswald", "Impact", sans-serif; font-size: 18px; }
.foot-brand small { color: var(--gold); font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .26em; display: block; margin-top: 2px; }
.foot-bot {
    text-align: center;
    padding: 24px 0 26px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: rgba(255,255,255,.5);
    letter-spacing: .18em;
}
@media (max-width: 880px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .foot-grid { grid-template-columns: 1fr; } }
