/* roulang page: index */
:root {
    --bg: #0B0E0D;
    --panel: #131716;
    --card: #1A201E;
    --text: #F1F7F2;
    --muted: #B3C1B8;
    --dim: #7F9189;
    --lime: #C8F542;
    --lime-bright: #DDFF71;
    --amber: #F2A86E;
    --ok: #A9D65C;
    --error: #F27C7C;
    --line: rgba(255, 255, 255, .08);
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 20px 50px rgba(0, 0, 0, .55);
    --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    --mono: "Inter", "Bahnschrift", "Roboto", sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.nav-open {
    overflow: hidden;
}
img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}
input {
    font-family: inherit;
}
.container {
    width: min(1280px, 92vw);
    margin: 0 auto;
}
section[id],
footer[id],
div[id] {
    scroll-margin-top: 118px;
}
::selection {
    background: var(--lime);
    color: #0B0E0D;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(11, 14, 13, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
}
.top-row {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.header-top {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 9px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand-mark {
    width: 30px;
    height: 31px;
    background: var(--lime);
    color: #0B0E0D;
    font-weight: 900;
    font-size: 17px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    box-shadow: 0 0 18px rgba(200, 245, 66, .2);
}
.brand-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
}
.brand-text strong {
    color: var(--lime);
    font-weight: 800;
}
.ticker-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ticker-label {
    flex-shrink: 0;
    font-size: 12px;
    padding: 3px 11px;
    border-radius: 999px;
    border: 1px solid rgba(200, 245, 66, .35);
    color: var(--lime);
    letter-spacing: .06em;
}
.ticker-track {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.ticker-inner {
    display: inline-block;
    color: var(--dim);
    font-size: 13px;
    letter-spacing: .01em;
    animation: tickerMove 26s linear infinite;
}
@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.icon-button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.icon-button:hover {
    border-color: rgba(200, 245, 66, .4);
    color: var(--lime);
    transform: translateY(-1px);
}
.icon-button svg {
    width: 18px;
    height: 18px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 13px 24px;
    border: 1px solid transparent;
    text-align: center;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s cubic-bezier(.2, .8, .2, 1), box-shadow .18s ease;
}
.btn-sm {
    padding: 10px 17px;
    font-size: 13px;
}
.btn-primary {
    background: var(--lime);
    color: #0B0E0D;
}
.btn-primary:hover {
    background: var(--lime-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 245, 66, .18);
}
.btn-outline {
    border-color: rgba(255, 255, 255, .26);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
}
.btn:focus-visible,
.icon-button:focus-visible,
.menu-toggle:focus-visible,
.faq-q:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
}
.nav-area {
    background: rgba(10, 13, 12, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 54px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    color: var(--muted);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: color .2s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 10px;
    height: 2px;
    border-radius: 2px;
    background: var(--lime);
    transition: right .2s ease;
}
.nav-link:hover {
    color: var(--text);
}
.nav-link:hover::after {
    right: 0;
}
.nav-link.is-active {
    color: var(--text);
}
.nav-link.is-active::after {
    right: 0;
}
.hot-words {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-words::before {
    content: "热门搜索";
    flex-shrink: 0;
    color: var(--dim);
    font-size: 12px;
    letter-spacing: .06em;
}
.hot-words a {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--muted);
    padding: 4px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.hot-words a:hover {
    color: var(--lime);
    border-color: rgba(200, 245, 66, .32);
    background: rgba(200, 245, 66, .05);
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .02);
}
.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.mobile-close {
    display: none;
}
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(5, 7, 6, .8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 12vh 20px 40px;
}
.search-overlay.open {
    display: flex;
}
.search-box {
    width: min(680px, 92vw);
    background: #161c1a;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
}
.search-box .search-label {
    font-size: 13px;
    color: var(--dim);
    letter-spacing: .08em;
    margin-bottom: 12px;
    display: block;
}
.search-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-input-row input {
    flex: 1;
    min-width: 0;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #0b0f0d;
    color: var(--text);
    padding: 0 18px;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.search-input-row input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(200, 245, 66, .12);
}
.search-input-row button {
    height: 46px;
    border-radius: 999px;
    background: var(--lime);
    color: #0B0E0D;
    padding: 0 22px;
    font-weight: 700;
    transition: background .18s ease, transform .18s ease;
}
.search-input-row button:hover {
    background: var(--lime-bright);
    transform: translateY(-1px);
}
.search-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 18px;
    border: 1px solid var(--line);
    transition: border-color .2s ease, color .2s ease;
}
.search-close:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, .24);
}
.search-hint {
    margin-top: 12px;
    color: var(--dim);
    font-size: 13px;
}
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(96deg, rgba(11, 14, 13, .98) 0%, rgba(11, 14, 13, .72) 46%, rgba(11, 14, 13, .48) 100%), url('/assets/images/backpic/back-1.png') center / cover;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(11, 14, 13, 0), var(--bg));
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 48px;
    align-items: center;
    padding: 70px 0 82px;
}
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    letter-spacing: .14em;
    color: var(--dim);
    margin-bottom: 16px;
}
.kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(200, 245, 66, .1);
}
.hero h1 {
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 22px;
}
.hero h1 .accent {
    color: var(--lime);
}
.hero-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--dim);
    font-size: 13px;
}
.hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.dot-lime {
    background: var(--lime);
}
.dot-amber {
    background: var(--amber);
}
.dot-gray {
    background: #7F9189;
}
.live-card {
    width: 100%;
    background: rgba(8, 11, 10, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, .5);
}
.countdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 14px;
    margin-bottom: 18px;
}
.countdown-title {
    color: var(--dim);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.status-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.status-label i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(200, 245, 66, .15);
}
.status-label.is-live i {
    background: var(--error);
    box-shadow: 0 0 0 4px rgba(242, 124, 124, .18);
    animation: pulseDot 1.6s ease infinite;
}
.status-label.is-ended i {
    background: var(--dim);
    box-shadow: 0 0 0 4px rgba(127, 145, 137, .14);
}
@keyframes pulseDot {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
        opacity: .7;
    }
}
.countdown-clock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 0;
}
.count-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 13px 6px;
    background: #0a0e0c;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
}
.count-num b {
    font-family: var(--mono);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: var(--lime);
    letter-spacing: .02em;
    font-variant-numeric: tabular-nums;
}
.count-num span {
    font-size: 12px;
    color: var(--dim);
    margin-top: 7px;
    letter-spacing: .12em;
}
.count-sep {
    font-family: var(--mono);
    font-size: 26px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    padding-top: 12px;
}
.countdown-note {
    text-align: center;
    color: var(--dim);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 15px;
    margin-top: 4px;
}
.metric-band {
    background: #111816;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.metric-inner {
    display: flex;
    flex-wrap: wrap;
}
.metric-cell {
    flex: 1 1 200px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.metric-cell:last-child {
    border-right: 0;
}
.metric-cell .meta-key {
    font-size: 12px;
    color: var(--dim);
    letter-spacing: .08em;
}
.metric-cell .meta-val {
    font-size: 28px;
    font-weight: 850;
    color: var(--lime);
    letter-spacing: -.01em;
    line-height: 1.2;
}
.metric-cell .meta-tip {
    font-size: 13px;
    color: var(--muted);
}
.section {
    padding: 72px 0;
}
.section-tight {
    padding-top: 24px;
}
.head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.head-meta {
    display: block;
    font-size: 13px;
    color: var(--dim);
    letter-spacing: .12em;
    margin-bottom: 8px;
}
.head-row h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 850;
    letter-spacing: -.01em;
    line-height: 1.2;
}
.head-row p {
    color: var(--muted);
    max-width: 720px;
    margin-top: 8px;
    font-size: 16px;
}
.head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.link-arrow:hover {
    color: var(--lime);
    border-bottom-color: rgba(200, 245, 66, .4);
}
.point-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.point-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 16px 15px 15px;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.point-card:hover {
    border-color: rgba(200, 245, 66, .24);
    background: rgba(200, 245, 66, .035);
    transform: translateY(-2px);
}
.point-img {
    width: 112px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    align-self: center;
}
.point-img img {
    width: 100%;
    height: 100%;
}
.point-content {
    min-width: 0;
}
.point-tagline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
}
.chip {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
}
.chip-lime,
.tag-lime {
    color: var(--lime);
    background: rgba(200, 245, 66, .1);
    border-color: rgba(200, 245, 66, .24);
}
.chip-amber {
    color: var(--amber);
    background: rgba(242, 168, 110, .08);
    border-color: rgba(242, 168, 110, .26);
}
.chip-muted {
    color: var(--muted);
    background: rgba(255, 255, 255, .06);
    border-color: var(--line);
}
.point-number {
    position: absolute;
    right: 12px;
    top: -1px;
    font-family: var(--mono);
    font-weight: 900;
    font-size: 48px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .1);
    pointer-events: none;
}
.point-card h3 {
    font-size: 17px;
    font-weight: 750;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 5px;
    padding-right: 38px;
}
.point-card p {
    color: var(--dim);
    font-size: 13px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.subscribe-section {
    padding: 0 0 72px;
}
.subscribe-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(112deg, rgba(9, 12, 11, .95), rgba(16, 22, 19, .86)), url('/assets/images/backpic/back-2.webp') center / cover;
}
.subscribe-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center;
}
.subscribe-copy h2 {
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 850;
    margin-bottom: 12px;
}
.subscribe-copy p {
    color: var(--muted);
    font-size: 15px;
}
.subscribe-form-wrap {
    background: rgba(9, 12, 11, .76);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 20px;
}
.sub-form {
    display: grid;
    grid-template-columns: 1fr .9fr auto;
    gap: 10px;
}
.field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.field input {
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(11, 15, 13, .8);
    color: var(--text);
    padding: 0 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder {
    color: #66756d;
}
.field input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(200, 245, 66, .12);
}
.field input.input-error {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(242, 124, 124, .12);
}
.sub-form .btn {
    height: 46px;
    border-radius: 999px;
    padding: 0 20px;
}
.sub-response {
    grid-column: 1 / -1;
    font-size: 13px;
    line-height: 1.6;
    min-height: 18px;
    color: var(--dim);
}
.sub-response.is-success {
    color: var(--ok);
}
.sub-response.is-error {
    color: var(--error);
}
.sub-agree {
    margin-top: 10px;
    color: var(--dim);
    font-size: 12px;
}
.replay-section {
    background: #0d100f;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.replay-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 1fr;
    gap: 16px;
}
.replay-card {
    position: relative;
    min-height: 218px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
    display: flex;
    align-items: flex-end;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.replay-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: var(--shadow);
}
.replay-card--feature {
    grid-row: span 2;
    min-height: 260px;
}
.replay-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.replay-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.55) contrast(1.05);
    opacity: .68;
    transition: filter .3s ease, opacity .3s ease, transform .4s ease;
}
.replay-card:hover .replay-media img {
    filter: grayscale(.3) contrast(1.05);
    opacity: .82;
    transform: scale(1.02);
}
.replay-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 9, .08), rgba(7, 10, 9, .9));
    pointer-events: none;
}
.play-mark {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(8, 11, 10, .8);
    border: 1px solid rgba(255, 255, 255, .24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    backdrop-filter: blur(6px);
}
.play-mark svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-left: 2px;
}
.replay-label {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    background: rgba(8, 11, 10, .72);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
}
.replay-info {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 18px;
}
.replay-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}
.replay-card:not(.replay-card--feature) .replay-info h3 {
    font-size: 16px;
}
.replay-info p {
    color: var(--muted);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.guide-section {
    background: #0d110f;
}
.guide-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}
.guide-copy h2 {
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 850;
    margin-bottom: 14px;
    line-height: 1.25;
}
.guide-copy > p {
    color: var(--muted);
    margin-bottom: 20px;
}
.guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}
.guide-list li {
    display: flex;
    gap: 14px;
    color: var(--muted);
    align-items: flex-start;
}
.guide-num {
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: rgba(200, 245, 66, .1);
    border: 1px solid rgba(200, 245, 66, .24);
    color: var(--lime);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
.guide-list strong {
    color: var(--text);
    font-weight: 700;
    display: block;
}
.guide-art {
    position: relative;
    min-height: 310px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
}
.guide-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.guide-stat {
    position: absolute;
    left: 14px;
    bottom: 14px;
    right: 14px;
    background: rgba(8, 11, 10, .82);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
}
.guide-stat b {
    font-size: 18px;
    color: var(--lime);
    font-weight: 800;
    display: block;
}
.guide-stat p {
    color: var(--muted);
    font-size: 13px;
}
.news-section {
    background: var(--bg);
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.news-row {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, .022);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.news-row:hover {
    border-color: rgba(200, 245, 66, .28);
    background: rgba(200, 245, 66, .035);
    transform: translateY(-2px);
}
.news-cover {
    position: relative;
    width: 100%;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
}
.news-cover img {
    width: 100%;
    height: 100%;
}
.news-content {
    min-width: 0;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 7px;
}
.news-meta .cat {
    color: var(--lime);
    background: rgba(200, 245, 66, .08);
    border: 1px solid rgba(200, 245, 66, .2);
    border-radius: 999px;
    font-size: 12px;
    padding: 2px 10px;
    font-weight: 600;
}
.news-meta time {
    color: var(--dim);
    font-size: 12px;
    font-family: var(--mono);
}
.news-content h3 {
    font-size: 17px;
    font-weight: 750;
    line-height: 1.45;
}
.news-content h3 a {
    transition: color .18s ease;
}
.news-content h3 a:hover {
    color: var(--lime);
}
.news-content p {
    color: var(--dim);
    font-size: 13px;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-arrow {
    color: var(--dim);
    font-size: 14px;
    padding-right: 14px;
    flex-shrink: 0;
}
.news-arrow span {
    font-size: 22px;
    line-height: 1;
    transition: transform .2s ease, color .2s ease;
    display: inline-block;
}
.news-row:hover .news-arrow {
    color: var(--lime);
}
.news-row:hover .news-arrow span {
    transform: translateX(4px);
}
.news-empty {
    border: 1px dashed rgba(255, 255, 255, .22);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .02);
    text-align: center;
    padding: 50px 24px;
    color: var(--dim);
}
.news-empty b {
    display: block;
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 4px;
}
.faq-section {
    background: linear-gradient(180deg, rgba(13, 17, 15, 0) 0%, rgba(13, 17, 15, .7) 100%);
}
.faq-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 48px;
    align-items: start;
}
.faq-copy h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 850;
    margin-bottom: 14px;
}
.faq-copy p {
    color: var(--muted);
    margin-bottom: 24px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.faq-item.open {
    border-color: rgba(200, 245, 66, .24);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 14px 18px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
}
.faq-q-number {
    color: var(--lime);
    font-family: var(--mono);
    font-size: 13px;
    margin-right: 4px;
    opacity: .85;
}
.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(200, 245, 66, .35);
    border-radius: 50%;
    transition: transform .25s ease, background .25s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--lime);
    transform: translate(-50%, -50%);
    border-radius: 2px;
}
.faq-icon::before {
    width: 10px;
    height: 2px;
}
.faq-icon::after {
    width: 2px;
    height: 10px;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: rgba(200, 245, 66, .14);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-a-inner {
    padding: 0 18px 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, .07);
}
.faq-item.open .faq-a {
    max-height: 360px;
}
.faq-action {
    margin-top: 16px;
}
.cta-section {
    padding: 70px 0 96px;
}
.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    border: 1px solid rgba(200, 245, 66, .2);
    background: linear-gradient(112deg, #1A201E, #0C100E);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(200, 245, 66, .06);
    pointer-events: none;
}
.cta-box h2 {
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 850;
    margin-bottom: 8px;
}
.cta-box p {
    color: var(--muted);
}
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.footer {
    background: #080B0A;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .8fr 1fr;
    gap: 34px;
    padding: 52px 0 40px;
}
.footer-brand {
    max-width: 360px;
}
.footer-brand-text {
    font-size: 25px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
}
.footer-brand-text span {
    color: var(--lime);
}
.footer-brand p {
    color: var(--dim);
    font-size: 14px;
    line-height: 1.8;
}
.footer-title {
    font-size: 15px;
    font-weight: 750;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: .02em;
}
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-list a {
    color: var(--dim);
    font-size: 14px;
    transition: color .18s ease, transform .2s ease;
}
.footer-list a:hover {
    color: var(--lime);
    transform: translateX(2px);
}
.footer-note-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--dim);
    font-size: 13px;
}
.footer-sns {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.footer-sns span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--dim);
    font-size: 12px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 16px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--dim);
    font-size: 12px;
}
.mobile-close {
    display: none;
}
@media (max-width: 1024px) {
    .hero-grid {
        gap: 28px;
    }
    .ticker-wrap {
        display: none;
    }
    .hot-words {
        gap: 6px;
    }
    .hot-words a:nth-child(2),
    .hot-words a:nth-child(3) {
        display: none;
    }
    .replay-grid {
        grid-template-columns: 1fr 1fr;
    }
    .replay-card--feature {
        grid-row: auto;
        grid-column: 1 / -1;
    }
    .guide-grid,
    .subscribe-grid,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 767px) {
    .container {
        width: min(100%, 100vw);
        padding-left: 16px;
        padding-right: 16px;
    }
    .header-top {
        gap: 10px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .brand-text {
        font-size: 17px;
    }
    .brand-mark {
        width: 27px;
        height: 28px;
        font-size: 15px;
    }
    .header-tools .btn {
        display: none;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 84vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: rgba(16, 21, 19, .98);
        backdrop-filter: blur(20px);
        padding: 60px 24px 28px;
        transform: translateX(102%);
        transition: transform .25s ease;
        z-index: 150;
        overflow-y: auto;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .nav-link {
        width: 100%;
        min-height: 46px;
        color: var(--muted);
        padding: 0 8px;
    }
    .nav-link::after {
        bottom: 3px;
    }
    .mobile-close {
        display: flex;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        border: 1px solid var(--line);
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 19px;
    }
    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }
    .hot-words {
        display: none;
    }
    .ticker-wrap {
        display: none;
    }
    .hero {
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 52px 0 64px;
    }
    .hero h1 {
        font-size: clamp(36px, 11vw, 52px);
        line-height: 1.18;
    }
    .hero-lead {
        font-size: 16px;
    }
    .live-card {
        padding: 16px;
    }
    .count-num {
        min-width: 54px;
    }
    .count-num b {
        font-size: 29px;
    }
    .metric-inner {
        flex-direction: column;
    }
    .metric-cell {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        padding: 14px 16px;
    }
    .metric-cell:last-child {
        border-bottom: 0;
    }
    .section {
        padding: 56px 0;
    }
    .head-row h2 {
        font-size: 28px;
    }
    .point-list {
        grid-template-columns: 1fr;
    }
    .point-card {
        grid-template-columns: 92px minmax(0, 1fr);
        padding: 13px;
    }
    .point-img {
        width: 92px;
        height: 78px;
    }
    .subscribe-section {
        padding-bottom: 56px;
    }
    .subscribe-box {
        padding: 20px 16px;
    }
    .sub-form {
        grid-template-columns: 1fr;
    }
    .sub-form .btn {
        width: 100%;
    }
    .sub-response {
        grid-column: 1;
    }
    .replay-section .container {
        padding: 0 16px;
    }
    .replay-grid {
        grid-template-columns: 1fr;
    }
    .replay-card--feature {
        grid-column: auto;
        grid-row: auto;
    }
    .replay-card {
        min-height: 200px;
    }
    .guide-art {
        min-height: 230px;
        order: -1;
    }
    .news-row {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }
    .news-cover {
        height: 78px;
        grid-row: span 2;
    }
    .news-arrow {
        display: none;
    }
    .faq-list {
        margin-top: 4px;
    }
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 0 26px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media (max-width: 480px) {
    .header-tools .icon-button {
        width: 36px;
        height: 36px;
    }
    .brand-text {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 34px;
    }
    .btn {
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .countdown-clock {
        gap: 4px;
    }
    .count-num {
        min-width: 48px;
        padding: 10px 4px;
    }
    .count-num b {
        font-size: 25px;
    }
    .point-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .point-img {
        width: 100%;
        height: 140px;
    }
    .point-content {
        width: 100%;
    }
}

/* roulang page: article */
:root{
    --bg:#0B0E0D;
    --bg-deep:#080B0A;
    --panel:#131716;
    --card:#1A201E;
    --card-hover:#202821;
    --text:#F1F7F2;
    --muted:#B3C1B8;
    --dim:#7F9189;
    --brand:#C8F542;
    --brand-h:#DDFF71;
    --accent:#F2A86E;
    --ok:#A9D65C;
    --danger:#F27C7C;
    --line:rgba(255,255,255,.08);
    --line-strong:rgba(255,255,255,.14);
    --radius-lg:24px;
    --radius:18px;
    --radius-sm:10px;
    --shadow:0 20px 50px rgba(0,0,0,.55);
    --font-main:"PingFang SC","HarmonyOS Sans SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
    --font-num:"Inter","Bahnschrift","Roboto",var(--font-main);
    --max-width:1280px;
    --header-h:118px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--font-main);
    font-size:15px;
    line-height:1.8;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
a{color:inherit;text-decoration:none;transition:color .18s ease,opacity .18s ease,border-color .18s ease,background .18s ease}
img{max-width:100%;display:block}
ul,ol{list-style:none}
button,input{font:inherit;border:none;outline:none;background:none;color:inherit}
button{cursor:pointer}
.container{max-width:var(--max-width);margin-left:auto;margin-right:auto;padding-left:24px;padding-right:24px;width:100%}

/* Header */
.site-header{
    position:relatively;
    top:0;left:0;right:0;z-index:120;
    background:rgba(11,14,13,.86);
    backdrop-filter:blur(14px);
    border-bottom:1px solid transparent;
    transition:box-shadow .2s ease,border-color .2s ease,background .2s ease;
}
.site-header.is-scrolled{
    position:sticky;position:-webkit-sticky;
    border-bottom-color:var(--line);
    box-shadow:0 12px 34px rgba(0,0,0,.42);
}
.top-row{
    border-bottom:1px solid rgba(255,255,255,.04);
}
.header-top{
    display:flex;
    align-items:center;
    gap:24px;
    padding-top:14px;
    padding-bottom:14px;
}
.brand{
    display:inline-flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}
.brand-mark{
    width:44px;height:44px;
    border-radius:14px;
    background:var(--brand);
    color:var(--bg);
    display:grid;
    place-items:center;
    font-family:var(--font-num);
    font-weight:900;
    font-size:22px;
    letter-spacing:-0.5px;
    box-shadow:0 0 0 1px rgba(200,245,66,.14),0 8px 26px rgba(0,0,0,.32);
}
.brand-text{
    font-weight:800;
    font-size:20px;
    letter-spacing:.02em;
    line-height:1.25;
    color:var(--text);
    display:flex;
    flex-direction:column;
}
.brand-text strong{
    color:var(--brand);
    font-weight:900;
    margin-top:-3px;
}
.ticker-wrap{
    flex:1;
    min-width:0;
    display:flex;
    align-items:center;
    gap:12px;
    border:1px solid var(--line);
    background:rgba(0,0,0,.25);
    border-radius:999px;
    padding:6px 16px;
    overflow:hidden;
}
.ticker-label{
    font-size:12px;
    font-weight:700;
    color:var(--bg);
    background:var(--accent);
    border-radius:999px;
    padding:2px 10px;
    white-space:nowrap;
    flex-shrink:0;
    letter-spacing:.04em;
}
.ticker-track{
    display:block;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    color:var(--muted);
    font-size:13px;
    font-weight:400;
}
.header-tools{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}
.icon-button{
    width:42px;height:42px;
    border-radius:50%;
    border:1px solid var(--line);
    display:grid;place-items:center;
    color:var(--muted);
    transition:color .18s,border-color .18s,transform .18s;
}
.icon-button:hover{
    color:var(--brand);
    border-color:rgba(200,245,66,.5);
    transform:translateY(-2px);
}
.icon-button svg{width:19px;height:19px}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:999px;
    padding:12px 22px;
    font-weight:700;
    font-size:14px;
    line-height:1;
    white-space:nowrap;
    transition:background .18s cubic-bezier(.2,.8,.3,1),color .18s,box-shadow .18s,transform .18s,border-color .18s;
}
.btn-sm{padding:10px 18px;font-size:13px}
.btn-primary{
    background:var(--brand);
    color:var(--bg);
}
.btn-primary:hover{
    background:var(--brand-h);
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(200,245,66,.14);
}
.btn-primary:active{transform:translateY(0)}
.btn-outline{
    background:transparent;
    color:var(--text);
    border:1px solid var(--line-strong);
}
.btn-outline:hover{
    border-color:var(--brand);
    color:var(--brand);
    transform:translateY(-2px);
}
.btn:focus-visible{
    outline:2px solid var(--brand);
    outline-offset:3px;
}
.nav-area{
    border-bottom:1px solid var(--line);
    background:rgba(11,14,13,.92);
}
.nav-inner{
    display:flex;
    align-items:center;
    gap:28px;
    padding-top:8px;
    padding-bottom:8px;
}
.main-nav{
    display:flex;
    align-items:center;
    gap:30px;
    flex:1;
    min-width:0;
}
.nav-link{
    display:inline-flex;
    align-items:center;
    padding:12px 2px;
    font-size:14px;
    font-weight:600;
    color:var(--muted);
    position:relative;
    letter-spacing:.02em;
    white-space:nowrap;
}
.nav-link::after{
    content:"";
    position:absolute;
    left:0;right:100%;
    bottom:5px;
    height:2px;
    border-radius:2px;
    background:var(--brand);
    transition:right .2s ease;
}
.nav-link:hover,.nav-link.is-active{color:var(--text)}
.nav-link.is-active::after{right:0}
.nav-link:hover::after{right:0}
.hot-words{
    display:flex;
    gap:8px;
    align-items:center;
}
.hot-words a{
    font-size:12px;
    color:var(--dim);
    border:1px solid var(--line);
    border-radius:999px;
    padding:4px 12px;
    white-space:nowrap;
}
.hot-words a:hover{
    color:var(--brand);
    border-color:rgba(200,245,66,.36);
    background:rgba(200,245,66,.04);
}
.menu-toggle{
    display:none;
    width:44px;height:44px;
    border:1px solid var(--line);
    border-radius:12px;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:5px;
    background:transparent;
}
.menu-toggle span{
    display:block;
    width:18px;height:2px;
    border-radius:2px;
    background:var(--text);
}
.mobile-close{
    display:none;
    width:44px;height:44px;
    border-radius:12px;
    background:var(--card);
    color:var(--text);
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:300;
    transition:color .2s;
}
.mobile-close:hover{color:var(--brand)}

/* Article banner */
.entry-banner{
    position:relative;
    background-image:linear-gradient(90deg,rgba(8,11,10,.96) 0%,rgba(8,11,10,.72) 52%,rgba(8,11,10,.25) 100%),linear-gradient(360deg,rgba(8,11,10,.85) 0%,rgba(8,11,10,0) 65%),url('/assets/images/backpic/back-1.png');
    background-size:cover;
    background-position:center 26%;
    padding:66px 0 58px;
    border-bottom:1px solid var(--line);
}
.entry-banner::before{
    content:"";
    position:absolute;
    left:0;right:0;bottom:0;
    height:120px;
    background:linear-gradient(360deg,var(--bg) 6%,rgba(11,14,13,.6) 48%,transparent);
    pointer-events:none;
    z-index:0;
}
.entry-banner .container{
    position:relative;z-index:2;
}
.crumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:3px;
    font-size:13px;
    color:var(--dim);
    margin-bottom:26px;
}
.crumb a{color:var(--dim);transition:color .2s}
.crumb a:hover{color:var(--brand)}
.crumb-sep{opacity:.6;margin:0 6px}
.crumb-current{color:var(--muted);max-width:280px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}
.entry-meta-row{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:16px;
}
.entry-meta-row span{
    font-size:13px;
    color:var(--muted);
}
.meta-chip{
    display:inline-flex;
    align-items:center;
    background:rgba(200,245,66,.1);
    border:1px solid rgba(200,245,66,.32);
    color:var(--brand);
    font-weight:700;
    font-size:12px;
    border-radius:999px;
    padding:4px 12px;
    letter-spacing:.03em;
}
.entry-banner h1{
    font-size:clamp(30px,4.6vw,50px);
    line-height:1.26;
    font-weight:850;
    max-width:1000px;
    letter-spacing:-0.02em;
    color:var(--text);
    margin-bottom:20px;
}
.entry-banner-desc{
    font-size:16px;
    color:var(--muted);
    max-width:760px;
    line-height:2;
}
.entry-origin{
    margin-top:18px;
    font-size:13px;
    color:var(--dim);
}

/* Article main */
.page-wrap{
    padding:64px 0 88px;
    background:linear-gradient(180deg,var(--bg) 0%,#0D1210 100%);
}
.article-column{
    max-width:780px;
    margin:0 auto;
}
.article-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:34px 0 18px;
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}
.article-top-area{
    padding:0 42px 26px;
}
.article-title{
    font-size:clamp(22px,3vw,28px);
    font-weight:800;
    line-height:1.5;
    color:var(--text);
    letter-spacing:-0.01em;
}
.article-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    border-top:1px solid var(--line);
    padding-top:16px;
    margin-top:24px;
}
.toolbar-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
}
.tag{
    display:inline-block;
    font-size:12px;
    color:var(--dim);
    border:1px solid var(--line);
    background:rgba(255,255,255,.015);
    padding:4px 11px;
    border-radius:999px;
    transition:color .18s,border-color .18s;
}
.tag.is-key{
    color:var(--brand);
    border-color:rgba(200,245,66,.3);
    background:rgba(200,245,66,.04);
}
.article-datetime{
    font-size:13px;
    color:var(--dim);
    font-family:var(--font-num);
}
.article-content{
    padding:16px 42px 28px;
    color:var(--muted);
    font-size:16px;
    line-height:2.05;
    word-wrap:break-word;
    overflow-wrap:break-word;
}
.article-content > * + *{
    margin-top:1.05em;
}
.article-content h2{
    font-size:26px;
    line-height:1.6;
    color:var(--text);
    font-weight:800;
    padding-top:22px;
    margin-top:34px;
    border-top:1px solid rgba(255,255,255,.05);
}
.article-content h3{
    font-size:21px;
    color:var(--text);
    font-weight:750;
    margin-top:28px;
    margin-bottom:14px;
    line-height:1.6;
}
.article-content h4{
    font-size:18px;
    color:var(--text);
    font-weight:700;
    margin-top:22px;
    margin-bottom:10px;
}
.article-content p{
    margin-bottom:1em;
}
.article-content a{
    color:var(--brand);
    border-bottom:1px solid rgba(200,245,66,.3);
}
.article-content a:hover{color:var(--brand-h);border-bottom-color:var(--brand-h)}
.article-content ul,.article-content ol{
    margin-top:8px;
    margin-bottom:18px;
    padding-left:4px;
}
.article-content ul > li{
    position:relative;
    padding-left:26px;
    margin-bottom:10px;
    line-height:1.9;
}
.article-content ul > li::before{
    content:"";
    position:absolute;
    left:2px;top:.94em;
    width:9px;height:9px;
    border-radius:3px;
    background:var(--brand);
    opacity:.82;
}
.article-content ol{
    counter-reset:lst;
}
.article-content ol > li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
    counter-increment:lst;
}
.article-content ol > li::before{
    content:counter(lst,decimal-leading-zero);
    position:absolute;
    left:0;top:.1em;
    font-family:var(--font-num);
    font-size:14px;
    font-weight:800;
    color:var(--brand);
}
.article-content blockquote{
    border-left:3px solid var(--brand);
    background:rgba(200,245,66,.04);
    padding:14px 22px;
    margin:28px 0;
    border-radius:0 var(--radius) var(--radius) 0;
    color:var(--text);
}
.article-content blockquote cite{
    display:block;
    font-style:normal;
    font-size:13px;
    color:var(--dim);
    margin-top:8px;
}
.article-content img{
    border-radius:var(--radius);
    object-fit:cover;
    background:var(--panel);
    margin-top:28px;
    margin-bottom:22px;
}
.article-content table{
    width:100%;
    border-collapse:collapse;
    margin:28px 0;
    font-size:14px;
    background:rgba(255,255,255,.015);
    border-radius:12px;
    overflow:hidden;
    display:block;
    overflow-x:auto;
}
.article-content th,.article-content td{
    border:1px solid var(--line);
    padding:12px 16px;
    text-align:left;
    white-space:nowrap;
}
.article-content th{
    background:var(--panel);
    color:var(--text);
    font-weight:700;
}
.article-content strong{color:var(--text);font-weight:750}
.article-content hr{
    border:none;
    height:1px;
    background:var(--line);
    margin:30px 0;
}
.article-footer-nav{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:0 42px 26px;
    border-top:1px solid var(--line);
    margin-top:18px;
    padding-top:24px;
}
.nav-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:600;
    color:var(--muted);
    border:1px solid var(--line);
    background:rgba(255,255,255,.02);
    border-radius:999px;
    padding:10px 18px;
    transition:color .18s,border-color .18s,transform .18s;
}
.nav-pill:hover{
    color:var(--brand);
    border-color:rgba(200,245,66,.36);
    transform:translateY(-2px);
}
.article-empty{
    padding:84px 40px;
    text-align:center;
}
.empty-mark{
    width:70px;height:70px;
    border-radius:50%;
    margin:0 auto 22px;
    display:grid;place-items:center;
    background:rgba(242,168,110,.1);
    border:1px solid rgba(242,168,110,.26);
    font-size:30px;
    color:var(--accent);
}
.article-empty h2{
    font-size:24px;
    color:var(--text);
    margin-bottom:12px;
    font-weight:800;
}
.article-empty p{
    color:var(--dim);
    margin-bottom:28px;
}

/* Relevant columns */
.section-pad{
    padding:76px 0 108px;
    background:var(--bg-deep);
}
.section-head{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin-bottom:36px;
}
.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:700;
    color:var(--brand);
    text-transform:uppercase;
    letter-spacing:.14em;
}
.eyebrow::before{
    content:"";
    width:28px;height:1px;
    background:var(--brand);
}
.section-head h2{
    font-size:clamp(26px,3.4vw,34px);
    line-height:1.4;
    font-weight:850;
    letter-spacing:-0.01em;
}
.section-head p.desc{
    color:var(--dim);
    font-size:15px;
    max-width:620px;
}
.related-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}
.related-card{
    display:flex;
    align-items:stretch;
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    transition:transform .2s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.related-card:hover{
    transform:translateY(-4px);
    border-color:rgba(200,245,66,.3);
    background:var(--card-hover);
    box-shadow:var(--shadow);
}
.related-thumb{
    width:140px;flex-shrink:0;
    position:relative;
    background:var(--panel);
    overflow:hidden;
}
.related-thumb img{
    width:100%;height:100%;object-fit:cover;
    position:absolute;left:0;top:0;
    transition:transform .26s ease;
}
.related-card:hover .related-thumb img{
    transform:scale(1.04);
}
.related-thumb::after{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(120deg,transparent 18%,rgba(8,11,10,.18) 100%);
}
.related-ray{
    position:absolute;left:10px;top:10px;z-index:2;
    font-size:11px;font-weight:700;
    color:var(--bg);
    background:var(--brand);
    padding:3px 9px;
    border-radius:999px;
    letter-spacing:.03em;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
}
.related-info{
    padding:18px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap:6px;
}
.related-type{
    font-size:12px;
    color:var(--brand);
    font-weight:700;
    letter-spacing:.04em;
}
.related-info strong{
    color:var(--text);
    font-size:17px;
    line-height:1.6;
    font-weight:750;
}
.related-more{
    color:var(--dim);
    font-size:13px;
    line-height:1.7;
}
.related-enter{
    margin-top:8px;
    font-size:12px;
    color:var(--muted);
    display:inline-flex;
    align-items:center;
    gap:6px;
}
.related-card:hover .related-enter{
    color:var(--brand);
}

/* CTA strip */
.cta-strip{
    border-top:1px solid var(--line);
    background:linear-gradient(180deg,var(--bg-deep) 0%,#101514 100%);
}
.cta-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:36px;
    padding:56px 0 72px;
    flex-wrap:wrap;
}
.cta-text h2{
    font-size:clamp(26px,3.2vw,38px);
    line-height:1.4;
    font-weight:850;
}
.cta-text p{
    margin-top:10px;
    color:var(--dim);
    max-width:560px;
}
.cta-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

/* Footer */
.footer{
    background:#080B0A;
    border-top:1px solid var(--line);
    margin-top:0;
}
.footer .container{
    padding-top:66px;
    padding-bottom:26px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:42px;
    padding-bottom:46px;
}
.footer-brand-text{
    font-size:26px;
    font-weight:850;
    color:var(--text);
    letter-spacing:.01em;
    margin-bottom:14px;
}
.footer-brand-text span{
    color:var(--brand);
}
.footer-brand p + p{
    color:var(--dim);
    font-size:14px;
    line-height:2;
    max-width:360px;
}
.footer-sns{
    display:flex;
    gap:8px;
    margin-top:22px;
    flex-wrap:wrap;
}
.footer-sns span{
    display:inline-block;
    border:1px solid var(--line);
    border-radius:999px;
    color:var(--muted);
    padding:6px 14px;
    font-size:12px;
    transition:color .18s,border-color .18s;
    background:rgba(255,255,255,.015);
}
.footer-sns span:hover{
    color:var(--brand);
    border-color:rgba(200,245,66,.34);
}
.footer-title{
    color:var(--text);
    font-weight:750;
    font-size:15px;
    margin-bottom:20px;
    padding-bottom:10px;
    position:relative;
}
.footer-title::after{
    content:"";
    position:absolute;
    left:0;bottom:0;
    width:24px;height:2px;
    background:var(--brand);
    border-radius:2px;
}
.footer-list{
    display:flex;
    flex-direction:column;
    gap:5px;
}
.footer-list a{
    color:var(--dim);
    padding:5px 0;
    font-size:13px;
    transition:color .18s,transform .15s;
}
.footer-list a:hover{
    color:var(--brand);
    transform:translateX(4px);
}
.footer-note-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.footer-note-list span{
    color:var(--dim);
    font-size:13px;
    line-height:1.7;
}
.footer-bottom{
    border-top:1px solid var(--line);
    padding-top:18px;
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    color:var(--dim);
    font-size:12px;
}

/* Focus visible */
a:focus-visible,button:focus-visible{
    outline:2px solid var(--brand);
    outline-offset:3px;
    border-radius:4px;
}

/* Media queries */
@media (max-width:1024px){
    .ticker-wrap{display:none}
    .main-nav{gap:20px}
    .nav-inner{gap:20px}
    .hot-words a:last-child{display:none}
    .video-grid{grid-template-columns:repeat(2,1fr)}
    .related-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
    .container{padding-left:18px;padding-right:18px}
    .top-row .header-top{padding-top:10px;padding-bottom:10px}
    .brand-text{font-size:16px}
    .brand-mark{width:38px;height:38px;border-radius:12px}
    .header-tools .btn-sm span{display:none}
    .header-tools .btn-sm{padding:0;width:42px;height:42px;border-radius:12px;font-size:13px}
    .button-label{display:none}
    .nav-area{
        border-bottom:none;
        background:transparent;
    }
    .nav-inner{
        justify-content:flex-end;
        padding:0;
    }
    .main-nav{
        position:fixed;
        top:0;right:0;bottom:0;
        width:min(84vw,420px);
        background:#0D1210;
        backdrop-filter:blur(18px);
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
        padding:108px 34px 36px;
        box-shadow:-30px 0 70px rgba(0,0,0,.4);
        transform:translateX(105%);
        z-index:300;
        transition:transform .28s cubic-bezier(.2,.8,.3,1);
        border-left:1px solid var(--line);
        overflow-y:auto;
    }
    .main-nav.is-open{
        transform:none;
    }
    .main-nav .nav-link{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.06);
        padding:12px 0;
        font-size:16px;
    }
    .mobile-close{
        position:absolute;
        top:20px;right:20px;
        display:inline-flex;
    }
    .menu-toggle{display:flex}
    .hot-words{display:none}
    .entry-banner{padding:50px 0 48px}
    .crumb{font-size:12px}
    .article-card{border-radius:var(--radius)}
    .article-top-area,.article-content,.article-footer-nav{padding-left:26px;padding-right:26px}
    .article-content{font-size:16px}
    .related-grid{grid-template-columns:1fr}
    .related-card{flex-direction:row}
    .footer-grid{grid-template-columns:1fr 1fr}
    .cta-inner{flex-direction:column;align-items:flex-start;padding:44px 0 56px}
    .cta-actions{width:100%}
    .cta-actions .btn{flex:1;justify-content:center}
}
@media (max-width:560px){
    .container{padding-left:16px;padding-right:16px}
    .header-top{flex-wrap:nowrap}
    .ticker-wrap{display:none}
    .brand-text strong{font-size:.92em}
    .entry-banner h1{font-size:31px}
    .entry-banner-desc{font-size:14px}
    .article-content{padding-left:22px;padding-right:22px;font-size:15px}
    .article-top-area{padding-left:22px;padding-right:22px}
    .article-footer-nav{padding-left:22px;padding-right:22px}
    .related-grid{grid-template-columns:1fr}
    .related-card{flex-direction:column}
    .related-thumb{width:100%;height:150px;position:relative}
    .related-thumb img{position:absolute;left:0;top:0}
    .related-info{padding:18px}
    .footer-grid{grid-template-columns:1fr;gap:34px}
    .article-card{border-radius:18px}
    .article-toolbar{flex-direction:column;align-items:flex-start}
    .toolbar-tags{gap:6px}
    .tag{font-size:11px}
}
@media (prefers-reduced-motion:reduce){
    *{transition:none!important;animation:none!important;scroll-behavior:auto!important}
    .related-card,.nav-link{transform:none!important}
}

/* roulang page: category1 */
:root {
  --bg: #0B0E0D;
  --bg-2: #131716;
  --bg-3: #1A201E;
  --text: #F1F7F2;
  --text-2: #B3C1B8;
  --text-3: #7F9189;
  --accent: #C8F542;
  --accent-hover: #DDFF71;
  --warm: #F2A86E;
  --success: #A9D65C;
  --danger: #F27C7C;
  --border: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-sans: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
  --font-num: "Inter", "Bahnschrift", "Roboto", "PingFang SC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol, dl, dd, p, figure { margin: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }

::selection { background: rgba(200, 245, 66, 0.28); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a332f; border-radius: 999px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3b4a43; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== 按钮体系 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 46px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: all 150ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 245, 66, 0.16);
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn-large { height: 54px; padding: 0 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ========== 顶部导航 ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 13, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}
.site-header.is-scrolled .nav-inner { min-height: 54px; }
.site-header.is-scrolled .brand-text,
.site-header.is-scrolled .hot-words { transition: opacity 150ms; }

.top-row { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.header-top {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 58px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-num);
}
.brand-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-text strong { color: var(--accent); font-weight: 800; }

.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 4px;
}
.ticker-label {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(200, 245, 66, 0.3);
  background: rgba(200, 245, 66, 0.06);
}
.ticker-track {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text-3);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.ticker-inner {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  border: 1px solid transparent;
  transition: all 150ms;
}
.icon-button svg { width: 19px; height: 19px; }
.icon-button:hover {
  color: var(--accent);
  border-color: rgba(200, 245, 66, 0.3);
  background: rgba(200, 245, 66, 0.06);
}

.nav-area { border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: box-shadow 200ms; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  transition: min-height 200ms;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  transition: all 150ms;
}
.main-nav .nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.main-nav .nav-link.is-active {
  color: var(--accent);
  background: rgba(200, 245, 66, 0.08);
  box-shadow: inset 0 0 0 1px rgba(200, 245, 66, 0.22);
}
.hot-words {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hot-words a {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  transition: all 150ms;
}
.hot-words a:hover {
  color: var(--accent);
  border-color: rgba(200, 245, 66, 0.3);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  gap: 5px;
  border: 1px solid var(--border);
  transition: all 150ms;
}
.menu-toggle:hover { border-color: rgba(200, 245, 66, 0.4); }
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: all 150ms;
}
.mobile-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  line-height: 1;
  font-size: 30px;
  color: var(--text);
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  z-index: 12;
}
.mobile-close:hover { color: var(--accent); }

/* ========== 全屏搜索 ========== */
.search-pop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 10, 9, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.search-pop.is-open { display: flex; }
.search-pop-panel {
  width: 100%;
  max-width: 760px;
  position: relative;
}
.search-pop-form {
  display: flex;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px;
  align-items: center;
}
.search-pop-form:focus-within {
  border-color: rgba(200, 245, 66, 0.5);
  box-shadow: 0 0 0 4px rgba(200, 245, 66, 0.08);
}
.search-pop-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-size: 16px;
  padding: 8px 18px;
  font-family: var(--font-sans);
}
.search-pop-form input::placeholder { color: var(--text-3); }
.search-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
.search-close:hover { color: var(--accent); border-color: rgba(200, 245, 66, 0.3); }
.search-hint {
  margin-top: 18px;
  text-align: center;
  color: var(--text-3);
  font-size: 13px;
}

/* ========== 分类页 Hero ========== */
.category-hero {
  position: relative;
  isolation: isolate;
  padding: 72px 0 92px;
  background-size: cover;
  background-position: center 20%;
  border-bottom: 1px solid var(--border);
}
.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(11, 14, 13, 0.96) 4%, rgba(11, 14, 13, 0.82) 54%, rgba(11, 14, 13, 0.55) 100%);
}
.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 14, 13, 0.2) 0%, rgba(11, 14, 13, 0) 35%, rgba(11, 14, 13, 0.65) 100%);
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--text-3);
  font-size: 13px;
}
.breadcrumb a { color: var(--text-3); transition: color 150ms; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.7; }

.hero-title {
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 26px;
  max-width: 900px;
}
.hero-title .title-accent { color: var(--accent); }
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 720px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 40px;
  color: var(--text-3);
  font-size: 13px;
}
.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-facts span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(200, 245, 66, 0.7);
}
.hero-facts span:nth-of-type(2)::before { background: var(--warm); box-shadow: none; }
.hero-facts span:nth-of-type(3)::before { background: var(--text-3); box-shadow: none; }
.hero-facts i {
  font-style: normal;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.6;
}

/* ========== 子话题 Tab ========== */
.topics-bar {
  background: rgba(11, 14, 13, 0.96);
  border-bottom: 1px solid var(--border);
}
.topic-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}
.topic-row::-webkit-scrollbar { display: none; }
.topic-tab {
  display: inline-flex;
  align-items: center;
  flex: none;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  transition: all 150ms;
  white-space: nowrap;
}
.topic-tab:hover { color: var(--text); border-color: var(--border); background: var(--bg-2); }
.topic-tab.is-active {
  color: var(--bg);
  background: var(--accent);
  font-weight: 700;
}
.topic-tab.is-active:hover { background: var(--accent-hover); }

/* ========== 分类主体双栏布局 ========== */
.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 52px;
  padding: 72px 0 84px;
}
.content-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 76px;
}
.content-aside {
  min-width: 0;
}

/* ========== 内容块通用 ========== */
.content-block { scroll-margin-top: 70px; }
.block-head { margin-bottom: 32px; }
.block-kicker {
  display: block;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
}
.block-head h2,
.section-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  color: var(--text);
  font-weight: 750;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.lead-text {
  font-size: 16px;
  color: var(--text-2);
  max-width: 760px;
  line-height: 1.9;
}
.content-block h3 {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 8px;
  font-weight: 700;
}
.content-block p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-2);
}
.content-block p + p { margin-top: 10px; }

/* ========== 图文并列 ========== */
.entry-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: stretch;
  gap: 26px;
  margin: 34px 0 26px;
}
.entry-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.entry-media:hover img { transform: scale(1.03); }
.entry-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, rgba(11, 14, 13, 0) 0%, rgba(11, 14, 13, 0.86) 100%);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.entry-text {
  display: flex;
  flex-direction: column;
}
.entry-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.entry-line:last-child { border-bottom: 0; }
.entry-line .list-marker {
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  padding-top: 2px;
}
.tag-live { color: var(--warm); font-weight: 700; }
.tag-wait { color: var(--accent); font-weight: 700; }

/* ========== 提示条 ========== */
.note-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(200, 245, 66, 0.16);
  background: rgba(200, 245, 66, 0.05);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
}
.note-banner::before {
  content: "!";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--bg);
  background: var(--accent);
  font-weight: 900;
  text-align: center;
  line-height: 22px;
  font-family: var(--font-num);
}

/* ========== 时间轴 ========== */
.timeline {
  margin: 32px 0 28px;
  border-left: 1px solid rgba(200, 245, 66, 0.26);
  padding-left: 34px;
}
.timeline-item {
  position: relative;
  padding: 0 0 40px;
}
.timeline-item:last-child { padding-bottom: 4px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -43px;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(200, 245, 66, 0.08);
}
.timeline-item .tl-num {
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-3);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}
.timeline-item h3 { font-size: 20px; }
.timeline-item p { margin-top: 8px; }

/* ========== 双提示卡 ========== */
.note-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}
.note-card {
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 20px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-2);
  position: relative;
}
.note-card::before {
  content: "路径";
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--bg);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border: 1px solid rgba(200, 245, 66, 0.22);
  border-radius: 999px;
}
.note-card:nth-child(2)::before { content: "提醒"; color: var(--warm); border-color: rgba(242, 168, 110, 0.3); }

/* ========== 表格 ========== */
.table-wrap {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow-x: auto;
}
.info-table { min-width: 600px; }
.info-table th {
  padding: 16px 20px;
  text-align: left;
  background: var(--bg-3);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.info-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  vertical-align: top;
}
.info-table tr:last-child td { border-bottom: 0; }
.info-table td strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 6px; }

/* ========== 异常处理 ========== */
.issue-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.issue-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg-2);
  border-radius: 16px;
  padding: 18px 24px;
  transition: all 160ms;
}
.issue-item:hover {
  border-color: rgba(200, 245, 66, 0.26);
  transform: translateX(4px);
}
.issue-code {
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.issue-item h3 { font-size: 17px; margin-bottom: 4px; }
.issue-item p { margin: 0; font-size: 14px; }
.issue-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  border: 1px solid var(--border);
  color: var(--text-3);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.issue-mark::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-3);
}
.issue-mark.ok::before { background: var(--success); }
.issue-mark.warn::before { background: var(--warm); }

/* ========== 副栏 ========== */
.aside-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.aside-card + .aside-card { margin-top: 22px; }
.aside-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aside-title::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.status-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-2);
}
.status-label { display: inline-flex; align-items: center; gap: 10px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(169, 214, 92, 0.1); flex: none; }
.status-dot.warm { background: var(--warm); box-shadow: 0 0 0 3px rgba(242, 168, 110, 0.1); }
.status-dot.gray { background: var(--text-3); box-shadow: none; }
.status-state { color: var(--text-3); font-size: 13px; font-family: var(--font-num); }

.rel-list { display: flex; flex-direction: column; gap: 14px; }
.rel-list a {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 150ms;
  color: var(--text-2);
}
.rel-list a:hover {
  border-color: rgba(200, 245, 66, 0.28);
  color: var(--text);
  transform: translateY(-1px);
}
.rel-thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg);
}
.rel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms;
}
.rel-list a:hover .rel-thumb img { transform: scale(1.04); }
.rel-info { padding: 10px 12px 10px 0; min-width: 0; }
.rel-info strong { display: block; font-size: 14px; line-height: 1.5; overflow: hidden; text-overflow: ellipsis; }
.rel-info em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 4px;
}
.rel-info kbd {
  display: inline-block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--accent);
  border: 1px solid rgba(200, 245, 66, 0.3);
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 6px;
}

.side-note {
  border-left: 3px solid var(--warm);
  padding: 10px 0 10px 16px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.9;
}
.side-note strong { color: var(--text); display: block; }

/* ========== FAQ ========== */
.faq-section {
  padding: 0 0 84px;
  scroll-margin-top: 40px;
}
.section-head {
  margin-bottom: 32px;
}
.section-kicker {
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  margin-bottom: 6px;
}
.faq-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: faq;
}
.faq-item {
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-2);
  transition: all 160ms;
}
.faq-item.is-open {
  border-color: rgba(200, 245, 66, 0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.faq-question::before {
  counter-increment: faq;
  content: counter(faq, decimal-leading-zero);
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  border: 1px solid rgba(200, 245, 66, 0.26);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin-left: auto;
  flex: none;
  color: var(--text-3);
  transition: transform 200ms, color 200ms, border-color 200ms;
  transform: rotate(0deg);
}
.faq-icon::before {
  content: "";
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: block;
}
.faq-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(90deg);
  transition: opacity 150ms;
}
.faq-icon { position: relative; }
.faq-item.is-open .faq-icon { transform: rotate(135deg); color: var(--accent); border-color: rgba(200, 245, 66, 0.3); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner { overflow: hidden; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  padding: 0 20px 20px 66px;
  line-height: 1.9;
  font-size: 15px;
}

/* ========== CTA ========== */
.cta-section {
  padding-bottom: 88px;
}
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(200, 245, 66, 0.18);
  border-radius: 22px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 245, 66, 0.13) 0%, rgba(200, 245, 66, 0) 70%);
  pointer-events: none;
}
.cta-info { position: relative; }
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.cta-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 245, 66, 0.12);
}
.cta-info h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 12px;
}
.cta-info p {
  color: var(--text-2);
  max-width: 560px;
  font-size: 15px;
}
.cta-actions { display: flex; gap: 14px; flex: none; position: relative; z-index: 2; }

/* ========== 页脚 ========== */
.footer {
  border-top: 1px solid var(--border);
  background: #090C0B;
  padding-top: 54px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 42px;
}
.footer-brand-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.4;
}
.footer-brand-text span { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-3);
  max-width: 360px;
}
.footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.footer-sns span {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
}
.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  color: var(--text-3);
  font-size: 14px;
  transition: color 150ms;
}
.footer-list a:hover { color: var(--accent); }
.footer-note-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-note-list span {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.8;
  padding-left: 14px;
  position: relative;
}
.footer-note-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: var(--warm);
  opacity: 0.8;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 22px;
  color: var(--text-3);
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .top-row .brand-text { font-size: 16px; }
  .header-top { gap: 16px; }
  .ticker-wrap { margin-left: 0; }
  .hot-words { gap: 6px; }
  .hot-words a:nth-child(3) { display: none; }
  .category-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    padding: 56px 0 70px;
  }
  .entry-grid { grid-template-columns: 1fr; }
  .entry-media { aspect-ratio: 16 / 10; }
  .timeline { padding-left: 28px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .nav-area { border-bottom: 0; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 86vw);
    height: 100dvh;
    background: #0A0D0C;
    padding: 80px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 300;
    transition: right 280ms cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }
  body.nav-open .main-nav { right: 0; }
  .main-nav .nav-link {
    display: flex;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 12px;
    min-height: 46px;
  }
  .mobile-close { display: inline-flex; }
  .menu-toggle { display: inline-flex; }
  .hot-words { display: none; }
  .ticker-label { display: none; }
  .category-layout { grid-template-columns: 1fr; gap: 70px; }
  .content-aside { display: flex; flex-direction: column; gap: 22px; }
  .aside-card { margin: 0; }
  .aside-card + .aside-card { margin-top: 0; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 32px 26px; }
  .cta-actions { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  body { line-height: 1.7; font-size: 14px; }
  .container { padding: 0 18px; }
  .header-top { min-height: 54px; gap: 10px; }
  .brand-mark { width: 30px; height: 30px; font-size: 16px; }
  .brand-text { font-size: 15px; }
  .brand-text strong { display: inline; }
  .header-tools { gap: 8px; }
  .icon-button { width: 36px; height: 36px; }
  .btn { height: 42px; padding: 0 18px; font-size: 14px; }
  .btn-large { height: 48px; }
  .ticker-track { display: none; }
  .category-hero { padding: 44px 0 56px; }
  .breadcrumb { margin-bottom: 20px; }
  .hero-title { font-size: clamp(30px, 9vw, 42px); margin-bottom: 18px; }
  .hero-desc { font-size: 15px; }
  .hero-facts { gap: 12px; }
  .topic-row { min-height: 52px; }
  .topic-tab { font-size: 13px; padding: 0 13px; height: 36px; }
  .category-layout { padding: 44px 0 68px; gap: 64px; }
  .content-main { gap: 60px; }
  .block-head h2, .section-head h2 { font-size: 25px; line-height: 1.3; }
  .block-head { margin-bottom: 24px; }
  .note-cards { grid-template-columns: 1fr; }
  .entry-grid { margin-top: 24px; }
  .issue-item {
    grid-template-columns: 48px 1fr;
    padding: 16px 18px;
    gap: 12px;
  }
  .issue-mark { display: none; }
  .faq-question { font-size: 15px; padding: 14px 16px; align-items: flex-start; }
  .faq-answer p { padding: 0 16px 18px 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
  .footer-brand p { max-width: 100%; }
  .footer { padding-top: 40px; }
  .cta-section { padding-bottom: 60px; }
  .cta-banner { padding: 26px 20px; gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* roulang page: category2 */
:root{
  --bg:#0B0E0D;
  --bg2:#131716;
  --bg3:#1A201E;
  --bg-soft:#101413;
  --line:rgba(255,255,255,.08);
  --line-bright:rgba(255,255,255,.14);
  --text:#F1F7F2;
  --text-mid:#B3C1B8;
  --text-dim:#7F9189;
  --brand:#C8F542;
  --brand-hover:#DDFF71;
  --accent:#F2A86E;
  --success:#A9D65C;
  --danger:#F27C7C;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-sm:8px;
  --shadow-hover:0 24px 50px rgba(0,0,0,.55);
  --shadow-soft:0 10px 30px rgba(0,0,0,.3);
  --space-section:112px;
  --font-sans:"PingFang SC","HarmonyOS Sans SC","Microsoft YaHei","Noto Sans CJK SC",-apple-system,BlinkMacSystemFont,sans-serif;
  --font-num:"Inter",Bahnschrift,Roboto,"PingFang SC",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
}
body{
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  overflow-x:hidden;
}
body.no-scroll{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
input,textarea{font-family:inherit}
.container{width:min(1280px,92%);margin-inline:auto}
::selection{background:rgba(200,245,66,.25)}

/* shared header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--bg);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.top-row{
  background:rgba(11,14,13,.86);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.header-top{
  display:flex;
  align-items:center;
  gap:28px;
  min-height:64px;
}
.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
  gap:10px;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--brand);
  color:#0B0E0D;
  font-weight:900;
  font-size:24px;
  display:grid;
  place-items:center;
  letter-spacing:-.05em;
  box-shadow:0 0 0 1px rgba(200,245,66,.35),0 0 24px rgba(200,245,66,.12);
}
.brand-text{
  font-size:19px;
  font-weight:800;
  letter-spacing:.01em;
  line-height:1.2;
  display:flex;
  flex-direction:column;
}
.brand-text strong{
  color:var(--brand);
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  margin-top:2px;
}
.ticker-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:999px;
  padding:5px 14px 5px 8px;
  background:rgba(255,255,255,.025);
  min-width:0;
  flex:1;
}
.ticker-label{
  flex-shrink:0;
  font-size:12px;
  color:#0B0E0D;
  background:var(--brand);
  padding:2px 12px;
  border-radius:999px;
  font-weight:700;
}
.ticker-track{
  position:relative;
  overflow:hidden;
  height:22px;
  display:block;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.ticker-inner{
  font-size:13px;
  color:var(--text-mid);
  display:block;
  line-height:22px;
  text-overflow:ellipsis;
  overflow:hidden;
  max-width:560px;
}
.header-tools{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}
.icon-button{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  color:var(--text-mid);
  transition:.18s;
}
.icon-button svg{width:18px;height:18px}
.icon-button:hover{border-color:var(--brand);color:var(--brand);transform:translateY(-2px)}
.nav-area{
  background:rgba(11,14,13,.88);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:54px;
  gap:24px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:4px;
  flex:1;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 18px;
  color:var(--text-mid);
  font-size:15px;
  font-weight:600;
  border-radius:999px;
  transition:.16s ease;
  position:relative;
}
.nav-link:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}
.nav-link.is-active{
  color:var(--brand);
  background:rgba(200,245,66,.1);
  box-shadow:inset 0 0 0 1px rgba(200,245,66,.15);
}
.hot-words{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.hot-words a{
  font-size:12px;
  color:var(--text-dim);
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px 13px;
  transition:.16s;
  background:rgba(255,255,255,.02);
}
.hot-words a:hover{color:var(--brand);border-color:rgba(200,245,66,.4)}
.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.menu-toggle span{
  width:18px;height:2px;background:var(--text);border-radius:2px;
}
.mobile-close{
  display:none;
}

/* search overlay */
.search-overlay{
  position:fixed;
  inset:0;
  z-index:220;
  background:rgba(5,8,7,.78);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:18vh 22px 40px;
  opacity:0;
  visibility:hidden;
  transition:.2s;
}
.search-overlay.is-open{
  opacity:1;
  visibility:visible;
}
.search-panel{
  width:min(720px,100%);
  background:var(--bg2);
  border:1px solid var(--line-bright);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-hover);
}
.search-panel form{
  display:flex;
  gap:10px;
}
.search-panel input{
  flex:1;
  height:50px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:var(--bg-soft);
  color:var(--text);
  padding:0 22px;
  outline:none;
  font-size:15px;
  transition:border .2s;
}
.search-panel input:focus{
  border-color:var(--brand);
}
.search-close{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  font-size:24px;
  color:var(--text-dim);
  transition:.2s;
}
.search-close:hover{border-color:var(--danger);color:var(--danger)}

/* category hero */
.category-hero{
  position:relative;
  padding:68px 0 34px;
  background:
    linear-gradient(90deg, rgba(11,14,13,.98) 0%, rgba(11,14,13,.86) 38%, rgba(11,14,13,.65) 100%),
    url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
  border-bottom:1px solid var(--line);
  isolation:isolate;
}
.category-hero::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:240px;
  background:radial-gradient(circle at 75% 30%, rgba(200,245,66,.05), transparent 65%);
  z-index:-1;
}
.hero-breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--text-dim);
  margin-bottom:26px;
}
.hero-breadcrumb a{
  transition:color .15s;
}
.hero-breadcrumb a:hover{
  color:var(--brand);
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.2em;
  color:var(--brand);
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:12px;
}
.hero-eyebrow::before{
  content:"";
  width:26px;
  height:2px;
  background:var(--brand);
  display:inline-block;
}
.category-h1{
  font-size:clamp(42px,6vw,76px);
  line-height:1.12;
  letter-spacing:-.02em;
  font-weight:850;
  margin-bottom:18px;
}
.category-summary{
  max-width:780px;
  color:var(--text-mid);
  font-size:17px;
  line-height:2;
  margin-bottom:28px;
}
.hero-status-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.status-chip{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:rgba(19,23,22,.8);
  border:1px solid var(--line);
  padding:9px 16px;
  border-radius:999px;
  font-size:13px;
  color:var(--text-mid);
}
.status-chip i{
  width:6px;height:6px;border-radius:99px;background:var(--brand);
  box-shadow:0 0 0 3px rgba(200,245,66,.15);
}
.status-chip i.orange{background:var(--accent);box-shadow:0 0 0 3px rgba(242,168,110,.16)}
.status-chip strong{color:var(--text)}

/* sub tab */
.sub-tabs{
  position:relative;
  border-bottom:1px solid var(--line);
  background:var(--bg2);
  overflow-x:auto;
  scrollbar-width:none;
}
.sub-tabs::-webkit-scrollbar{display:none}
.tab-scroll{
  display:flex;
  gap:6px;
  align-items:center;
}
.tab-item{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  height:50px;
  padding:0 20px;
  font-size:14px;
  font-weight:600;
  color:var(--text-dim);
  position:relative;
  transition:.2s;
}
.tab-item::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:0;
  height:2px;
  background:var(--brand);
  transform:scaleX(0);
  transform-origin:left;
  transition:.25s ease;
}
.tab-item:hover{
  color:var(--text);
}
.tab-item.is-active{
  color:var(--brand);
}
.tab-item.is-active::after{
  transform:scaleX(1);
}

/* section global */
.section{
  padding:var(--space-section) 0;
}
.section.tight{
  padding:64px 0;
}
.section-head{
  margin-bottom:40px;
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--brand);
  font-size:13px;
  letter-spacing:.18em;
  font-weight:700;
  text-transform:uppercase;
}
.eyebrow::after{
  content:"";
  width:44px;
  height:1px;
  background:rgba(200,245,66,.35)
}
.section-title{
  font-size:clamp(26px,3.4vw,40px);
  line-height:1.3;
  font-weight:800;
  margin-top:12px;
  letter-spacing:-.01em;
}
.section-sub{
  color:var(--text-dim);
  font-size:15px;
  margin-top:10px;
  max-width:640px;
}

/* split layout */
.asym-split{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:48px;
  align-items:start;
}
.main-col{
  min-width:0;
}
.side-col{
  position:sticky;
  top:150px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* side cards */
.aside-card{
  background:var(--bg2);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:24px;
  transition:border-color .2s;
}
.aside-card:hover{
  border-color:rgba(255,255,255,.16);
}
.aside-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  font-size:15px;
  font-weight:800;
}
.aside-head .dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:var(--brand);
  box-shadow:0 0 0 4px rgba(200,245,66,.12);
}
.aside-head .dot.orange{
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(242,168,110,.14);
}
.aside-list{
  list-style:none;
}
.aside-list li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
  font-size:14px;
  color:var(--text-mid);
  transition:.15s;
}
.aside-list li:last-child{
  border-bottom:none;
}
.aside-list li:hover{
  color:var(--text);
  padding-left:4px;
}
.aside-list strong{
  color:var(--text);
  font-weight:600;
}
.aside-list .tag{
  font-size:12px;
  color:var(--brand);
}
.aside-list .tag.orange{
  color:var(--accent);
}

/* focus card */
.focus-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  background:var(--bg3);
  min-height:420px;
  display:flex;
  align-items:flex-end;
  margin-bottom:36px;
  transition:box-shadow .28s,transform .28s;
}
.focus-card:hover{
  box-shadow:var(--shadow-hover);
  transform:translateY(-3px);
}
.focus-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  background:var(--bg3);
}
.focus-card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:74%;
  background:linear-gradient(180deg, transparent, rgba(6,8,7,.9) 88%);
  z-index:1;
}
.focus-top-tags{
  position:absolute;
  top:20px;
  left:20px;
  z-index:3;
  display:flex;
  gap:8px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(11,14,13,.75);
  backdrop-filter: blur(4px);
  border:1px solid var(--line-bright);
  border-radius:99px;
  padding:5px 14px;
  font-size:12px;
  font-weight:600;
  color:var(--text);
}
.badge .signal-dot{
  width:6px;height:6px;border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 0 3px rgba(242,168,110,.25);
}
.badge.live-dot .signal-dot{
  background:var(--accent);
}
.badge.green-dot .signal-dot{
  background:var(--brand);
  box-shadow:0 0 0 3px rgba(200,245,66,.2);
}
.focus-body{
  position:relative;
  z-index:2;
  padding:30px 32px;
  width:100%;
}
.focus-category{
  color:var(--accent);
  font-size:13px;
  font-weight:700;
  letter-spacing:.1em;
  margin-bottom:10px;
}
.focus-title{
  font-size:clamp(21px,2.8vw,32px);
  font-weight:800;
  line-height:1.45;
  margin-bottom:12px;
  max-width:720px;
}
.focus-time{
  color:var(--text-mid);
  font-size:14px;
  display:flex;
  align-items:center;
  gap:12px;
}
.focus-time .icon-live{
  width:10px;height:10px;border-radius:99px;
  background:var(--accent);
  animation:pulse 1.4s ease infinite;
}
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.45;transform:scale(.84)}
}
.focus-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:46px;
  padding:0 26px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  border:1px solid transparent;
  transition:.16s linear;
  white-space:nowrap;
  user-select:none;
}
.btn svg{width:16px;height:16px}
.btn:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:3px;
}
.btn-primary{
  background:var(--brand);
  color:#0B0E0D;
}
.btn-primary:hover{
  background:var(--brand-hover);
  transform:translateY(-2px);
}
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.28);
  color:var(--text);
}
.btn-outline:hover{
  border-color:var(--brand);
  color:var(--brand);
  transform:translateY(-2px);
}
.btn-dark{
  background:var(--bg3);
  color:var(--text);
  border-color:var(--line-bright);
}
.btn-dark:hover{
  border-color:rgba(200,245,66,.55);
  color:var(--brand);
}
.btn-sm{
  height:38px;
  padding:0 18px;
  font-size:13px;
}

/* match feed */
.section-card{
  background:var(--bg2);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.feed-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 24px;
  border-bottom:1px solid var(--line);
}
.feed-head h3{
  font-size:18px;
  font-weight:800;
}
.feed-head .time-hint{
  font-size:13px;
  color:var(--text-dim);
  background:rgba(255,255,255,.035);
  border-radius:99px;
  padding:5px 14px;
}
.match-row{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 24px;
  border-bottom:1px solid rgba(255,255,255,.05);
  transition:.16s ease;
  position:relative;
}
.match-row:last-child{
  border-bottom:none;
}
.match-row::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:var(--brand);
  transform:scaleY(0);
  transform-origin:top;
  transition:.16s;
}
.match-row:hover{
  background:rgba(255,255,255,.025);
}
.match-row:hover::before{
  transform:scaleY(1);
}
.match-thumb{
  width:124px;
  height:74px;
  flex-shrink:0;
  border-radius:10px;
  overflow:hidden;
  background:var(--bg3);
  position:relative;
}
.match-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.match-thumb .type{
  position:absolute;
  right:6px;
  bottom:6px;
  background:rgba(11,14,13,.78);
  color:#fff;
  font-size:10px;
  border-radius:5px;
  padding:2px 7px;
}
.match-info{
  flex:1;
  min-width:0;
}
.match-info .mtag{
  display:inline-block;
  color:var(--accent);
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  margin-bottom:5px;
}
.match-info h4{
  font-size:16px;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  transition:color .15s;
}
.match-row:hover h4{
  color:var(--brand);
}
.match-info p{
  color:var(--text-dim);
  font-size:12px;
  margin-top:3px;
}
.match-status{
  flex-shrink:0;
  font-size:13px;
  color:var(--text-mid);
  text-align:right;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
}
.match-status .s-live{
  color:var(--accent);
  font-weight:700;
}
.match-status .s-wait{
  color:var(--brand);
  font-weight:700;
}
.match-status .s-end{
  color:var(--text-dim);
}
.match-status .enter{
  display:inline-flex;
  align-items:center;
  gap:4px;
  color:var(--text-mid);
  font-size:12px;
  transition:.15s;
}
.match-status .enter:hover{
  color:var(--brand);
}

/* metrics strip */
.metrics-band{
  background:var(--bg2);
  border-block:1px solid var(--line);
  position:relative;
}
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.metric-cell{
  padding:42px 30px;
  border-left:1px solid rgba(255,255,255,.05);
  min-width:0;
}
.metric-cell:first-child{
  border-left:none;
}
.metric-label{
  font-size:13px;
  color:var(--text-dim);
  letter-spacing:.05em;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.metric-label .num-mark{
  color:var(--brand);
  font-size:12px;
  font-weight:800;
}
.metric-value{
  font-family:var(--font-num);
  font-size:42px;
  font-weight:850;
  letter-spacing:-.03em;
  line-height:1.1;
  color:var(--text);
  display:flex;
  align-items:baseline;
}
.metric-value small{
  font-size:13px;
  font-family:var(--font-sans);
  font-weight:500;
  color:var(--text-dim);
  margin-left:10px;
}
.metric-note{
  color:var(--text-dim);
  font-size:13px;
  margin-top:10px;
}

/* guide step */
.step-guide{
  display:grid;
  grid-template-columns:0.9fr 0.7fr;
  gap:64px;
  align-items:center;
}
.guide-copy p{
  color:var(--text-mid);
  font-size:15px;
  line-height:2;
  margin-bottom:22px;
}
.timeline-list{
  display:flex;
  flex-direction:column;
}
.timeline-item{
  display:flex;
  gap:18px;
  padding-bottom:28px;
  position:relative;
}
.timeline-item:last-child{
  padding-bottom:0;
}
.timeline-item::before{
  content:"";
  position:absolute;
  left:15px;
  top:38px;
  bottom:0;
  width:1px;
  background:rgba(255,255,255,.12);
}
.timeline-item:last-child::before{
  content:none;
}
.timeline-num{
  width:32px;
  height:32px;
  border-radius:10px;
  background:rgba(200,245,66,.12);
  border:1px solid rgba(200,245,66,.3);
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  flex-shrink:0;
  z-index:1;
}
.timeline-item:nth-child(2) .timeline-num{
  background:rgba(242,168,110,.12);
  border-color:rgba(242,168,110,.3);
  color:var(--accent);
}
.timeline-item:nth-child(3) .timeline-num{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.2);
  color:var(--text);
}
.timeline-content h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:5px;
}
.timeline-content p{
  color:var(--text-dim);
  font-size:14px;
}

/* side visual */
.guide-visual{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  min-height:500px;
  object-fit:cover;
}
.guide-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:500px;
}
.guide-float{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  background:rgba(11,14,13,.82);
  backdrop-filter:blur(12px);
  border:1px solid var(--line-bright);
  border-radius:16px;
  padding:22px;
}
.guide-float-title{
  font-size:15px;
  font-weight:800;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}
.guide-float-title i{
  width:8px;height:8px;background:var(--accent);border-radius:99px;
}
.guide-tip-list{
  list-style:none;
}
.guide-tip-list li{
  padding:8px 0;
  color:var(--text-mid);
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.guide-tip-list li span{color:var(--text-dim);font-size:13px}
.guide-tip-list li:last-child{border-bottom:none}

/* split info block */
.replay-block{
  background:var(--bg2);
  border-block:1px solid var(--line);
}
.replay-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.copy-block h2{
  font-size:32px;
  line-height:1.3;
  font-weight:800;
  margin:10px 0 20px;
}
.copy-block p{
  color:var(--text-mid);
  font-size:15px;
  line-height:2;
  margin-bottom:16px;
}
.check-list{
  list-style:none;
  margin:18px 0 0;
}
.check-list li{
  padding:8px 0 8px 34px;
  position:relative;
  color:var(--text-mid);
  font-size:14px;
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:16px;
  width:16px;
  height:16px;
  border-radius:6px;
  background:rgba(200,245,66,.16);
  border:1px solid rgba(200,245,66,.45);
}
.check-list li::after{
  content:"";
  position:absolute;
  left:5px;
  top:21px;
  width:6px;
  height:4px;
  border-left:1.6px solid var(--brand);
  border-bottom:1.6px solid var(--brand);
  transform:rotate(-45deg);
}
.replay-media{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.recommend-card{
  border-radius:18px;
  overflow:hidden;
  background:var(--bg3);
  border:1px solid var(--line);
  position:relative;
  min-height:220px;
  transition:.24s ease;
}
.recommend-card:hover{
  border-color:rgba(255,255,255,.18);
  box-shadow:var(--shadow-soft);
  transform:translateY(-4px);
}
.recommend-card:first-child{
  grid-row:span 2;
  min-height:456px;
}
.recommend-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.recommend-card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:62%;
  background:linear-gradient(180deg,transparent,rgba(5,8,7,.93));
}
.play-triangle{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:42px;
  height:42px;
  background:var(--bg);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.16s;
}
.play-triangle svg{
  width:22px;height:22px;
}
.recommend-card:hover .play-triangle{
  background:var(--brand);
}
.play-triangle svg path{
  fill:var(--brand);
  transition:.16s;
}
.recommend-card:hover .play-triangle svg path{
  fill:var(--bg);
}
.recommend-label{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  font-size:12px;
  padding:4px 11px;
  background:rgba(11,14,13,.7);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  color:var(--text);
  backdrop-filter:blur(6px);
}
.recommend-meta{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:2;
}
.recommend-meta p{
  font-size:14px;
  color:var(--text-mid);
  margin-bottom:2px;
}
.recommend-meta h4{
  font-size:16px;
  line-height:1.6;
  font-weight:800;
}

/* FAQ */
.faq-area{
  background:var(--bg);
}
.faq-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:40px;
  gap:26px;
}
.faq-contact{
  flex-shrink:0;
}
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}
.faq-item{
  border-bottom:1px solid var(--line);
  border-left:1px solid var(--line);
  padding:0;
}
.faq-item:nth-child(odd){
  border-left:none;
}
.faq-q{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  text-align:left;
  padding:22px 4px;
  font-size:16px;
  font-weight:700;
  color:var(--text);
  background:none;
  transition:color .2s;
}
.faq-q:hover{
  color:var(--brand);
}
.faq-icon{
  width:32px;
  height:32px;
  border:1px solid var(--line-bright);
  border-radius:50%;
  flex-shrink:0;
  position:relative;
  transition:.2s;
}
.faq-icon::before,.faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:12px;
  height:1.5px;
  background:var(--text);
  transform:translate(-50%,-50%);
  transition:transform .25s ease;
}
.faq-icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}
.faq-q[aria-expanded="true"] .faq-icon::after{
  transform:translate(-50%,-50%) rotate(0deg);
}
.faq-q[aria-expanded="true"]{
  color:var(--brand);
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq-a-inner{
  padding:0 48px 24px 4px;
  color:var(--text-mid);
  font-size:14px;
  line-height:2;
}

/* cta */
.cta-area{
  padding:40px 0 100px;
  background:var(--bg);
}
.cta-card{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:
    linear-gradient(100deg, rgba(19,23,22,.97), rgba(19,23,22,.88) 55%, rgba(200,245,66,.08)),
    url('/assets/images/backpic/back-3.webp') right/cover no-repeat;
  border:1px solid var(--line-bright);
  padding:56px 64px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.cta-card h2{
  font-size:clamp(24px,2.7vw,36px);
  line-height:1.3;
  font-weight:800;
  margin-bottom:14px;
}
.cta-card p{
  color:var(--text-mid);
  font-size:15px;
  margin-bottom:20px;
}
.cta-note{
  font-size:12px;
  color:var(--text-dim);
  margin-top:14px;
  display:block;
}
.form-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  background:rgba(11,14,13,.55);
  border:1px solid rgba(255,255,255,.1);
  border-radius:99px;
  padding:8px;
  max-width:520px;
}
.form-row input{
  flex:1;
  min-width:0;
  background:transparent;
  border:none;
  outline:none;
  color:var(--text);
  font-size:14px;
  padding:0 14px;
  height:38px;
}
.form-row input:focus{
  box-shadow:none;
}
.form-row .btn{
  height:40px;
}
.form-row:focus-within{
  border-color:var(--brand);
}

/* footer */
.footer{
  background:#080B0A;
  border-top:1px solid var(--line);
}
.footer .container{
  padding-top:70px;
  padding-bottom:28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.3fr;
  gap:44px;
  padding-bottom:40px;
}
.footer-brand-text{
  font-size:30px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:16px;
  letter-spacing:-.02em;
}
.footer-brand-text span{
  color:var(--brand);
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  display:block;
  margin-top:6px;
}
.footer p{
  color:var(--text-dim);
  font-size:13px;
  max-width:340px;
  line-height:1.9;
}
.footer-sns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.footer-sns span{
  font-size:12px;
  color:var(--text-mid);
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  padding:7px 16px;
  border-radius:999px;
  transition:.16s ease;
}
.footer-sns span:hover{
  border-color:rgba(200,245,66,.35);
  color:var(--brand);
}
.footer-title{
  color:var(--text);
  font-size:15px;
  font-weight:700;
  margin-bottom:20px;
}
.footer-list{
  display:flex;
  flex-direction:column;
}
.footer-list a{
  color:var(--text-dim);
  font-size:13px;
  line-height:37px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.15s;
}
.footer-list a::before{
  content:"";
  width:4px;height:4px;
  background:var(--text-dim);
  border-radius:50%;
  transition:.15s;
}
.footer-list a:hover{
  color:var(--brand);
  transform:translateX(3px);
}
.footer-list a:hover::before{
  background:var(--brand);
}
.footer-note-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-note-list span{
  color:var(--text-dim);
  font-size:13px;
  padding-left:14px;
  position:relative;
  line-height:1.7;
}
.footer-note-list span::before{
  content:"";
  position:absolute;
  left:0;
  top:.8em;
  width:4px;
  height:4px;
  background:var(--accent);
  opacity:.7;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.05);
  padding-top:26px;
  color:var(--text-dim);
  font-size:12px;
}

/* responsive */
@media (max-width: 1024px){
  :root{--space-section:88px}
  .asym-split{
    grid-template-columns:1fr;
  }
  .side-col{
    position:static;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }
  .focus-card{
    min-height:350px;
  }
  .cta-card{
    grid-template-columns:1fr;
    padding:44px 38px;
  }
  .step-guide{
    grid-template-columns:1fr;
    gap:40px;
  }
  .guide-visual,.guide-visual img{
    min-height:360px;
  }
}
@media (max-width:767px){
  :root{--space-section:72px}
  .top-row .container,.nav-inner{min-height:auto}
  .header-top{
    gap:12px;
    flex-wrap:wrap;
    min-height:58px;
    padding:10px 0;
  }
  .ticker-wrap{
    order:3;
    width:100%;
    max-width:none;
  }
  .ticker-inner{
    max-width:100%;
  }
  .header-tools .btn-sm{
    padding:0 15px;
    height:36px;
  }
  .icon-button{
    width:36px;height:36px;
  }
  .nav-area{
    position:relative;
  }
  .nav-inner{
    padding:8px 0;
  }
  .menu-toggle{
    display:inline-flex;
  }
  .main-nav{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    width:min(320px,86%);
    background:var(--bg2);
    border-left:1px solid var(--line-bright);
    flex-direction:column;
    justify-content:flex-start;
    padding:72px 22px 28px;
    gap:8px;
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.3,0,.2,1);
    z-index:300;
  }
  .main-nav.is-open{
    transform:translateX(0);
  }
  .nav-link{
    width:100%;
    justify-content:flex-start;
    border-radius:12px;
    height:48px;
    font-size:16px;
  }
  .mobile-close{
    display:flex;
    position:absolute;
    top:14px;
    right:18px;
    width:40px;
    height:40px;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:var(--text-mid);
    background:rgba(255,255,255,.05);
    border:1px solid var(--line);
  }
  .hot-words{
    display:none;
  }
  .hero-status-row{
    flex-direction:column;
  }
  .category-h1{
    font-size:38px;
  }
  .category-summary{
    font-size:15px;
  }
  .focus-card{
    min-height:300px;
  }
  .focus-body{
    padding:20px;
  }
  .focus-title{
    font-size:20px;
  }
  .match-row{
    flex-wrap:wrap;
  }
  .match-thumb{
    width:100%;
    height:110px;
  }
  .match-info h4{
    white-space:normal;
  }
  .match-status{
    flex-direction:row;
    align-items:center;
    width:100%;
    justify-content:space-between;
  }
  .metrics-grid{
    grid-template-columns:1fr 1fr;
  }
  .metric-cell{
    border-left:none;
    border-top:1px solid rgba(255,255,255,.05);
    padding:28px 12px;
  }
  .metric-cell:nth-child(even){
    padding-left:18px;
  }
  .replay-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .recommend-card:first-child{
    grid-row:span 1;
    min-height:250px;
  }
  .recommend-card{
    min-height:230px;
  }
  .faq-grid{
    grid-template-columns:1fr;
  }
  .faq-item{
    border-left:none;
  }
  .faq-item:nth-child(odd){
    border-left:none;
  }
  .faq-item:first-child{
    border-top:none;
  }
  .cta-card{
    padding:32px 20px;
  }
  .form-row{
    border-radius:20px;
    flex-direction:column;
  }
  .form-row input{
    height:44px;
    width:100%;
  }
  .form-row .btn{
    width:100%;
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:38px;
  }
  .footer-bottom{
    flex-direction:column;
  }
  .step-guide{
    gap:24px;
  }
}
@media (max-width:520px){
  .container{
    width:min(100% - 32px,1280px);
  }
  .catalog-h1{
    font-size:36px;
  }
  .section-title{
    font-size:24px;
  }
  .focus-actions .btn{
    flex:1;
  }
  .side-col{
    grid-template-columns:1fr;
  }
  .replay-media{
    grid-template-columns:1fr;
  }
  .faq-contact .btn{
    padding:0 16px;
    font-size:13px;
  }
}

/* roulang page: category3 */
:root {
  --bg: #0B0E0D;
  --bg-panel: #131716;
  --card: #1A201E;
  --text: #F1F7F2;
  --text-secondary: #B3C1B8;
  --text-weak: #7F9189;
  --accent: #C8F542;
  --accent-hover: #DDFF71;
  --warm: #F2A86E;
  --red: #F27C7C;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.55);
  --font-sans: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", -apple-system, "Segoe UI", Roboto, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button,
input {
  font-family: inherit;
  font-size: inherit;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 24px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #0B0E0D;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 12, 11, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.top-row {
  background: rgba(9, 12, 11, 0.88);
}
.header-top {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  flex-shrink: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent);
  color: #0B0E0D;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-text strong {
  background: var(--accent);
  color: #0B0E0D;
  font-weight: 800;
  border-radius: 6px;
  padding: 2px 6px;
  margin-left: 6px;
  font-size: 14px;
}
.ticker-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 7px 16px;
}
.ticker-label {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(200, 245, 66, 0.1);
  padding: 2px 10px;
  border-radius: 999px;
}
.ticker-track {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-secondary);
  font-size: 13px;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .15s ease;
}
.icon-button svg {
  width: 18px;
  height: 18px;
}
.icon-button:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.icon-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.nav-area {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 56px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.nav-link.is-active,
.nav-link[aria-current="page"] {
  background: rgba(200, 245, 66, 0.12);
  color: var(--accent);
}
.hot-words {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hot-words::before {
  content: "热点";
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-weak);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
}
.hot-words a {
  color: var(--text-weak);
  font-size: 13px;
  border: 1px solid transparent;
  padding: 4px 10px;
  border-radius: 999px;
  transition: color .15s ease, border-color .15s ease;
}
.hot-words a:hover {
  color: var(--accent);
  border-color: rgba(200, 245, 66, 0.24);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  border-radius: 2px;
}
.mobile-close {
  display: none;
  width: 36px;
  height: 36px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 7, 6, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.search-panel {
  width: min(720px, 90vw);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.search-panel form {
  display: flex;
  gap: 10px;
}
.search-panel input {
  flex: 1;
  min-width: 0;
  background: #0d110f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 999px;
  outline: none;
  transition: border-color .15s ease;
}
.search-panel input:focus {
  border-color: var(--accent);
}
.search-panel input::placeholder {
  color: var(--text-weak);
}
.search-panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}
.ghost-btn {
  background: transparent;
  border: 0;
  color: var(--text-weak);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 14px;
}
.ghost-btn:hover {
  color: var(--text);
}

.page-main {
  display: block;
}
.crumbs-row {
  border-bottom: 1px solid var(--line);
  background: rgba(20, 24, 22, 0.4);
}
.crumbs {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-weak);
  font-size: 13px;
}
.crumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.crumbs li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.18);
}
.crumbs a {
  color: var(--text-secondary);
}
.crumbs a:hover {
  color: var(--accent);
}

.category-hero {
  position: relative;
  padding: 72px 0 64px;
  background:
    linear-gradient(180deg, rgba(11, 14, 13, 0.80) 0%, rgba(11, 14, 13, 0.92) 62%, #0B0E0D 100%),
    url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-kicker .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  background: rgba(200, 245, 66, 0.12);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 999px;
}
.category-hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  max-width: 900px;
  text-wrap: balance;
}
.category-hero h1 .accent-line {
  color: var(--accent);
}
.hero-desc {
  max-width: 820px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}
.meta-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.meta-chip.warm::before {
  background: var(--warm);
}

.topic-tabs-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 12, 0.7);
}
.topic-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-tab {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  color: var(--text-secondary);
  background: transparent;
  transition: all .15s ease;
}
.topic-tab:hover {
  color: var(--accent);
  border-color: rgba(200, 245, 66, 0.36);
}
.topic-tab.is-active {
  background: rgba(200, 245, 66, 0.12);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.cat-section {
  padding: 78px 0 0;
}
.cat-section.has-divider {
  border-bottom: 1px solid var(--line);
  padding-bottom: 72px;
  margin-bottom: 70px;
}
.section-head {
  margin-bottom: 30px;
  max-width: 820px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.section-head h2,
.module-title {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.3;
  font-weight: 750;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.section-head p,
.module-lead {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.9;
}
.module {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.main-side-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}
.main-col,
.side-col {
  min-width: 0;
}
.module-title {
  font-size: 25px;
}
.module-lead {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.media-card-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.media-card-row figure {
  border-radius: 16px;
  overflow: hidden;
  background: #1d2320;
  min-height: 210px;
  margin: 0;
}
.media-card-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-block .para {
  color: var(--text-secondary);
  line-height: 1.92;
  margin-bottom: 18px;
  font-size: 15px;
}

.info-list {
  display: grid;
  gap: 0;
}
.info-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.info-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.info-list li:last-child {
  padding-bottom: 0;
}
.type-mark {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(200, 245, 66, 0.1);
  color: var(--accent);
  width: fit-content;
}
.type-mark.orange {
  background: rgba(242, 168, 110, 0.14);
  color: var(--warm);
}
.type-mark.cyan {
  background: rgba(151, 204, 196, 0.14);
  color: #9ecFc8;
}
.info-list strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.info-list p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}
.text-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(200, 245, 66, 0.18);
  background: rgba(200, 245, 66, 0.05);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 22px;
}
.text-note span {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #0B0E0D;
  font-weight: 900;
}
.text-note p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.85;
}

.step-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}
.step-list {
  position: relative;
}
.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 24px 0;
}
.step-list li::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.step-list li:last-child::before {
  display: none;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(200, 245, 66, 0.26);
  background: rgba(200, 245, 66, 0.06);
  color: var(--accent);
  font-weight: 900;
  font-size: 15px;
}
.step-content h3 {
  font-size: 17px;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 8px;
}
.step-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.82;
}
.step-aside {
  position: sticky;
  top: 150px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
}
.step-aside .aside-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-weak);
  margin-bottom: 10px;
}
.step-aside strong {
  display: block;
  font-size: 19px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
}
.step-aside p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.table-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.table-shell {
  overflow-x: auto;
}
.status-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.status-table th,
.status-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.status-table th {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-weak);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}
.status-table td {
  color: var(--text-secondary);
}
.status-table td strong {
  color: var(--text);
  font-weight: 700;
}
.status-table tr:last-child td {
  border-bottom: 0;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 7px;
  vertical-align: middle;
}
.status-dot.warm {
  background: var(--warm);
}
.status-dot.grey {
  background: #59635d;
}

.side-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
}
.side-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.side-card .side-sub {
  font-size: 13px;
  color: var(--text-weak);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 14px;
  transition: color .15s ease;
}
.side-link::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
}
.side-link:hover {
  color: var(--accent);
}
.side-link:last-child {
  border-bottom: 0;
}
.side-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.side-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text-weak);
  font-size: 12px;
  background: transparent;
  transition: color .15s ease, border-color .15s ease;
}
.side-chip:hover {
  color: var(--accent);
  border-color: rgba(200, 245, 66, 0.32);
}
.side-note {
  background: rgba(242, 168, 110, 0.08);
  border: 1px solid rgba(242, 168, 110, 0.24);
  border-radius: 14px;
  padding: 16px;
  margin-top: 16px;
}
.side-note strong {
  display: block;
  color: var(--warm);
  font-size: 14px;
  margin-bottom: 6px;
}
.side-note p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.75;
}

.faq-section {
  padding: 80px 0 30px;
}
.faq-panel {
  max-width: 880px;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: border-color .15s ease;
}
.faq-item[open] {
  border-color: rgba(200, 245, 66, 0.24);
}
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  min-height: 60px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-index {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.faq-q {
  font-size: 15px;
  font-weight: 650;
  color: var(--text);
  flex: 1;
}
.faq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-weak);
  transition: transform .18s ease, color .18s ease;
}
.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
  border-color: rgba(200, 245, 66, 0.26);
}
.faq-answer {
  padding: 2px 22px 20px 60px;
}
.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 14px;
}

.cta-zone {
  padding: 70px 0 90px;
}
.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background:
    linear-gradient(90deg, rgba(200, 245, 66, 0.09), transparent 60%),
    var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 36px 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-copy {
  flex: 1;
  min-width: 280px;
}
.cta-copy h2 {
  font-size: 25px;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 8px;
}
.cta-copy p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 600px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  background: #080b0a;
  border-top: 1px solid var(--line);
  padding: 64px 0 20px;
  color: var(--text-secondary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.footer-brand-text {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-brand-text span {
  color: var(--accent);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-weak);
}
.footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-sns span {
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 12px;
}
.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-list a {
  color: var(--text-weak);
  font-size: 14px;
  transition: color .15s ease;
}
.footer-list a:hover {
  color: var(--accent);
}
.footer-note-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-note-list span {
  color: var(--text-weak);
  font-size: 13px;
  position: relative;
  padding-left: 10px;
}
.footer-note-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-weak);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #59635d;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .main-side-grid {
    grid-template-columns: 1fr;
  }
  .step-aside {
    position: static;
  }
  .ticker-label {
    display: none;
  }
  .hot-words {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 18px;
  }
  .top-row .header-top {
    min-height: 64px;
  }
  .brand-text {
    font-size: 18px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .ticker-wrap {
    display: none;
  }
  .header-tools {
    margin-left: auto;
  }
  .hot-words {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 86%);
    height: 100%;
    background: #0f1311;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 14px;
    z-index: 300;
    transform: translateX(-100%);
    visibility: hidden;
    overflow-y: auto;
    box-shadow: 18px 0 44px rgba(0, 0, 0, 0.4);
    transition: transform .18s ease, visibility .18s ease;
  }
  .mobile-close {
    display: flex;
  }
  .site-header.nav-open .main-nav {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-link {
    font-size: 16px;
    padding: 0 12px;
    border-radius: 999px;
  }
  .category-hero {
    padding: 48px 0 46px;
  }
  .category-hero h1 {
    font-size: 34px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .cat-section {
    padding-top: 60px;
  }
  .cat-section.has-divider {
    padding-bottom: 52px;
    margin-bottom: 50px;
  }
  .module {
    padding: 20px;
  }
  .media-card-row {
    grid-template-columns: 1fr;
  }
  .media-card-row figure {
    min-height: 170px;
  }
  .step-wrap {
    grid-template-columns: 1fr;
  }
  .faq-answer {
    padding-left: 22px;
  }
  .cta-card {
    padding: 24px 22px;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .category-hero h1 {
    font-size: 29px;
  }
  .header-tools .btn-sm {
    padding: 8px 14px;
    font-size: 13px;
  }
  .info-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .topic-tab {
    padding: 0 13px;
    font-size: 13px;
  }
  .main-side-grid {
    gap: 16px;
  }
  .step-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .step-num {
    width: 38px;
    height: 38px;
  }
  .side-card {
    padding: 18px;
  }
  .table-shell {
    margin: 0 -18px;
    width: calc(100% + 36px);
  }
}

/* roulang page: category4 */
:root {
    --bg:#0B0E0D;
    --panel:#131716;
    --card:#1A201E;
    --line:rgba(255,255,255,.08);
    --line-strong:rgba(255,255,255,.16);
    --text:#F1F7F2;
    --muted:#B3C1B8;
    --dim:#7F9189;
    --lime:#C8F542;
    --lime-hover:#DDFF71;
    --orange:#F2A86E;
    --green-ok:#A9D65C;
    --red-soft:#F27C7C;
    --radius-lg:20px;
    --radius-md:14px;
    --radius-sm:8px;
    --shadow-card:0 20px 50px rgba(0,0,0,.45);
    --transition:.18s cubic-bezier(.2,.7,.2,1);
}
* {
    box-sizing:border-box;
    margin:0;
    padding:0;
}
html {
    scroll-behavior:smooth;
}
body {
    font-family:"PingFang SC","HarmonyOS Sans SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
    background:var(--bg);
    color:var(--text);
    font-size:15px;
    line-height:1.8;
    -webkit-font-smoothing:antialiased;
}
img {
    max-width:100%;
    display:block;
}
a {
    color:inherit;
    text-decoration:none;
}
a:hover {
    color:var(--lime);
}
button {
    font-family:inherit;
    cursor:pointer;
}
.container {
    max-width:1280px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
}
.main-wrap {
    padding-top:16px;
    padding-bottom:96px;
}
.section-pad {
    padding-top:96px;
    padding-bottom:96px;
}
.section-cap {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:28px;
}
.section-cap .cap-badge {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    letter-spacing:.18em;
    color:var(--lime);
    background:rgba(200,245,66,.06);
    border:1px solid rgba(200,245,66,.18);
    padding:5px 12px;
    border-radius:999px;
    text-transform:uppercase;
}
.section-title {
    font-size:clamp(26px,3vw,36px);
    line-height:1.25;
    font-weight:800;
    letter-spacing:.01em;
}
.section-desc {
    color:var(--muted);
    font-size:15px;
    margin-top:8px;
    max-width:720px;
}
h2,h3,h4 {
    letter-spacing:.01em;
}

/* Header */
.site-header {
    position:sticky;
    top:0;
    left:0;
    right:0;
    z-index:100;
    background:rgba(11,14,13,.92);
    -webkit-backdrop-filter:blur(16px);
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--line);
}
.top-row {
    background:rgba(19,23,22,.78);
    border-bottom:1px solid var(--line);
}
.header-top {
    display:flex;
    align-items:center;
    gap:20px;
    min-height:54px;
    padding-top:8px;
    padding-bottom:8px;
}
.brand {
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}
.brand-mark {
    width:38px;
    height:38px;
    border-radius:12px;
    background:var(--lime);
    color:#0B0E0D;
    font-size:22px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:"Inter","Bahnschrift","Roboto",sans-serif;
    box-shadow:0 0 0 1px rgba(200,245,66,.22),0 10px 24px rgba(200,245,66,.18);
}
.brand-text {
    color:var(--text);
    font-size:18px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:.02em;
}
.brand-text strong {
    color:var(--lime);
    font-weight:800;
}
.ticker-wrap {
    flex:1;
    min-width:0;
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(200,245,66,.04);
    border:1px solid rgba(200,245,66,.12);
    border-radius:999px;
    padding:4px 6px 4px 14px;
    overflow:hidden;
}
.ticker-label {
    flex-shrink:0;
    font-size:12px;
    font-weight:700;
    color:var(--lime);
    letter-spacing:.08em;
}
.ticker-track {
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
    mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
    height:26px;
    display:flex;
    align-items:center;
}
.ticker-inner {
    display:inline-block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    color:var(--dim);
    font-size:12px;
    letter-spacing:.04em;
}
.header-tools {
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}
.icon-button {
    width:36px;
    height:36px;
    border-radius:12px;
    border:1px solid var(--line);
    background:transparent;
    color:var(--muted);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
}
.icon-button:hover {
    color:var(--lime);
    border-color:rgba(200,245,66,.4);
    transform:translateY(-2px);
}
.icon-button svg {
    width:18px;
    height:18px;
}
.nav-area {
    background:rgba(11,14,13,.88);
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
}
.nav-inner {
    display:flex;
    align-items:center;
    gap:18px;
    justify-content:space-between;
    min-height:54px;
}
.main-nav {
    display:flex;
    align-items:center;
    gap:6px;
}
.nav-link {
    position:relative;
    font-size:14px;
    font-weight:600;
    color:var(--muted);
    padding:10px 14px;
    border-radius:10px;
    transition:var(--transition);
    white-space:nowrap;
}
.nav-link:hover {
    color:var(--text);
    background:rgba(255,255,255,.04);
}
.nav-link.is-active {
    color:var(--text);
    background:rgba(200,245,66,.05);
}
.nav-link.is-active::after {
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:4px;
    height:3px;
    background:var(--lime);
    border-radius:999px;
    box-shadow:0 0 12px rgba(200,245,66,.6);
}
.hot-words {
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}
.hot-words span {
    font-size:12px;
    color:var(--dim);
}
.hot-words a {
    font-size:12px;
    height:26px;
    line-height:26px;
    padding:0 12px;
    border-radius:999px;
    border:1px solid var(--line);
    color:var(--dim);
    transition:var(--transition);
    white-space:nowrap;
}
.hot-words a:hover {
    color:var(--lime);
    border-color:rgba(200,245,66,.24);
    background:rgba(200,245,66,.05);
}
.menu-toggle {
    display:none;
    width:42px;
    height:42px;
    border-radius:10px;
    border:1px solid var(--line);
    background:transparent;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
}
.menu-toggle span {
    display:block;
    width:20px;
    height:2px;
    background:#F1F7F2;
    border-radius:99px;
    transition:.25s ease;
}
.mobile-close {
    display:none;
    width:42px;
    height:42px;
    border-radius:10px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--muted);
    font-size:24px;
    line-height:1;
    margin-left:auto;
    margin-bottom:14px;
}

/* Buttons */
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    font-size:15px;
    font-weight:700;
    line-height:1;
    padding:14px 26px;
    border:1px solid transparent;
    transition:var(--transition);
}
.btn-primary {
    background:var(--lime);
    color:#0B0E0D;
    box-shadow:0 8px 24px rgba(200,245,66,.22);
}
.btn-primary:hover {
    background:var(--lime-hover);
    transform:translateY(-2px);
    color:#0B0E0D;
    box-shadow:0 12px 32px rgba(200,245,66,.28);
}
.btn-primary:active {
    transform:translateY(0);
}
.btn-ghost {
    background:rgba(255,255,255,.02);
    border-color:rgba(255,255,255,.2);
    color:var(--text);
}
.btn-ghost:hover {
    border-color:rgba(200,245,66,.5);
    color:var(--lime);
    transform:translateY(-2px);
}
.btn-sm {
    padding:9px 18px;
    font-size:13px;
}

/* Breadcrumb */
.breadcrumb {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    color:var(--dim);
    padding-top:24px;
    padding-bottom:0;
}
.breadcrumb a {
    color:var(--dim);
    transition:var(--transition);
}
.breadcrumb a:hover {
    color:var(--lime);
}
.breadcrumb .sep {
    color:rgba(255,255,255,.25);
}

/* Category Hero */
.category-hero {
    position:relative;
    background:linear-gradient(180deg,rgba(11,14,13,.15) 0%,rgba(11,14,13,.82) 80%),url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
    border-bottom:1px solid var(--line);
    overflow:hidden;
}
.category-hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 22% 30%,rgba(200,245,66,.09) 0%,transparent 34%);
}
.category-hero .container {
    position:relative;
    z-index:2;
}
.hero-inner {
    display:grid;
    grid-template-columns:minmax(0,1fr) 440px;
    gap:48px;
    align-items:center;
    padding-top:68px;
    padding-bottom:68px;
}
.hero-copy .kicker {
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:700;
    color:var(--lime);
    letter-spacing:.14em;
    background:rgba(200,245,66,.05);
    border:1px solid rgba(200,245,66,.18);
    border-radius:999px;
    padding:7px 14px;
    margin-bottom:22px;
}
.hero-copy .kicker::before {
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--orange);
    box-shadow:0 0 0 0 rgba(242,168,110,.6);
    animation:pulseDot 1.8s infinite;
}
@keyframes pulseDot {
    0%{box-shadow:0 0 0 0 rgba(242,168,110,.55);}
    70%{box-shadow:0 0 0 8px rgba(242,168,110,0);}
    100%{box-shadow:0 0 0 0 rgba(242,168,110,0);}
}
.hero-copy h1 {
    font-size:clamp(40px,5vw,72px);
    line-height:1.12;
    font-weight:900;
    color:var(--text);
    letter-spacing:.01em;
}
.hero-copy h1 .stroke-word {
    color:var(--lime);
}
.hero-copy .hero-lead {
    margin:24px 0 6px;
    color:var(--muted);
    font-size:17px;
    max-width:560px;
}
.hero-copy .hero-note {
    color:var(--dim);
    font-size:13px;
    margin:10px 0 0;
    max-width:560px;
    line-height:1.7;
}
.hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}
.hero-visual {
    position:relative;
    padding:10px 0 10px 10px;
}
.hero-image-card {
    position:relative;
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--line-strong);
    box-shadow:var(--shadow-card);
    background:var(--card);
    aspect-ratio:4/3;
}
.hero-image-card img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-image-card::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 42%,rgba(11,14,13,.94) 100%);
}
.hero-image-float {
    position:absolute;
    left:-24px;
    bottom:34px;
    z-index:3;
    background:rgba(19,23,22,.88);
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    border:1px solid rgba(200,245,66,.22);
    border-radius:16px;
    padding:14px 18px;
    box-shadow:0 18px 44px rgba(0,0,0,.5);
    max-width:280px;
}
.hero-image-float .float-tag {
    font-size:12px;
    color:var(--lime);
    letter-spacing:.1em;
    margin-bottom:4px;
}
.hero-image-float .float-title {
    font-size:15px;
    font-weight:700;
    color:#fff;
    line-height:1.5;
}

/* Category switch bar */
.cat-switch-bar {
    border-bottom:1px solid var(--line);
    background:rgba(19,23,22,.48);
}
.cat-switch-inner {
    display:flex;
    align-items:center;
    gap:6px;
    min-height:56px;
    overflow-x:auto;
    scrollbar-width:none;
}
.cat-switch-inner::-webkit-scrollbar {
    display:none;
}
.cat-switch-inner span {
    font-size:12px;
    color:var(--dim);
    padding-right:8px;
    flex-shrink:0;
}
.switch-link {
    font-size:14px;
    color:var(--muted);
    padding:9px 15px;
    border-radius:999px;
    border:1px solid transparent;
    background:transparent;
    white-space:nowrap;
    flex-shrink:0;
    transition:var(--transition);
}
.switch-link:hover {
    color:var(--text);
    background:rgba(255,255,255,.04);
}
.switch-link.is-live {
    background:rgba(200,245,66,.1);
    color:var(--lime);
    border-color:rgba(200,245,66,.2);
}

/* Content layout */
.content-layout {
    display:grid;
    grid-template-columns:minmax(0,1fr) 344px;
    gap:48px;
    padding-top:56px;
    padding-bottom:32px;
}
.primary {
    display:flex;
    flex-direction:column;
    gap:52px;
}
.sidebar {
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* Block shell */
.block {
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:20px;
    padding:32px;
}
.block-head {
    margin-bottom:22px;
    padding-bottom:18px;
    border-bottom:1px solid var(--line);
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
}
.block-head .step-index {
    font-family:"Inter","Bahnschrift","Roboto",sans-serif;
    font-size:36px;
    font-weight:800;
    line-height:1;
    color:transparent;
    -webkit-text-stroke:1px rgba(200,245,66,.42);
}
.block-title {
    font-size:24px;
    font-weight:800;
    line-height:1.3;
}
.block-desc {
    color:var(--dim);
    font-size:14px;
    max-width:620px;
    margin-top:4px;
}

/* Timeline */
.timeline {
    list-style:none;
    display:flex;
    flex-direction:column;
}
.timeline li {
    position:relative;
    display:grid;
    grid-template-columns:60px minmax(0,1fr);
    gap:20px;
    padding-bottom:30px;
}
.timeline li:last-child {
    padding-bottom:0;
}
.timeline li:not(:last-child)::before {
    content:"";
    position:absolute;
    left:27px;
    top:48px;
    bottom:4px;
    width:1px;
    background:linear-gradient(180deg,rgba(200,245,66,.3),rgba(255,255,255,.06));
}
.timeline .tl-num {
    position:relative;
    z-index:1;
    width:54px;
    height:54px;
    border-radius:16px;
    background:rgba(200,245,66,.05);
    border:1px solid rgba(200,245,66,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:"Inter","Bahnschrift",sans-serif;
    font-size:16px;
    font-weight:800;
    color:var(--lime);
    letter-spacing:.02em;
}
.timeline h3 {
    font-size:17px;
    font-weight:750;
    color:#fff;
    margin-bottom:5px;
}
.timeline p {
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
}
.timeline .tl-go {
    display:inline-block;
    margin-top:8px;
    font-size:13px;
    color:var(--lime);
}
.timeline .tl-go:hover {
    color:var(--lime-hover);
}

/* Situation table */
.table-surface {
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background:var(--panel);
}
.table-surface table {
    width:100%;
    border-collapse:collapse;
    min-width:580px;
}
.table-surface th {
    background:rgba(200,245,66,.04);
    color:var(--lime);
    font-size:13px;
    letter-spacing:.04em;
    font-weight:700;
    text-align:left;
    padding:16px 20px;
    border-bottom:1px solid var(--line-strong);
}
.table-surface td {
    vertical-align:top;
    color:var(--muted);
    font-size:14px;
    padding:18px 20px;
    border-bottom:1px solid var(--line);
}
.table-surface tr:last-child td {
    border-bottom:none;
}
.table-surface tr {
    transition:background .2s ease;
}
.table-surface tbody tr:hover {
    background:rgba(200,245,66,.03);
}
.table-surface td strong {
    color:#F1F7F2;
    font-weight:600;
    display:block;
    margin-bottom:4px;
    font-size:14px;
}
.table-surface td a {
    color:var(--lime);
    font-size:13px;
    white-space:nowrap;
}
.table-surface td .dim {
    color:var(--dim);
}
.table-scroll {
    overflow-x:auto;
}
.table-scroll::-webkit-scrollbar {
    height:8px;
}
.table-scroll::-webkit-scrollbar-thumb {
    background:rgba(255,255,255,.12);
    border-radius:99px;
}

/* Guide cards */
.guide-list {
    display:flex;
    flex-direction:column;
}
.guide-list-row {
    display:grid;
    grid-template-columns:46px 1fr auto;
    gap:16px;
    align-items:start;
    padding:22px 4px;
    border-bottom:1px solid var(--line);
    transition:var(--transition);
}
.guide-list-row:last-child {
    border-bottom:none;
    padding-bottom:0;
}
.guide-list-row:hover {
    padding-left:14px;
    background:rgba(255,255,255,.025);
}
.guide-list-row .number {
    font-family:"Inter","Bahnschrift",sans-serif;
    font-weight:900;
    font-size:22px;
    color:transparent;
    -webkit-text-stroke:1px rgba(200,245,66,.5);
}
.guide-list-row h3 {
    font-size:16px;
    font-weight:700;
    color:#fff;
    margin-bottom:4px;
    line-height:1.5;
}
.guide-list-row p {
    font-size:14px;
    color:var(--dim);
    line-height:1.7;
}
.guide-list-row .go-link {
    color:var(--dim);
    font-size:14px;
    transition:var(--transition);
}
.guide-list-row:hover .go-link {
    color:var(--lime);
}

/* QA */
.qa-list {
    display:flex;
    flex-direction:column;
}
.qa-item {
    background:transparent;
    border-bottom:1px solid var(--line);
    border-radius:0;
    transition:background .18s ease;
}
.qa-item:first-child {
    border-top:1px solid var(--line);
}
.qa-item[open] {
    background:rgba(255,255,255,.025);
}
.qa-item .qa-q {
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    cursor:pointer;
    min-height:72px;
    padding:16px 12px;
    font-size:16px;
    font-weight:650;
    color:#F1F7F2;
    line-height:1.5;
    transition:color .15s ease;
}
.qa-item summary::-webkit-details-marker {
    display:none;
}
.qa-item:hover .qa-q {
    color:var(--lime);
}
.qa-icon {
    flex-shrink:0;
    width:32px;
    height:32px;
    border:1px solid var(--line-strong);
    border-radius:50%;
    position:relative;
    transition:transform .22s ease,border-color .2s ease;
}
.qa-icon::before,
.qa-icon::after {
    content:"";
    position:absolute;
    background:var(--muted);
    border-radius:2px;
    transition:background .15s ease;
}
.qa-icon::before {
    width:12px;
    height:2px;
    left:9px;
    top:14px;
}
.qa-icon::after {
    width:2px;
    height:12px;
    left:14px;
    top:9px;
}
.qa-item[open] .qa-icon {
    transform:rotate(45deg);
    border-color:rgba(200,245,66,.45);
}
.qa-item[open] .qa-icon::before,
.qa-item[open] .qa-icon::after {
    background:var(--lime);
}
.qa-a {
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
    padding:2px 42px 24px 12px;
}
.qa-a a {
    color:var(--lime);
}

/* Sidebar card */
.widget {
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:20px;
    padding:24px;
}
.widget-title {
    font-size:15px;
    font-weight:800;
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
}
.widget-title::before {
    content:"";
    width:4px;
    height:18px;
    background:var(--lime);
    border-radius:99px;
    box-shadow:0 0 12px rgba(200,245,66,.4);
}
.widget-cover {
    border-radius:14px;
    overflow:hidden;
    max-height:170px;
    background:var(--card);
    margin-bottom:16px;
}
.widget-cover img {
    width:100%;
    height:170px;
    object-fit:cover;
    transition:transform .5s ease;
}
.widget-cover:hover img {
    transform:scale(1.03);
}
.side-list {
    display:flex;
    flex-direction:column;
}
.side-list a {
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 4px;
    border-bottom:1px solid var(--line);
    color:var(--muted);
    font-size:14px;
    transition:var(--transition);
}
.side-list a:last-child {
    border-bottom:none;
}
.side-list .arrow {
    margin-left:auto;
    color:var(--dim);
    font-family:"Inter",sans-serif;
    transition:var(--transition);
}
.side-list a:hover .arrow {
    color:var(--lime);
    transform:translateX(3px);
}
.side-list a:hover {
    color:var(--text);
}
.side-attents {
    margin-top:4px;
}
.attent {
    display:flex;
    gap:12px;
    padding:13px 0;
    border-bottom:1px solid var(--line);
    font-size:13px;
    color:var(--muted);
}
.attent:last-child {
    border-bottom:none;
}
.attent .dot {
    flex-shrink:0;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--orange);
    margin-top:9px;
}
.attent .dot.is-lime {
    background:var(--lime);
}
.attent strong {
    display:block;
    color:var(--text);
    font-size:14px;
    font-weight:650;
    margin-bottom:2px;
}
.widget-cta {
    background:linear-gradient(180deg,rgba(200,245,66,.06),transparent),var(--panel);
    border:1px solid rgba(200,245,66,.18);
}
.widget-cta p {
    color:var(--dim);
    font-size:13px;
    margin-bottom:18px;
    line-height:1.7;
}
.widget-cta .btn {
    width:100%;
}

/* CTA area */
.cta-section {
    padding:26px 0 76px;
}
.cta-banner {
    position:relative;
    background:linear-gradient(135deg,#182014 0%,#101413 60%);
    border:1px solid rgba(200,245,66,.18);
    border-radius:24px;
    overflow:hidden;
    padding:30px;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:28px;
}
.cta-banner::after {
    content:"";
    position:absolute;
    right:-80px;
    top:-80px;
    width:280px;
    height:280px;
    background:radial-gradient(circle,rgba(200,245,66,.13),transparent 70%);
    border-radius:50%;
}
.cta-banner .inner {
    position:relative;
    z-index:2;
}
.cta-banner h2 {
    font-size:clamp(24px,3.4vw,34px);
    font-weight:850;
    color:#fff;
    line-height:1.25;
    margin-bottom:8px;
}
.cta-banner p {
    color:var(--muted);
    font-size:15px;
    max-width:700px;
}
.cta-actions {
    position:relative;
    z-index:2;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

/* Footer */
.footer {
    background:#0C0F0E;
    border-top:1px solid var(--line);
    padding-top:72px;
    margin-top:20px;
}
.footer-grid {
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:44px;
    padding-bottom:40px;
}
.footer-brand-text {
    font-size:26px;
    font-weight:900;
    color:#fff;
    letter-spacing:.02em;
    margin-bottom:8px;
}
.footer-brand-text span {
    color:var(--lime);
}
.footer-brand p {
    color:var(--dim);
    font-size:13px;
    line-height:1.8;
    max-width:320px;
}
.footer-sns {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}
.footer-sns span {
    display:inline-flex;
    align-items:center;
    height:28px;
    padding:0 12px;
    font-size:12px;
    color:var(--muted);
    background:rgba(255,255,255,.04);
    border:1px solid var(--line);
    border-radius:999px;
}
.footer-title {
    color:#fff;
    font-size:14px;
    font-weight:750;
    margin-bottom:14px;
}
.footer-list {
    display:flex;
    flex-direction:column;
    gap:4px;
}
.footer-list a {
    color:var(--dim);
    font-size:13px;
    padding:6px 0;
    transition:var(--transition);
}
.footer-list a:hover {
    color:var(--lime);
    padding-left:4px;
}
.footer-note-list {
    display:flex;
    flex-direction:column;
    gap:4px;
}
.footer-note-list span {
    color:var(--dim);
    font-size:13px;
    padding:6px 0;
    border-bottom:1px dashed rgba(255,255,255,.06);
}
.footer-bottom {
    border-top:1px solid var(--line);
    padding:18px 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:10px;
    color:rgba(127,145,137,.55);
    font-size:12px;
    letter-spacing:.03em;
}

/* Search overlay */
.search-layer {
    position:fixed;
    inset:0;
    background:rgba(11,14,13,.96);
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
    z-index:2000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    opacity:0;
    visibility:hidden;
    transition:opacity .22s ease,visibility .22s ease;
}
.search-layer.open {
    opacity:1;
    visibility:visible;
}
.search-panel {
    width:100%;
    max-width:620px;
}
.search-close {
    display:block;
    margin-left:auto;
    width:44px;
    height:44px;
    border-radius:14px;
    border:1px solid var(--line-strong);
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:24px;
    line-height:1;
    margin-bottom:20px;
    transition:var(--transition);
}
.search-close:hover {
    border-color:var(--orange);
    color:var(--orange);
    transform:rotate(90deg);
}
.search-input {
    width:100%;
    background:var(--panel);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    height:64px;
    padding:0 62px 0 20px;
    font-size:17px;
    color:#fff;
    outline:none;
    font-family:inherit;
    transition:border-color .2s ease;
}
.search-input:focus {
    border-color:var(--lime);
    box-shadow:0 0 0 4px rgba(200,245,66,.08);
}
.search-wrap {
    position:relative;
}
.search-wrap .search-submit {
    position:absolute;
    right:8px;
    top:8px;
    width:48px;
    height:48px;
    border-radius:12px;
    background:var(--lime);
    color:#0B0E0D;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
}
.search-wrap .search-submit:hover {
    background:var(--lime-hover);
}
.search-tips {
    color:var(--dim);
    font-size:13px;
    margin-top:18px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
}
.search-tips strong {
    color:var(--muted);
}
.search-tips a {
    color:var(--dim);
    border:1px solid var(--line);
    padding:4px 12px;
    border-radius:999px;
    transition:var(--transition);
    font-size:12px;
}
.search-tips a:hover {
    color:var(--lime);
    border-color:rgba(200,245,66,.3);
}

/* Focus states */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
    outline:2px solid var(--lime);
    outline-offset:3px;
}
.btn:focus-visible {
    outline:3px solid rgba(200,245,66,.36);
    outline-offset:2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,*::before,*::after {
        animation:none !important;
        transition:none !important;
    }
    html {
        scroll-behavior:auto;
    }
}

/* Tablet */
@media (max-width:1024px) {
    .hero-inner {
        grid-template-columns:1fr;
        gap:36px;
    }
    .hero-visual {
        max-width:600px;
    }
    .content-layout {
        grid-template-columns:1fr;
    }
    .sidebar {
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        align-items:start;
    }
    .ticker-wrap {
        width:100%;
        max-width:420px;
    }
    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap:28px;
    }
}
@media (max-width:920px) and (min-width:768px) {
    .hot-words a:nth-child(3) {
        display:none;
    }
}
@media (max-width:840px) {
    .nav-area {
        min-height:50px;
    }
    .menu-toggle {
        display:flex;
    }
    .mobile-close {
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .main-nav {
        position:fixed;
        top:0;
        right:-340px;
        width:330px;
        max-width:90vw;
        height:100vh;
        background:#101413;
        border-left:1px solid var(--line-strong);
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
        padding:18px 18px 30px;
        z-index:1200;
        transition:right .28s cubic-bezier(.2,.7,.2,1);
        box-shadow:0 0 44px rgba(0,0,0,.5);
        overflow-y:auto;
    }
    .site-header.menu-open .main-nav {
        right:0;
    }
    .main-nav .nav-link {
        width:100%;
        font-size:16px;
        padding:14px 16px;
    }
    .main-nav .nav-link::after {
        display:none;
    }
    .hot-words {
        display:none;
    }
}
@media (max-width:767px) {
    .container {
        padding-left:16px;
        padding-right:16px;
    }
    .header-top {
        gap:10px;
        min-height:52px;
    }
    .ticker-wrap {
        display:none;
    }
    .brand-mark {
        width:34px;
        height:34px;
        border-radius:10px;
        font-size:19px;
    }
    .brand-text {
        font-size:16px;
    }
    .hero-inner {
        padding-top:44px;
        padding-bottom:44px;
        gap:30px;
    }
    .hero-copy h1 {
        font-size:clamp(33px,8.5vw,47px);
    }
    .hero-visual {
        padding:0;
    }
    .hero-image-float {
        left:12px;
        right:12px;
        bottom:12px;
        max-width:none;
        padding:12px 14px;
    }
    .cat-switch-bar {
        border-top:1px solid var(--line);
    }
    .section-pad {
        padding-top:64px;
        padding-bottom:64px;
    }
    .main-wrap {
        padding-bottom:56px;
    }
    .secondary-head {
        flex-direction:column;
    }
    .block {
        padding:22px 18px;
        border-radius:16px;
    }
    .block-title {
        font-size:21px;
        line-height:1.4;
    }
    .block-head {
        flex-direction:column;
    }
    .timeline li {
        grid-template-columns:46px minmax(0,1fr);
        gap:14px;
    }
    .timeline li:not(:last-child)::before {
        left:22px;
    }
    .timeline .tl-num {
        width:44px;
        height:44px;
        border-radius:13px;
        font-size:14px;
    }
    .guide-list-row {
        grid-template-columns:36px 1fr;
        gap:8px;
    }
    .guide-list-row .go-link {
        display:none;
    }
    .cta-banner {
        grid-template-columns:1fr;
        padding:24px;
    }
    .cta-actions {
        justify-content:flex-start;
    }
    .qa-item .qa-q {
        font-size:15px;
        padding:14px 4px;
    }
    .qa-a {
        padding-right:6px;
    }
    .content-layout {
        padding-top:38px;
    }
    .category-hero {
        background:linear-gradient(180deg,rgba(11,14,13,.5) 0%,rgba(11,14,13,.9) 100%),url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
    }
    .footer {
        padding-top:48px;
    }
    .footer-grid {
        grid-template-columns:1fr;
        gap:24px;
    }
    .footer-list a,
    .footer-note-list span {
        font-size:13px;
    }
    .footer-bottom {
        flex-direction:column;
        gap:4px;
    }
}
