/* roulang page: index */
:root {
    --bg-main: #0E1420;
    --bg-deep: #0B111A;
    --bg-card: #151F2B;
    --bg-card-2: #182432;
    --bg-hover: #1D2A3A;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text-high: #F1F7FA;
    --text-body: #B9C6D3;
    --text-mid: #8A99AD;
    --text-dim: #6F7B8F;
    --color-green: #B4FF39;
    --color-cyan: #29E6FF;
    --color-amber: #FFB800;
    --color-danger: #FF4D4D;
    --grad-brand: linear-gradient(135deg, #B4FF39 0%, #29E6FF 100%);
    --grad-soft: radial-gradient(circle at top left, rgba(180, 255, 57, 0.08), transparent 40%), radial-gradient(circle at bottom right, rgba(41, 230, 255, 0.08), transparent 42%);
    --radius-xl: 28px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
    --shadow-card: 0 12px 34px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.02) inset;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-ui: -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-ui);
    background-color: var(--bg-main);
    background-image: radial-gradient(rgba(180, 255, 57, 0.04) 1px, transparent 1px);
    background-size: 26px 26px;
    color: var(--text-body);
    line-height: 1.75;
    letter-spacing: 0.01em;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-ui);
}

h1, h2, h3, h4 {
    margin: 0;
    color: var(--text-high);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    margin-bottom: 12px;
    font-weight: 800;
    text-wrap: balance;
}

h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    margin: 32px 0 16px;
    font-weight: 760;
    letter-spacing: 0.015em;
}

h3 {
    font-size: 1.35rem;
    font-weight: 650;
}

p {
    margin: 0 0 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input {
    font: inherit;
    color: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

input:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 3px;
    border-radius: 6px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

.main {
    overflow: hidden;
}

.section {
    padding: 72px 0;
}

.section--soft {
    background: var(--grad-soft);
    border-block: 1px solid var(--line);
}

.section--deep {
    background: rgba(11, 17, 26, 0.72);
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.section-title .title-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--grad-brand);
    color: #0B101A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 12px;
    vertical-align: middle;
    box-shadow: 0 6px 16px rgba(180, 255, 57, 0.16);
}

.section-title h2 {
    margin: 0;
    display: inline-block;
}

.section-more {
    font-size: 0.92rem;
    color: var(--text-mid);
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    transition: all 0.25s var(--ease);
}

.section-more:hover {
    border-color: var(--color-green);
    color: var(--color-green);
    background: rgba(180, 255, 57, 0.07);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 10px;
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 12px var(--color-green);
}

.badge,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 12px;
    border: 1px solid rgba(180, 255, 57, 0.46);
    color: var(--color-green);
    background: rgba(180, 255, 57, 0.08);
    font-size: 0.79rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.tag--cyan {
    border-color: rgba(41, 230, 255, 0.5);
    color: var(--color-cyan);
    background: rgba(41, 230, 255, 0.08);
}

.dot-live {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-danger);
}

.dot-live::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 77, 0.7);
    animation: livePulse 1.7s infinite ease-out;
}

@keyframes livePulse {
    0% { transform: scale(0.55); opacity: 0.9; }
    80%, 100% { transform: scale(1.7); opacity: 0; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    transition: all 0.25s var(--ease);
    text-align: center;
}

.btn--primary {
    background: var(--grad-brand);
    color: #0B101A;
    box-shadow: 0 8px 18px rgba(180, 255, 57, 0.12);
}

.btn--primary:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(41, 230, 255, 0.18);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--ghost {
    background: transparent;
    color: var(--text-body);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    border-color: var(--color-green);
    color: var(--color-green);
    background: rgba(180, 255, 57, 0.06);
}

.btn--small {
    min-height: 36px;
    padding: 6px 17px;
    font-size: 0.87rem;
    font-weight: 600;
}

/* ========== Header ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(14, 20, 32, 0.86);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.topbar {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 0;
}

.brand-icon {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--grad-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(180, 255, 57, 0.2);
    flex-shrink: 0;
}

.brand-icon::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    border: 1px solid rgba(41, 230, 255, 0.2);
}

.brand-text {
    font-size: 1.18rem;
    font-weight: 780;
    color: var(--text-high);
    letter-spacing: 0;
    white-space: nowrap;
}

.brand-text small {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--color-cyan);
    display: block;
    line-height: 1.25;
    margin-top: 1px;
}

.topbar-search {
    display: none;
    flex: 1;
    max-width: 370px;
    margin-left: auto;
}

.search-form {
    display: flex;
    align-items: center;
    height: 44px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid transparent;
    padding: 0 6px 0 16px;
    transition: all 0.25s var(--ease);
}

.search-form:focus-within {
    border-color: rgba(41, 230, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.search-form input {
    background: transparent;
    border: 0;
    outline: none;
    color: var(--text-high);
    width: 100%;
    font-size: 0.95rem;
}

.search-form button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-brand);
    color: #0B101A;
    flex-shrink: 0;
    font-size: 15px;
    transition: filter 0.2s;
}

.search-form button:hover {
    filter: brightness(1.15);
}

.header-cta {
    margin-left: auto;
}

.header-cta .btn {
    min-height: 42px;
    padding: 8px 20px;
    font-size: 0.92rem;
}

@media (min-width: 1024px) {
    .topbar-search {
        display: block;
    }
    .header-cta {
        margin-left: 0;
    }
}

.channel-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.channel-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.channel-nav-inner::-webkit-scrollbar {
    display: none;
}

.nav-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-body);
    font-size: 0.93rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--text-high);
}

.nav-item.active {
    background: var(--grad-brand);
    color: #0B101A;
    box-shadow: 0 8px 24px rgba(180, 255, 57, 0.16);
}

/* ========== Hero Live Deck ========== */
.hero-deck {
    position: relative;
    padding: 38px 0 56px;
    isolation: isolate;
}

.hero-deck::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(14, 20, 32, 0.35), rgba(14, 20, 32, 0.92)),
        url("/assets/images/backpic/back-1.webp") center / cover no-repeat;
}

.hero-deck::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -6%;
    bottom: -1px;
    height: 180px;
    background: linear-gradient(180deg, transparent, var(--bg-main));
    pointer-events: none;
}

.hero-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 38px;
}

.hero-head .deck-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-head p.lead-deck {
    max-width: 920px;
    font-size: 1.18rem;
    color: #d3dde8;
    margin-top: 10px;
}

.hero-deck h1 {
    max-width: 1060px;
}

/* deck shell */
.deck-shell {
    background: rgba(21, 31, 43, 0.9);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    backdrop-filter: blur(7px);
}

.deck-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
}

.deck-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    background: #0C121B;
}

.deck-cover {
    position: absolute;
    inset: 0;
}

.deck-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deck-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(268deg, rgba(14, 20, 32, 0.08) 0%, rgba(14, 20, 32, 0.9) 100%);
}

.deck-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.live-match-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.match-placeholder {
    margin-top: auto;
    max-width: 460px;
}

.deck-cover h3 {
    font-size: 1.9rem;
    margin-bottom: 6px;
}

.deck-cover p {
    color: rgba(241, 247, 250, 0.82);
    margin-bottom: 0;
}

.deck-aside {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background:
        radial-gradient(circle at top right, rgba(41, 230, 255, 0.1), transparent 47%),
        rgba(21, 31, 43, 0.55);
}

.deck-next {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-wrap {
    border: 1px solid var(--line);
    background: rgba(11, 17, 26, 0.5);
    padding: 14px 18px;
    border-radius: 22px;
}

.countdown-label {
    color: var(--text-mid);
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-label strong {
    color: var(--color-green);
    font-weight: 700;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.countdown-cell {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 8px;
    text-align: center;
}

.countdown-cell .big {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-high);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.countdown-cell span {
    display: block;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 6px;
}

.points-list {
    display: grid;
    gap: 10px;
    padding: 0;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color 0.25s, background 0.25s;
}

.key-point:hover {
    border-color: rgba(180, 255, 57, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.point-ico {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--grad-brand);
    color: #0B101A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
}

.key-point strong {
    display: block;
    color: var(--text-high);
    font-size: 0.98rem;
    line-height: 1.4;
}

.key-point p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin: 4px 0 0;
    line-height: 1.6;
}

.remind-form {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
}

.remind-form input {
    min-width: 0;
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    padding: 0 8px;
    color: var(--text-high);
    font-size: 0.94rem;
}

.remind-form input::placeholder {
    color: var(--text-dim);
}

@media (min-width: 520px) {
    .remind-form .btn {
        flex-shrink: 0;
    }
}

/* replay row */
.deck-footer {
    border-top: 1px solid var(--line);
    padding: 16px 28px;
    background: rgba(11, 17, 26, 0.48);
}

.replay-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.replay-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.25s var(--ease);
}

.replay-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(41, 230, 255, 0.3);
    transform: translateY(-2px);
}

.replay-card .ended {
    color: var(--text-dim);
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.replay-card .ended span {
    font-size: 0.74rem;
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.replay-card strong {
    display: block;
    color: var(--text-high);
    font-size: 0.92rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .deck-inner {
        display: block;
    }
    .deck-visual {
        min-height: 290px;
    }
    .deck-aside {
        padding: 20px;
    }
    .deck-footer {
        padding: 16px 20px;
    }
}

@media (max-width: 600px) {
    .replay-row {
        grid-template-columns: 1fr 1fr;
    }
    .hero-deck {
        padding-top: 24px;
    }
}

/* ========== Focus Cards / 今日标签 ========== */
.focus-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.match-focus-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-card);
    transition: all 0.25s var(--ease);
    position: relative;
}

.match-focus-card:hover {
    transform: translateY(-6px);
    background: var(--bg-hover);
    box-shadow: var(--shadow-card);
}

.match-focus-card .thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.match-focus-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.match-focus-card:hover .thumb img {
    transform: scale(1.05);
}

.match-focus-card .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14, 20, 32, 0.83));
}

.match-focus-card .status-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.match-focus-body {
    padding: 17px 17px 20px;
}

.match-focus-body h3 {
    font-size: 1.06rem;
    line-height: 1.45;
    margin-bottom: 5px;
}

.match-focus-body time {
    color: var(--text-dim);
    font-size: 0.82rem;
    display: inline-block;
    margin-bottom: 10px;
}

.match-focus-body p {
    margin: 4px 0 10px;
    color: var(--text-mid);
    font-size: 0.9rem;
}

.text-link {
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.text-link:hover {
    color: var(--color-green);
}

@media (max-width: 1100px) {
    .focus-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .focus-card-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Stats ticker ========== */
.stat-band {
    background:
        radial-gradient(circle at 80% 30%, rgba(41, 230, 255, 0.13), transparent 30%),
        radial-gradient(circle at 15% 70%, rgba(180, 255, 57, 0.1), transparent 33%),
        rgba(21, 31, 43, 0.74);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 34px 0;
}

.stat-item {
    flex: 1 1 180px;
    text-align: center;
    border-radius: 22px;
    padding: 18px 12px;
    background: rgba(14, 20, 32, 0.64);
    border: 1px dashed rgba(255, 255, 255, 0.14);
}

.stat-item .stat-num {
    font-size: 2.4rem;
    font-weight: 820;
    font-variant-numeric: tabular-nums;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    display: inline-block;
}

.stat-item .stat-label {
    display: block;
    color: var(--text-mid);
    font-size: 0.92rem;
    margin-top: 4px;
}

@media (max-width: 780px) {
    .stat-item .stat-num {
        font-size: 1.9rem;
    }
}

/* ========== News List / CMS ========== */
.news-cms-section {
    background: linear-gradient(180deg, transparent, rgba(21, 31, 43, 0.4));
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.news-item {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px 12px 12px 12px;
    gap: 14px;
    transition: all 0.25s var(--ease);
}

.news-item:hover {
    background: var(--bg-hover);
    border-color: rgba(41, 230, 255, 0.25);
    transform: translateY(-2px);
}

.news-thumb {
    width: 144px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    align-self: stretch;
    background: #0C121B;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    min-width: 0;
    padding: 6px 4px 6px 0;
}

.news-content .badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
}

.news-content h3 {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.5;
}

.news-content h3 a {
    display: block;
    color: var(--text-high);
    transition: color 0.2s;
}

.news-content h3 a:hover {
    color: var(--color-cyan);
}

.news-content p {
    color: var(--text-mid);
    font-size: 0.87rem;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    margin-top: auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.78rem;
}

.news-meta time {
    font-variant-numeric: tabular-nums;
}

.news-read-more {
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 0.82rem;
}

.news-read-more:hover {
    color: var(--color-green);
}

.cms-empty {
    grid-column: 1 / -1;
    font-size: 1.15rem;
    padding: 42px 24px;
    color: var(--text-mid);
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 840px) {
    .news-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .news-item {
        flex-direction: column;
    }
    .news-thumb {
        width: 100%;
        height: 138px;
    }
    .news-content {
        padding: 2px 4px 4px;
    }
}

/* ========== Watch methods / 观赛方式 ========== */
.watch-flex {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.watch-posters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}

.poster-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.poster-card:hover img {
    transform: scale(1.04);
}

.poster-card .poster-label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    background: rgba(11, 17, 26, 0.75);
    padding: 5px 12px;
    border-radius: 10px;
    color: var(--text-high);
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

.watch-tips h3 {
    font-size: 1.32rem;
    margin-bottom: 14px;
}

.watch-tips .tip-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.watch-tips .tip-row:last-child {
    border-bottom: 0;
}

.tip-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(180, 255, 57, 0.13);
    color: var(--color-green);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: 0.86rem;
}

.tip-row strong {
    display: block;
    color: var(--text-high);
    font-size: 1rem;
    margin-bottom: 2px;
}

.tip-row p {
    color: var(--text-mid);
    font-size: 0.92rem;
    margin: 0;
}

@media (max-width: 900px) {
    .watch-flex {
        grid-template-columns: 1fr;
    }
    .watch-posters {
        order: 2;
        max-width: 620px;
        margin: 0 auto;
    }
}

/* ========== CTA block ========== */
.cta-block {
    background:
        linear-gradient(120deg, rgba(14, 20, 32, 0.85), rgba(21, 31, 43, 0.88)),
        url("/assets/images/backpic/back-2.webp") center / cover;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 52px 30px;
    text-align: center;
}

.cta-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-block p {
    max-width: 680px;
    margin: 14px auto 26px;
    color: var(--text-body);
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FAQ ========== */
.faq-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    background: var(--bg-card);
    border-radius: 18px;
    margin-bottom: 12px;
    transition: border-color 0.25s;
}

.faq-item[open],
.faq-item:hover {
    border-color: rgba(180, 255, 57, 0.3);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 20px 22px;
    color: var(--text-high);
    font-weight: 700;
    font-size: 1.03rem;
    line-height: 1.5;
    border-radius: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--color-green);
    font-size: 1.5rem;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.25s var(--ease);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    background: var(--grad-brand);
    color: #0B101A;
}

.faq-body {
    padding: 0 24px 22px;
    color: var(--text-body);
}

.faq-body p {
    margin: 0 0 8px;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--bg-deep);
    border-top: 2px solid transparent;
    border-image: var(--grad-brand) 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 44px 0 42px;
}

.footer-brand p {
    color: var(--text-mid);
    font-size: 0.92rem;
    max-width: 300px;
    margin-top: 14px;
}

.footer-col h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-high);
    margin: 0 0 14px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-mid);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 21px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--text-dim);
    font-size: 0.84rem;
}

.footer-bottom a {
    color: var(--text-mid);
}

.footer-bottom a:hover {
    color: var(--color-cyan);
}

.viewLine {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 6px;
}

@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* subtle animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-deck .deck-shell {
    animation: fadeUp 0.55s var(--ease) both;
}

.hero-deck .hero-head {
    animation: fadeUp 0.5s var(--ease) both 0.1s;
}

.section .section-title {
    animation: fadeUp 0.45s var(--ease) both;
}

/* accessible reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* roulang page: category1 */
:root {
  --bg-deep: #0E1420;
  --bg-body: #121A27;
  --bg-card: #151F2B;
  --bg-card-hover: #1D2A3A;
  --bg-soft: #1B2634;
  --bg-lift: #223040;
  --text-heading: #F1F7FA;
  --text-body: #B9C6D3;
  --text-muted: #6F7B8F;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --live-lime: #B4FF39;
  --signal-cyan: #29E6FF;
  --amber: #FFB800;
  --alert: #FF3B3B;
  --text-dark: #0B101A;
  --grad-main: linear-gradient(135deg, #B4FF39 0%, #29E6FF 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 12px 34px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  --shadow-pop: 0 16px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(180, 255, 57, 0.08) inset;
  --transition: all 0.25s ease;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  background: var(--bg-body);
  background-image: radial-gradient(circle at 15% 0%, rgba(41, 230, 255, 0.05), transparent 23%), radial-gradient(circle at 85% 15%, rgba(180, 255, 57, 0.04), transparent 28%);
  color: var(--text-body);
  line-height: 1.75;
  font-variant-numeric: tabular-nums;
  min-height: 100vh;
  word-break: break-word;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--live-lime);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(var(--max-width), 100% - 48px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
}

/* ------------------------------------------------------------
   Header
------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 24, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.topbar {
  max-width: var(--max-width);
  width: 100% - 48px;
  margin-inline: auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  flex-shrink: 0;
}

.brand:hover .brand-text {
  color: var(--live-lime);
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--grad-main);
  color: var(--text-dark);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand-text small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--signal-cyan);
  text-transform: uppercase;
}

.topbar-search {
  flex: 1;
  max-width: 480px;
  margin-inline: auto;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  padding-left: 16px;
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: rgba(180, 255, 57, 0.6);
  box-shadow: 0 0 0 4px rgba(180, 255, 57, 0.08);
}

.search-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  height: 46px;
  color: var(--text-heading);
  font-size: 0.94rem;
}

.search-form input::placeholder {
  color: var(--text-muted);
}

.search-form input:focus {
  outline: none;
}

.search-form button {
  width: 48px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: var(--transition);
}

.search-form button:hover,
.search-form button:focus-visible {
  color: var(--live-lime);
}

.header-cta {
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  height: 48px;
  padding: 0 24px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-main);
  color: var(--text-dark);
  border: 0;
  box-shadow: 0 8px 22px rgba(41, 230, 255, 0.14);
}

.btn--primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180, 255, 57, 0.16);
}

.btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.btn--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #D8E4F0;
  height: 46px;
}

.btn--secondary:hover {
  border-color: var(--live-lime);
  color: var(--live-lime);
  background: rgba(180, 255, 57, 0.05);
}

.btn--small {
  height: 40px;
  padding: 0 19px;
  font-size: 0.92rem;
}

.channel-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 22, 34, 0.66);
}

.channel-nav-inner {
  max-width: var(--max-width);
  width: 100% - 48px;
  margin-inline: auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.channel-nav-inner::-webkit-scrollbar {
  height: 4px;
}

.channel-nav-inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text-heading);
}

.nav-item.active {
  background: var(--grad-main);
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(41, 230, 255, 0.16);
  border-color: transparent;
}

/* ------------------------------------------------------------
   Page hero
------------------------------------------------------------ */
.page-hero {
  position: relative;
  background: linear-gradient(109deg, #0D1524 4%, rgba(18, 30, 45, 0.77) 46%, transparent 100%),
    url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
  padding: 80px 0 86px;
  overflow: hidden;
  border-bottom: 2px solid rgba(180, 255, 57, 0.24);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 35%, rgba(180, 255, 57, 0.12), transparent 34%),
    radial-gradient(circle at 94% 80%, rgba(41, 230, 255, 0.12), transparent 40%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--live-lime);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(180, 255, 57, 0.3);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--alert);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--text-heading);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.page-hero h1 .grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero .hero-lead {
  font-size: 1.15rem;
  color: #CDD8E5;
  max-width: 620px;
  margin-bottom: 18px;
}

.page-hero .hero-subline {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-size: 0.9rem;
}

.hero-stat b {
  color: var(--text-heading);
  font-size: 1.5rem;
  font-weight: 900;
}

.next-panel {
  background: rgba(18, 28, 42, 0.75);
  backdrop-filter: blur(13px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.5s both;
}

.next-panel .np-label {
  color: var(--signal-cyan);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}

.np-label::before {
  content: "";
  width: 4px;
  height: 12px;
  border-radius: 4px;
  background: var(--signal-cyan);
}

.next-panel h3 {
  color: var(--text-heading);
  font-size: 1.35rem;
  margin: 10px 0 4px;
}

.next-panel .np-date {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 18px;
  display: block;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown-item {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-align: center;
  padding: 12px 6px 10px;
}

.countdown-item strong {
  display: block;
  color: var(--live-lime);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.countdown-item span {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.next-panel .btn {
  margin-top: 18px;
  width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.4); }
  50% { opacity: 0.75; box-shadow: 0 0 0 5px rgba(255, 59, 59, 0); }
}

/* ------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------ */
.breadcrumb-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 14px 0;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb-bar a {
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb-bar a:hover {
  color: var(--live-lime);
}

.breadcrumb-bar .current {
  color: var(--text-heading);
  font-weight: 600;
}

/* ------------------------------------------------------------
   Sections
------------------------------------------------------------ */
.section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--signal-cyan);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  gap: 8px;
  margin-bottom: 8px;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-heading);
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.section-title .light-accent {
  color: var(--live-lime);
}

.section-desc {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 570px;
}

.see-all {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-body);
  height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.see-all:hover {
  border-color: var(--live-lime);
  color: var(--live-lime);
}

/* ---- break line ---- */
.break-strip {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.break-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 13px 0;
}

.break-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.break-point i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--alert);
  flex-shrink: 0;
}

.break-upcoming {
  color: var(--text-body);
  font-size: 0.9rem;
}

/* ------------------------------------------------------------
   Timeline
------------------------------------------------------------ */
.timeline-wrap {
  position: relative;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom, var(--live-lime), var(--signal-cyan), transparent);
  opacity: 0.5;
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  margin-bottom: 20px;
  position: relative;
}

.tl-clock {
  position: relative;
  z-index: 2;
  text-align: right;
  padding-top: 20px;
}

.tl-clock strong {
  color: var(--text-heading);
  font-size: 1.28rem;
  font-weight: 900;
  display: block;
  line-height: 1.1;
}

.tl-clock span {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: block;
  margin-top: 2px;
}

.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.tl-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
  border-color: rgba(180, 255, 57, 0.3);
}

.tl-cover {
  width: 112px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-lift);
}

.tl-main {
  flex: 1;
  min-width: 0;
}

.tl-main .match-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  color: var(--text-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.chip--live {
  background: rgba(255, 59, 59, 0.12);
  border-color: rgba(255, 59, 59, 0.35);
  color: #FF847C;
}

.chip--hot {
  background: rgba(255, 184, 0, 0.1);
  color: var(--amber);
  border-color: rgba(255, 184, 0, 0.22);
}

.chip--sport {
  background: rgba(41, 230, 255, 0.09);
  color: var(--signal-cyan);
  border-color: rgba(41, 230, 255, 0.16);
}

.chip--vsport {
  background: rgba(180, 255, 57, 0.1);
  color: var(--live-lime);
  border-color: rgba(180, 255, 57, 0.18);
}

.tl-main h3 {
  color: var(--text-heading);
  font-size: 1.22rem;
  font-weight: 800;
  margin: 0 0 7px;
  letter-spacing: 0.01em;
}

.tl-main p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.tl-score {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  min-width: 120px;
  text-align: center;
}

.tl-score .vs {
  font-size: 1.36rem;
  font-weight: 900;
  color: var(--text-heading);
  font-variant-numeric: tabular-nums;
}

.tl-score .live-number {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--live-lime);
}

.tl-score small {
  color: var(--text-muted);
  display: block;
  font-size: 0.8rem;
}

/* ---- events more ---- */
.event-more-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.event-mini {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.event-mini:hover {
  border-color: rgba(41, 230, 255, 0.35);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.event-mini .em-time {
  font-weight: 900;
  color: var(--text-heading);
  font-size: 1.3rem;
  min-width: 74px;
  line-height: 1.2;
}

.event-mini .em-time small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.event-mini .em-info {
  flex: 1;
  min-width: 0;
}

.event-mini .em-title {
  color: var(--text-heading);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-mini .em-sub {
  color: var(--text-muted);
  font-size: 0.83rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ------------------------------------------------------------
   Focus week cards
------------------------------------------------------------ */
/* background band */
.focus-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%),
    radial-gradient(circle at 80% 18%, rgba(180, 255, 57, 0.08), transparent 32%);
  border-block: 1px solid var(--line);
  padding: 70px 0;
  background-color: #0C121C;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cal-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  padding: 0;
}

.cal-card:hover {
  transform: translateY(-7px);
  border-color: rgba(180, 255, 57, 0.35);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-pop);
}

.cal-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0C1824;
}

.cal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cal-card:hover .cal-media img {
  transform: scale(1.06);
}

.cal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.74) 100%);
}

.cal-date {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: rgba(10, 17, 27, 0.72);
  backdrop-filter: blur(6px);
  color: var(--text-heading);
  border-radius: 999px;
  font-weight: 800;
  padding: 5px 14px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cal-top-tag {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  background: rgba(255, 59, 59, 0.68);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cal-top-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.cal-body {
  padding: 16px 17px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cal-league {
  font-size: 0.76rem;
  color: var(--signal-cyan);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cal-body h3 {
  color: var(--text-heading);
  font-size: 1.08rem;
  line-height: 1.36;
  font-weight: 800;
  margin: 0;
}

.cal-body p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
  flex: 1;
}

.cal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 4px;
}

.cal-meta .cal-channel {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.cal-arrow {
  color: var(--live-lime);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.86rem;
}

/* ------------------------------------------------------------
   Replay wide list
------------------------------------------------------------ */
.replay-section {
  padding: 70px 0;
}

.replay-list {
  display: grid;
  gap: 12px;
}

.replay-item {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  transition: var(--transition);
}

.replay-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(-4px);
}

.replay-media {
  border-radius: 13px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.replay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.replay-info {
  min-width: 0;
}

.replay-info .r-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.replay-info .r-label .ended-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
}

.replay-info h3 {
  color: var(--text-heading);
  font-size: 1.14rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.replay-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.replay-score {
  text-align: right;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--live-lime);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.replay-score span {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

/* ------------------------------------------------------------
   Subscribe / remind CTA
------------------------------------------------------------ */
.subscribe-ribbon {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(117deg, #17263B 0%, #0C1624 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  box-shadow: var(--shadow-card);
}

.subscribe-ribbon::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-main);
}

.sub-text h2 {
  color: var(--text-heading);
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 900;
}

.sub-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.remind-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 12, 21, 0.65);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
}

.remind-form:focus-within {
  border-color: var(--live-lime);
  box-shadow: 0 0 0 4px rgba(180, 255, 57, 0.1);
}

.remind-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  height: 42px;
  color: var(--text-heading);
}

.remind-form input::placeholder {
  color: #8493A6;
}

.remind-form input:focus {
  outline: none;
}

.remind-form .btn {
  height: 42px;
  border-radius: 999px;
  white-space: nowrap;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 10px;
}

/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */
.faq-section {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
  padding: 68px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 42px;
  align-items: start;
}

.faq-intro .section-title {
  font-size: 2.2rem;
}

.faq-intro p {
  margin: 12px 0 18px;
  color: var(--text-muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--bg-card-hover);
}

.faq-item[open] {
  border-color: rgba(180, 255, 57, 0.3);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  color: var(--text-heading);
  font-weight: 700;
  padding: 17px 20px;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  text-align: center;
  line-height: 30px;
  font-size: 1.5rem;
  font-weight: 400;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text-body);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--grad-main);
  border-color: transparent;
  color: var(--text-dark);
}

.faq-item .answer {
  padding: 0 20px 18px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
}

/* ------------------------------------------------------------
   Bottom CTA
------------------------------------------------------------ */
.bottom-cta {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

.bottom-cta .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  background: url('/assets/images/backpic/back-3.png') center / cover no-repeat;
  border-radius: 30px;
  padding: 62px 58px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(10, 16, 25, 0.92), rgba(13, 22, 32, 0.75));
  z-index: 0;
}

.cta-content .cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-content h2 {
  color: var(--text-heading);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-content p {
  color: var(--text-body);
  font-size: 1.08rem;
  max-width: 600px;
}

.cta-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.site-footer {
  background: #0B111A;
  margin-top: 0;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #B4FF39, #29E6FF) 1;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 54px 0 40px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  max-width: 340px;
}

.footer-col h4 {
  color: var(--text-heading);
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: var(--live-lime);
  transform: translateX(3px);
}

.footer-col a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--signal-cyan);
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-body);
}

.footer-bottom a:hover {
  color: var(--live-lime);
}

.viewLine {
  margin: 0 9px;
  color: rgba(255, 255, 255, 0.25);
}

/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero {
    padding: 58px 0 70px;
  }

  .match-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .subscribe-ribbon {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

  .topbar-search {
    order: 3;
    max-width: none;
    flex-basis: 100%;
  }

  .header-cta .btn--small {
    height: 38px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: 1.14rem;
  }

  .channel-nav-inner {
    width: 100%;
    padding-left: 4px;
    padding-right: 4px;
    scroll-snap-type: x proximity;
  }

  .nav-item {
    scroll-snap-align: start;
  }

  .section {
    padding: 50px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .timeline-wrap::before {
    left: 11px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tl-clock {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 4px 10px;
  }

  .tl-clock strong {
    font-size: 1.04rem;
  }

  .tl-card {
    flex-direction: column;
    align-items: stretch;
  }

  .tl-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .tl-score {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 12px 0 0;
    text-align: left;
    display: flex;
    gap: 12px;
  }

  .event-more-list {
    grid-template-columns: 1fr;
  }

  .replay-item {
    grid-template-columns: 1fr;
  }

  .replay-score {
    text-align: left;
  }

  .cta-content {
    padding: 34px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 30px);
  }

  .brand-text small {
    letter-spacing: 0.18em;
  }

  .page-hero {
    padding: 42px 0 54px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .page-hero .hero-actions .btn {
    width: 100%;
  }

  .match-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    gap: 7px;
  }

  .countdown-item strong {
    font-size: 1.45rem;
  }

  .subscribe-ribbon {
    padding: 26px 22px;
  }

  .remind-form {
    flex-wrap: wrap;
    border-radius: 18px;
    background: rgba(6, 12, 21, 0.4);
  }

  .remind-form input {
    width: 100%;
  }

  .remind-form .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .faq-layout .section-title {
    font-size: 1.8rem;
  }

  .cta-links .btn {
    flex: 1;
  }
}

@media (min-width: 1440px) {
  .page-hero {
    background-position: center;
  }
}

/* roulang page: article */
:root {
    --bg: #0E1420;
    --bg-soft: #0B111A;
    --surface: #151F2B;
    --surface-2: #1D2A3A;
    --surface-3: #223244;
    --text: #F1F7FA;
    --text-2: #B9C6D3;
    --text-3: #6F7B8F;
    --line: rgba(255, 255, 255, 0.08);
    --primary: #B4FF39;
    --accent: #29E6FF;
    --amber: #FFB800;
    --red: #FF3B3B;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --grad: linear-gradient(135deg, #B4FF39 0%, #29E6FF 100%);
    --shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    --font: -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
    --spacing: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16.5px;
    line-height: 1.75;
    background: var(--bg);
    background-image:
        radial-gradient(circle at top left, rgba(180, 255, 57, 0.06), transparent 35%),
        radial-gradient(circle at bottom right, rgba(41, 230, 255, 0.06), transparent 35%);
    color: var(--text-2);
    -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s, background-color .25s, border-color .25s, box-shadow .25s;
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 1rem;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 1120px;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-pill);
    padding: 14px 26px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    border: 1px solid transparent;
    line-height: 1;
    min-height: 48px;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--grad);
    color: #0B101A;
    box-shadow: 0 10px 24px rgba(180, 255, 57, .14);
}

.btn--primary:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(180, 255, 57, .22);
    color: #0B101A;
}

.btn--primary:active {
    transform: translateY(0);
    filter: brightness(.96);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .24);
    color: #D8E4F0;
}

.btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(180, 255, 57, .06);
}

.btn--small {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 14px;
}

/* ========== Header ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 20, 32, .88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.topbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: .02em;
    color: var(--text);
    flex-shrink: 0;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: var(--grad);
    color: #0B101A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(41, 230, 255, .18);
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text small {
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--accent);
    font-weight: 700;
    margin-top: 3px;
}

.topbar-search {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-form {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.search-form input {
    width: 100%;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: #FFFFFF0F;
    color: var(--text);
    padding: 11px 46px 11px 18px;
    transition: border-color .25s, background-color .25s;
}

.search-form input::placeholder {
    color: var(--text-3);
}

.search-form input:focus {
    outline: none;
    border-color: rgba(180, 255, 57, .55);
    background: #FFFFFF14;
}

.search-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .25s, background-color .25s;
}

.search-form button:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, .08);
}

.header-cta {
    flex-shrink: 0;
}

.channel-nav {
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.channel-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6px;
    padding: 10px 24px 12px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .18) transparent;
}

.channel-nav-inner::-webkit-scrollbar {
    height: 5px;
}

.channel-nav-inner::-webkit-scrollbar-track {
    background: transparent;
}

.channel-nav-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .18);
    border-radius: 12px;
}

.nav-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .07);
    color: var(--text-2);
    border-radius: var(--radius-pill);
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background-color .25s, color .25s, border-color .25s;
}

.nav-item:hover {
    background: rgba(255, 255, 255, .13);
    color: var(--text);
}

.nav-item.active {
    background: var(--grad);
    color: #0B101A;
    font-weight: 800;
}

/* ========== Page Main / Breadcrumb ========== */
.page-main {
    padding: 38px 0 60px;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-3);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--text-2);
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .sep {
    color: var(--text-3);
    opacity: .55;
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 600;
}

/* ========== Article Page ========== */
.article-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.article-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px 42px 42px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--grad);
}

.article-head {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(41, 230, 255, .1);
    border: 1px solid rgba(41, 230, 255, .35);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 18px;
}

.article-head h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.2;
    letter-spacing: .01em;
    margin-bottom: 14px;
    font-weight: 900;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--text-3);
    font-size: 13.5px;
}

.meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-3);
    opacity: .55;
}

.article-body {
    color: var(--text-2);
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: .01em;
}

.article-body > p:first-of-type {
    background: rgba(180, 255, 57, .07);
    border-left: 3px solid var(--primary);
    border-radius: 18px;
    padding: 18px 22px;
    color: #DCE8F2;
    font-size: 16.5px;
    line-height: 1.9;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 40px 0 18px;
    color: var(--text);
    padding-left: 16px;
    border-left: 4px solid var(--primary);
    border-radius: 2px;
}

.article-body h3 {
    font-size: 1.3rem;
    font-weight: 750;
    margin: 30px 0 12px;
    color: var(--text);
}

.article-body p {
    margin: 0 0 18px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 10px;
}

.article-body ul li {
    list-style: disc;
}

.article-body ol li {
    list-style: decimal;
}

.article-body a {
    color: var(--accent);
    border-bottom: 1px solid rgba(41, 230, 255, .45);
}

.article-body a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.article-body blockquote {
    background: #FFFFFF08;
    border-left: 4px solid var(--accent);
    border-radius: 0 18px 18px 0;
    padding: 18px 22px;
    color: var(--text);
    margin: 28px 0;
}

.article-body img {
    border-radius: var(--radius-md);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
    margin: 28px auto;
    width: auto;
    max-width: 100%;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: #FFFFFF06;
    border-radius: 14px;
    font-size: 15px;
}

.article-body table th,
.article-body table td {
    border: 1px solid var(--line);
    padding: 12px 14px;
    text-align: left;
}

.article-body table th {
    background: rgba(180, 255, 57, .06);
    color: var(--text);
    font-weight: 700;
}

.article-body pre {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    overflow-x: auto;
    margin: 24px 0;
}

.article-body pre code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 14px;
    color: #D8E4F0;
}

.article-body code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    background: #FFFFFF0D;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: .92em;
    color: var(--primary);
}

.article-body hr {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 34px 0;
}

/* article tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.tag {
    background: #FFFFFF0A;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    color: var(--text-2);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(180, 255, 57, .06);
}

.article-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

/* ========== Related Area ========== */
.related-area {
    margin-top: 52px;
}

.related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.related-head h2 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 4px;
}

.related-head p {
    color: var(--text-3);
    font-size: 14.5px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.media-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    transition: background .25s, border-color .25s, transform .25s;
}

.media-card:hover {
    background: var(--surface-2);
    border-color: rgba(180, 255, 57, .28);
    transform: translateY(-4px);
}

.media-card__thumb {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--surface-3);
}

.media-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card__body {
    display: block;
    padding: 14px 6px 8px;
}

.media-card__tag {
    display: inline-block;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--accent);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 12px;
}

.media-card h3 {
    font-size: 1.18rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 9px;
    color: var(--text);
}

.media-card__body p {
    color: var(--text-3);
    font-size: 13.5px;
    line-height: 1.65;
}

.media-card__more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 700;
    margin-top: 12px;
}

/* ========== Empty State ========== */
.empty-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 74px 28px;
    box-shadow: var(--shadow);
}

.empty-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 22px;
}

.empty-card h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.empty-card p {
    color: var(--text-3);
    max-width: 420px;
    margin: 0 auto 26px;
}

/* ========== Bottom Remind CTA ========== */
.quick-remind {
    margin-top: 58px;
}

.quick-remind .inner {
    max-width: 1120px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(180, 255, 57, .1), rgba(41, 230, 255, .1)), var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.quick-remind .inner::before {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    height: 3px;
    width: 160px;
    background: var(--grad);
    border-radius: 0 0 8px 0;
}

.quick-remind h2 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.quick-remind p {
    color: var(--text-2);
    font-size: 14.5px;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--bg-soft);
    border-top: 2px solid transparent;
    border-image: var(--grad) 1;
    padding: 54px 0 30px;
    margin-top: 20px;
}

.site-footer .container {
    max-width: 1200px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .brand {
    margin-bottom: 16px;
    font-size: 1.18rem;
}

.footer-brand p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.8;
    max-width: 340px;
}

.footer-col h4 {
    color: var(--text);
    font-size: 15.5px;
    font-weight: 750;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col ul li a {
    color: var(--text-2);
    font-size: 14px;
    transition: color .2s, padding-left .2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-3);
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 42px;
    padding-top: 24px;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--text-2);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.viewLine {
    margin: 0 8px;
    opacity: .35;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .topbar {
        gap: 16px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .article-card {
        padding: 32px 30px 36px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15.5px;
    }

    .page-main {
        padding: 28px 0 48px;
    }

    .topbar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 16px;
    }

    .topbar-search {
        order: 3;
        flex: 1 1 100%;
    }

    .search-form {
        max-width: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .channel-nav-inner {
        padding: 8px 16px 10px;
    }

    .article-card {
        padding: 24px 20px 30px;
        border-radius: 20px;
    }

    .article-head h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .article-body {
        font-size: 16px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .quick-remind .inner {
        padding: 27px 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .empty-card {
        padding: 52px 20px;
    }
}

@media (max-width: 520px) {
    .brand-text {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 9px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .btn--small {
        min-height: 36px;
        padding: 8px 16px;
        font-size: 13px;
    }

    .nav-item {
        padding: 7px 14px;
        font-size: 13px;
    }

    .page-main {
        padding-top: 22px;
    }

    .breadcrumb {
        padding-left: 4px;
    }

    .article-card {
        border-radius: 18px;
    }

    .article-card::before {
        width: 3px;
    }

    .article-head h1 {
        font-size: 1.6rem;
    }

    .article-body {
        font-size: 16px;
        line-height: 1.82;
    }

    .article-tags {
        gap: 8px;
    }

    .tag {
        padding: 5px 12px;
        font-size: 12px;
    }

    .article-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .article-actions .btn {
        width: 100%;
    }

    .quick-remind .inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-remind .btn {
        width: 100%;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* roulang page: category2 */
:root {
  --bg: #0e1420;
  --bg-deep: #0b111a;
  --bg-soft: #151f2b;
  --card: #151f2b;
  --card-highlight: #1d2a3a;
  --text: #f1f7fa;
  --text-2: #b9c6d3;
  --text-3: #6f7b8f;
  --border: rgba(255, 255, 255, 0.08);
  --neon: #b4ff39;
  --cyan: #29e6ff;
  --amber: #ffb800;
  --red: #ff3b3b;
  --grad: linear-gradient(135deg, #b4ff39 0%, #29e6ff 100%);
  --radius-xl: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

button,
input {
  font: inherit;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.sec {
  padding: 72px 0;
}

.sec--soft {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sec-header {
  max-width: 820px;
  margin-bottom: 36px;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 14px;
  border: 1px solid rgba(180, 255, 57, 0.3);
  border-radius: 999px;
  background: rgba(180, 255, 57, 0.06);
}

.sec-title {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.sec-desc {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 760px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), filter var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--grad);
  color: #0b101a;
  box-shadow: 0 8px 20px rgba(41, 230, 255, 0.16), 0 4px 14px rgba(180, 255, 57, 0.12);
}

.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(180, 255, 57, 0.22), 0 8px 20px rgba(41, 230, 255, 0.22);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #d8e4f0;
}

.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 0 1px rgba(180, 255, 57, 0.2);
}

.btn--small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.btn .btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--neon);
  border: 1px solid rgba(180, 255, 57, 0.35);
  background: rgba(180, 255, 57, 0.08);
  white-space: nowrap;
}

.badge--cyan {
  color: var(--cyan);
  border-color: rgba(41, 230, 255, 0.3);
  background: rgba(41, 230, 255, 0.08);
}

.badge--muted {
  color: var(--text-3);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.badge--done {
  color: var(--amber);
  border-color: rgba(255, 184, 0, 0.32);
  background: rgba(255, 184, 0, 0.08);
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
  animation: pulseRed 1.6s infinite;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 6px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 20, 32, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--text);
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(11, 17, 26, 0.6);
  border: 1px solid rgba(180, 255, 57, 0.4);
  color: var(--neon);
  box-shadow: 0 0 18px rgba(180, 255, 57, 0.14);
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--cyan);
  font-weight: 600;
  margin-top: 3px;
}

.topbar-search {
  flex: 1;
  max-width: 440px;
  margin: 0 auto;
}

.search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  transition: border-color var(--transition), background var(--transition);
}

.search-form:focus-within {
  border-color: rgba(180, 255, 57, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.search-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 14px;
  min-width: 0;
}

.search-form input:focus {
  outline: none;
}

.search-form input::placeholder {
  color: var(--text-3);
}

.search-form button {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--grad);
  color: #0b101a;
  cursor: pointer;
  transition: filter var(--transition);
}

.search-form button:hover {
  filter: brightness(1.1);
}

.header-cta {
  flex-shrink: 0;
}

.channel-nav {
  background: rgba(11, 17, 26, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.channel-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  padding: 8px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.channel-nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav-item svg {
  width: 15px;
  height: 15px;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.nav-item.active {
  background: var(--grad);
  color: #0b101a;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(180, 255, 57, 0.24);
}

/* hero */
.category-hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(180, 255, 57, 0.12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(41, 230, 255, 0.14), transparent 32%),
    linear-gradient(rgba(14, 20, 32, 0.75), rgba(14, 20, 32, 0.9)),
    url('/assets/images/backpic/back-2.webp');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.category-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0 100px, rgba(255, 255, 255, 0.03) 100px 101px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-2);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--neon);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--text);
  font-weight: 600;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-2);
}

.hero-kicker .word {
  color: var(--neon);
}

.category-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 18px;
  color: #fff;
}

.category-hero h1 .gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 660px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(21, 31, 43, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.stat-card:hover {
  background: var(--card-highlight);
  border-color: rgba(180, 255, 57, 0.26);
  transform: translateY(-4px);
}

.stat-card small {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 10px;
}

.stat-card strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--neon);
  display: inline-block;
  margin-right: 6px;
  letter-spacing: -0.02em;
}

.stat-card em {
  font-style: normal;
  font-size: 14px;
  color: var(--text-2);
}

/* card stream / masonry */
.masonry-wrap {
  columns: 3 280px;
  column-gap: 22px;
}

.masonry-card {
  break-inside: avoid;
  margin: 0 0 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.masonry-card:hover {
  transform: translateY(-6px);
  background: var(--card-highlight);
  border-color: rgba(180, 255, 57, 0.3);
  box-shadow: var(--shadow);
}

.masonry-card .media {
  position: relative;
  overflow: hidden;
}

.masonry-card .media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masonry-card:hover .media img {
  transform: scale(1.03);
}

.media-tag {
  position: absolute;
  left: 14px;
  top: 14px;
}

.duration-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 4px 10px;
  background: rgba(11, 17, 26, 0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
  backdrop-filter: blur(4px);
}

.masonry-content {
  padding: 18px 20px 22px;
}

.masonry-content h3 {
  font-size: 1.22rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.masonry-content h3 a {
  transition: color var(--transition);
}

.masonry-content h3 a:hover {
  color: var(--neon);
}

.masonry-content p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.masonry-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}

.masonry-meta a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--neon);
}

.masonry-meta a svg {
  width: 15px;
  height: 15px;
}

.data-mini-list {
  margin-top: 14px;
  list-style: none;
}

.data-mini-list li {
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
}

.data-mini-list li:last-child {
  border-bottom: 0;
}

.data-mini-list strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.data-mini-list .up {
  color: var(--neon);
}

.data-mini-list .down {
  color: var(--cyan);
}

/* process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  background: var(--card-highlight);
  border-color: rgba(41, 230, 255, 0.28);
}

.step-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(180, 255, 57, 0.1);
  border: 1px solid rgba(180, 255, 57, 0.22);
  color: var(--neon);
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-2);
  font-size: 0.95rem;
}

/* fixture card */
.fixture-strip {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.fixture-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(41, 230, 255, 0.08), transparent 36%),
    radial-gradient(circle at 10% 80%, rgba(180, 255, 57, 0.08), transparent 32%);
  pointer-events: none;
}

.fixture-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.fixture-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.fixture-card .fixture-head {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.fixture-card .fixture-head h3 {
  font-size: 1.2rem;
}

.fixture-card .fixture-head a {
  font-size: 13px;
  color: var(--neon);
  transition: opacity var(--transition);
}

.fixture-card .fixture-head a:hover {
  opacity: 0.75;
}

.fixture-body {
  padding: 14px 16px 18px;
}

.fixture-match {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.fixture-match:last-child {
  border-bottom: 0;
}

.fixture-match:hover {
  background: rgba(255, 255, 255, 0.04);
}

.fixture-match .ftime {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

.fixture-match .ftime strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.fixture-match .teams {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
}

.fixture-match .teams em {
  font-style: normal;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 400;
}

.fixture-match .badge {
  font-size: 12px;
  padding: 4px 10px;
}

/* scene rows */
.scene-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scene-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.scene-row:hover {
  transform: translateY(-4px);
  background: var(--card-highlight);
  border-color: rgba(180, 255, 57, 0.25);
}

.scene-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(41, 230, 255, 0.08);
  border: 1px solid rgba(41, 230, 255, 0.2);
  color: var(--cyan);
}

.scene-row h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.scene-row p {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* faq */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
  overflow: hidden;
  transition: background var(--transition);
}

.faq-item:hover {
  background: var(--card-highlight);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(180, 255, 57, 0.3);
  background: rgba(180, 255, 57, 0.05);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: rgba(180, 255, 57, 0.14);
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--text-2);
  line-height: 1.8;
  font-size: 0.96rem;
}

/* bottom cta */
.cta-banner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(180, 255, 57, 0.12), transparent 36%),
    radial-gradient(circle at 80% 60%, rgba(41, 230, 255, 0.13), transparent 42%),
    var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 44px;
  overflow: hidden;
}

.cta-banner .cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-2);
  margin-bottom: 24px;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* footer */
.site-footer {
  background: #0b111a;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--neon), var(--cyan)) 1;
}

.site-footer .container {
  padding-top: 48px;
  padding-bottom: 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--text-2);
  font-size: 0.95rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul a:hover {
  color: var(--neon);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--text-3);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text-2);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--neon);
}

.footer-bottom .viewLine {
  margin: 0 8px;
  opacity: 0.4;
}

/* responsive */
@media (max-width: 900px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fixture-layout {
    grid-template-columns: 1fr;
  }

  .scene-list {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .brand-text {
    font-size: 18px;
  }

  .topbar-search {
    order: 3;
    max-width: none;
    flex-basis: 100%;
  }

  .header-cta .btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
  }

  .category-hero {
    padding: 40px 0 64px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sec {
    padding: 54px 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand-text {
    font-size: 17px;
  }

  .brand-text small {
    font-size: 9px;
  }

  .channel-nav-inner {
    padding: 8px 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .stat-card {
    padding: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 28px 24px;
  }

  .scene-row {
    padding: 18px;
    flex-direction: column;
  }

  .fixture-match {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fixture-match .badge {
    align-self: flex-start;
  }

  .faq-item summary {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* roulang page: category3 */
:root {
            --bg: #12171d;
            --bg-soft: #171e27;
            --bg-deep: #0b111a;
            --panel: #151f2b;
            --panel-2: #1b2838;
            --panel-hover: #223043;
            --line: rgba(255, 255, 255, 0.09);
            --line-strong: rgba(255, 255, 255, 0.17);
            --title: #f2f7f5;
            --text: #bcc9d2;
            --muted: #708096;
            --green: #b4ff39;
            --cyan: #29e6ff;
            --amber: #ffb800;
            --danger: #ff4b5c;
            --brand-grad: linear-gradient(135deg, #b4ff39 0%, #29e6ff 100%);
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-pill: 999px;
            --shadow: 0 18px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
            --container: 1200px;
            --side: 24px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
            background:
                radial-gradient(circle at 12% 8%, rgba(180, 255, 57, 0.04), transparent 32%),
                radial-gradient(circle at 88% 30%, rgba(41, 230, 255, 0.04), transparent 30%),
                var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul,
        ol {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--title);
            letter-spacing: 0.01em;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0;
        }

        h1 {
            font-size: clamp(2.1rem, 5vw, 3.5rem);
            margin-bottom: 14px;
        }

        h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            margin-bottom: 16px;
        }

        h3 {
            font-size: 1.2rem;
        }

        p {
            margin: 0 0 1em;
        }

        button,
        input {
            font-family: inherit;
            font-size: 1rem;
        }

        button {
            cursor: pointer;
        }

        :focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
            border-radius: 6px;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding-left: var(--side);
            padding-right: var(--side);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius-pill);
            min-height: 48px;
            padding: 0 24px;
            border: 1px solid transparent;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
            white-space: nowrap;
        }

        .btn--primary {
            background: linear-gradient(135deg, #d0ff5a 0%, #7dffff 100%);
            color: #0b101a;
        }

        .btn--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(180, 255, 57, 0.3);
            filter: brightness(1.06);
        }

        .btn--ghost {
            background: transparent;
            color: var(--title);
            border-color: var(--line-strong);
        }

        .btn--ghost:hover {
            border-color: var(--green);
            color: var(--green);
            transform: translateY(-2px);
        }

        .btn--small {
            min-height: 38px;
            padding: 0 18px;
            font-size: 0.87rem;
        }

        /* ---------- header ---------- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            backdrop-filter: blur(16px);
            background: rgba(14, 20, 32, 0.9);
            border-bottom: 1px solid var(--line);
        }

        .topbar {
            max-width: var(--container);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 10px var(--side);
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--title);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .brand-icon {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            color: #0b101a;
            background: var(--brand-grad);
            box-shadow: 0 8px 24px rgba(180, 255, 57, 0.2);
        }

        .brand-text small {
            display: block;
            font-size: 0.62rem;
            font-weight: 700;
            color: var(--green);
            letter-spacing: 0.24em;
            line-height: 1;
        }

        .topbar-search {
            flex: 1;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-form {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--line);
            border-radius: var(--radius-pill);
            padding: 0 6px 0 16px;
            height: 42px;
            color: var(--muted);
        }

        .search-form:focus-within {
            border-color: var(--green);
            background: rgba(255, 255, 255, 0.1);
        }

        .search-form input {
            flex: 1;
            min-width: 0;
            background: transparent;
            border: 0;
            outline: 0;
            color: var(--title);
            height: 100%;
            font-size: 0.94rem;
        }

        .search-form input::placeholder {
            color: var(--muted);
        }

        .search-form button {
            width: 34px;
            height: 34px;
            border: 0;
            border-radius: 50%;
            background: transparent;
            color: var(--green);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .search-form button:hover {
            background: rgba(180, 255, 57, 0.16);
        }

        .header-cta {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .channel-nav {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .channel-nav-inner {
            max-width: var(--container);
            margin: 0 auto;
            display: flex;
            gap: 8px;
            padding: 8px var(--side);
            overflow-x: auto;
            scrollbar-width: none;
        }

        .channel-nav-inner::-webkit-scrollbar {
            display: none;
        }

        .nav-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding: 7px 16px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.03);
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.25s ease;
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--title);
        }

        .nav-item.active {
            background: var(--brand-grad);
            color: #0b101a;
            font-weight: 700;
            box-shadow: 0 6px 18px rgba(180, 255, 57, 0.2);
        }

        /* ---------- breadcrumb ---------- */
        .crumb-wrap {
            background: rgba(255, 255, 255, 0.03);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid var(--line);
        }

        .crumb-list {
            max-width: var(--container);
            margin: 0 auto;
            padding: 12px var(--side);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.86rem;
            color: var(--muted);
        }

        .crumb-list a {
            color: var(--text);
            transition: color 0.2s ease;
        }

        .crumb-list a:hover {
            color: var(--green);
        }

        .crumb-list .current {
            color: var(--title);
        }

        /* ---------- page banner ---------- */
        .page-banner {
            position: relative;
            isolation: isolate;
            background: var(--bg-deep);
            background-position: center center;
            background-size: cover;
            border-bottom: 1px solid var(--line);
            overflow: hidden;
        }

        .page-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background-image:
                radial-gradient(circle at 22% 15%, rgba(180, 255, 57, 0.14), transparent 32%),
                radial-gradient(circle at 84% 35%, rgba(41, 230, 255, 0.13), transparent 36%);
            mix-blend-mode: screen;
        }

        .page-banner::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            background: linear-gradient(115deg, rgba(10, 14, 22, 0.92) 4%, rgba(12, 17, 25, 0.66) 55%, rgba(11, 16, 24, 0.93) 100%);
        }

        .page-banner .container {
            padding-top: 76px;
            padding-bottom: 72px;
            display: grid;
            gap: 18px;
        }

        .page-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            border-radius: 999px;
            border: 1px solid rgba(180, 255, 57, 0.35);
            color: var(--green);
            background: rgba(180, 255, 57, 0.08);
            font-size: 0.88rem;
            letter-spacing: 0.1em;
            font-weight: 600;
            padding: 6px 14px 6px 10px;
        }

        .page-eyebrow::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--danger);
            animation: pulseDot 1.5s infinite;
        }

        @keyframes pulseDot {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.7); opacity: 0.6; }
            100% { transform: scale(1); opacity: 1; }
        }

        .page-h1 {
            color: #f4f9f7;
            max-width: 780px;
        }

        .page-h1 em {
            font-style: normal;
            background: linear-gradient(135deg, var(--green), var(--cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .page-lead {
            max-width: 680px;
            font-size: 1.06rem;
            color: #c6d3da;
            margin-bottom: 10px;
        }

        .banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 6px;
        }

        .banner-proof {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            margin-top: 22px;
        }

        .proof-item {
            display: flex;
            gap: 9px;
            align-items: center;
            color: #b9c9d2;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 7px 14px;
        }

        .proof-item i {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 4px rgba(180, 255, 57, 0.12);
        }

        /* ---------- sections ---------- */
        .page-section {
            padding: 72px 0 24px;
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 27px;
        }

        .section-head h2 {
            margin-bottom: 4px;
        }

        .section-head p {
            margin-bottom: 0;
            max-width: 620px;
            color: var(--muted);
        }

        .section-kicker {
            display: block;
            color: var(--green);
            font-size: 0.9rem;
            letter-spacing: 0.08em;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        /* watch list wide rows */
        .watch-list {
            display: grid;
            gap: 14px;
        }

        .watch-row {
            background: var(--panel);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            display: grid;
            grid-template-columns: 150px 82px minmax(0, 1fr) auto;
            align-items: center;
            gap: 22px;
            transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
        }

        .watch-row:hover {
            background: var(--panel-hover);
            border-color: rgba(180, 255, 57, 0.28);
            transform: translateY(-2px);
        }

        .watch-row:before {
            content: "";
            width: 4px;
            height: calc(100% - 36px);
            border-radius: 3px;
            position: absolute;
            left: 0;
            top: 18px;
            background: linear-gradient(135deg, var(--green), var(--cyan));
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .watch-time {
            display: flex;
            flex-direction: column;
            font-size: 0.85rem;
            line-height: 1.3;
            color: var(--muted);
        }

        .watch-time strong {
            font-family: "SF Mono", "JetBrains Mono", Consolas, monospace;
            font-variant-numeric: tabular-nums;
            font-size: 1.7rem;
            color: var(--title);
            letter-spacing: 0.03em;
            margin-top: 4px;
        }

        .watch-status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            width: fit-content;
            border-radius: 999px;
            padding: 5px 12px;
            font-size: 0.8rem;
            font-weight: 700;
            border: 1px solid var(--line);
            color: #d5e0e8;
            background: rgba(255, 255, 255, 0.05);
            white-space: nowrap;
        }

        .watch-status.live {
            color: #ff7580;
            border-color: rgba(255, 75, 92, 0.45);
            background: rgba(255, 75, 92, 0.1);
        }

        .watch-status.has-replay {
            color: var(--cyan);
            border-color: rgba(41, 230, 255, 0.38);
            background: rgba(41, 230, 255, 0.1);
        }

        .watch-status.remind {
            color: var(--green);
            border-color: rgba(180, 255, 57, 0.43);
            background: rgba(180, 255, 57, 0.1);
        }

        .watch-status i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
        }

        .watch-body h3 {
            font-size: 1.12rem;
            margin-bottom: 6px;
        }

        .watch-body p {
            color: var(--muted);
            font-size: 0.94rem;
            margin-bottom: 0;
            line-height: 1.5;
        }

        .watch-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: flex-end;
        }

        .watch-meta .mini-tag {
            font-size: 0.78rem;
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 3px 8px;
            color: var(--muted);
            background: rgba(255, 255, 255, 0.02);
        }

        .watch-meta .mini-tag.hot {
            color: var(--amber);
            border-color: rgba(255, 184, 0, 0.38);
        }

        /* guide tip cards */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .guide-card {
            background: var(--panel);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            transition: all 0.25s ease;
        }

        .guide-card:hover {
            background: var(--panel-hover);
            transform: translateY(-3px);
            border-color: rgba(41, 230, 255, 0.35);
        }

        .guide-icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #102013;
            background: linear-gradient(135deg, var(--green), var(--cyan));
            font-weight: 800;
            font-size: 1.25rem;
            margin-bottom: 22px;
        }

        .guide-card h3 {
            font-size: 1.02rem;
            margin-bottom: 8px;
        }

        .guide-card p {
            font-size: 0.92rem;
            color: var(--muted);
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            counter-reset: stepsCount;
        }

        .step-item {
            position: relative;
            counter-increment: stepsCount;
            background: var(--panel);
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            padding: 30px 24px 24px;
        }

        .step-item::after {
            content: counter(stepsCount, decimal-leading-zero);
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 3.1rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            line-height: 1;
            pointer-events: none;
        }

        .step-item:hover {
            background: var(--panel-hover);
            border-color: rgba(255, 255, 255, 0.16);
        }

        .step-dot {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(180, 255, 57, 0.1);
            color: var(--green);
            font-weight: 800;
            border: 1px solid rgba(180, 255, 57, 0.22);
            margin-bottom: 18px;
        }

        .step-item h3 {
            font-size: 1.06rem;
            margin-bottom: 8px;
        }

        .step-item p {
            color: var(--muted);
            font-size: 0.93rem;
            margin-bottom: 0;
        }

        /* device section */
        .device-scene {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .device-card {
            background: var(--panel);
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            transition: all 0.25s ease;
        }

        .device-card:hover {
            background: var(--panel-hover);
            border-color: rgba(180, 255, 57, 0.3);
            transform: translateY(-3px);
        }

        .device-pic {
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .device-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .device-card:hover .device-pic img {
            transform: scale(1.04);
        }

        .device-body {
            padding: 18px 18px 22px;
        }

        .device-body h3 {
            font-size: 1.05rem;
            margin-bottom: 5px;
        }

        .device-body p {
            color: var(--muted);
            font-size: 0.91rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* cta panel */
        .memo-panel {
            margin-top: 28px;
            background: linear-gradient(135deg, rgba(180, 255, 57, 0.14), rgba(41, 230, 255, 0.09)), var(--panel);
            border: 1px solid rgba(180, 255, 57, 0.22);
            border-radius: var(--radius-lg);
            padding: 34px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .memo-label {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--green);
            font-weight: 800;
            letter-spacing: 0.14em;
            font-size: 0.9rem;
            margin-bottom: 6px;
        }

        .memo-label span {
            display: inline-block;
            width: 37px;
            height: 37px;
            border-radius: 50%;
            background: var(--brand-grad);
            color: #0b101a;
            text-align: center;
            line-height: 37px;
            font-weight: 900;
            letter-spacing: 0;
        }

        .memo-panel .memo-title {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-bottom: 4px;
        }

        .memo-panel p {
            margin-bottom: 0;
            color: #c2d0db;
        }

        .memo-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .memo-form input {
            border: 1px solid var(--line);
            background: rgba(0, 0, 0, 0.35);
            color: var(--title);
            height: 50px;
            border-radius: 999px;
            padding: 0 18px;
            min-width: 240px;
        }

        .memo-form input::placeholder {
            color: var(--muted);
        }

        .memo-form input:focus {
            outline: none;
            border-color: var(--green);
        }

        /* faq */
        .faq-list {
            display: grid;
            gap: 10px;
            margin-bottom: 28px;
        }

        .faq-item {
            background: var(--panel);
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.25s ease;
        }

        .faq-item[open] {
            border-color: rgba(180, 255, 57, 0.26);
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            cursor: pointer;
            color: var(--title);
            font-weight: 600;
            list-style: none;
            letter-spacing: 0.01em;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            font-size: 1.8rem;
            line-height: 1;
            color: var(--green);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item .faq-body {
            padding: 0 22px 22px;
            color: var(--muted);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 2px;
            font-size: 0.95rem;
        }

        .faq-item .faq-body p {
            margin-top: 12px;
        }

        /* in-page banner strip */
        .note-banner {
            background: var(--panel);
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            display: grid;
            grid-template-columns: 340px 1fr;
            overflow: hidden;
            margin-bottom: 22px;
        }

        .note-banner .note-img {
            background: #1e2834;
            position: relative;
            padding: 0;
        }

        .note-banner .note-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 220px;
        }

        .note-banner .note-content {
            padding: 28px;
        }

        .note-banner .note-content h3 {
            font-size: 1.3rem;
            margin-bottom: 14px;
        }

        .note-banner .note-content p {
            color: var(--muted);
        }

        .note-banner .notes {
            padding-left: 0;
            margin: 12px 0 0;
            display: grid;
            gap: 8px;
        }

        .note-banner .notes li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: var(--text);
            font-size: 0.95rem;
        }

        .notes .note-tick {
            color: var(--green);
            font-weight: 800;
        }

        /* final cta */
        .final-cta {
            margin: 20px 0 64px;
            background:
                radial-gradient(circle at 15% 0%, rgba(180, 255, 57, 0.16), transparent 32%),
                radial-gradient(circle at 85% 80%, rgba(41, 230, 255, 0.15), transparent 30%),
                #0c131d;
            border: 1px solid rgba(180, 255, 57, 0.2);
            border-radius: 26px;
            padding: 44px 38px;
            text-align: center;
        }

        .final-cta h2 {
            margin-bottom: 10px;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
        }

        .final-cta .cta-desc {
            color: var(--muted);
            max-width: 660px;
            margin: 0 auto 24px;
        }

        .final-cta .actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* footer */
        .site-footer {
            background: var(--bg-deep);
            border-top: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--green), var(--cyan), transparent) 1;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .site-footer .container {
            padding-top: 48px;
            padding-bottom: 24px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 36px;
            padding-bottom: 32px;
        }

        .footer-brand .brand {
            margin-bottom: 14px;
            color: var(--title);
        }

        .footer-brand p {
            margin: 0;
            max-width: 420px;
            line-height: 1.8;
        }

        .footer-col h4 {
            font-size: 0.98rem;
            color: var(--title);
            margin: 4px 0 16px;
        }

        .footer-col ul {
            display: grid;
            gap: 9px;
        }

        .footer-col ul a {
            transition: color 0.2s ease;
        }

        .footer-col ul a:hover {
            color: var(--green);
        }

        .footer-bottom {
            border-top: 1px solid var(--line);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .footer-bottom a {
            color: var(--text);
        }

        .footer-bottom .viewLine {
            margin: 0 6px;
            opacity: 0.3;
        }

        /* animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-banner .container>* {
            animation: fadeUp 0.55s both;
        }

        .page-banner .container>*:nth-child(1) { animation-delay: 0.05s; }
        .page-banner .container>*:nth-child(2) { animation-delay: 0.15s; }
        .page-banner .container>*:nth-child(3) { animation-delay: 0.25s; }
        .page-banner .container>*:nth-child(4) { animation-delay: 0.35s; }
        .page-banner .container>*:nth-child(5) { animation-delay: 0.45s; }

        /* responsive */
        @media (max-width: 1024px) {
            .guide-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: 1fr 1fr;
            }

            .device-scene {
                grid-template-columns: 1fr;
            }

            .device-scene .device-pic {
                aspect-ratio: 16 / 7;
            }

            .watch-row {
                grid-template-columns: 110px 80px 1fr;
            }

            .watch-meta {
                grid-column: 2 / 4;
                justify-content: flex-start;
            }

            .note-banner {
                grid-template-columns: 270px 1fr;
            }

            .footer-top {
                grid-template-columns: 1.4fr 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .topbar {
                flex-wrap: wrap;
                row-gap: 8px;
            }

            .topbar-search {
                order: 3;
                max-width: 100%;
                flex-basis: 100%;
            }

            .page-banner .container {
                padding-top: 44px;
                padding-bottom: 44px;
            }

            .watch-row {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 18px 16px;
            }

            .watch-meta {
                grid-column: 1;
                justify-content: flex-start;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .section-head {
                display: block;
            }

            .note-banner {
                grid-template-columns: 1fr;
            }

            .note-banner .note-img img {
                min-height: 180px;
                aspect-ratio: 16 / 8;
            }

            .memo-panel {
                padding: 24px;
            }

            .memo-form input {
                width: 100%;
                min-width: 0;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            :root {
                --side: 16px;
            }

            .brand-text {
                font-size: 1.08rem;
            }

            .channel-nav-inner {
                overflow-x: auto;
            }

            .page-banner .container {
                padding-top: 36px;
                padding-bottom: 38px;
            }

            .page-lead {
                font-size: 1rem;
            }

            .page-section {
                padding-top: 52px;
            }

            .guide-grid {
                grid-template-columns: 1fr;
            }

            .device-scene .device-pic {
                aspect-ratio: 16 / 10;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .final-cta {
                padding: 30px 20px;
            }

            .final-cta .btn,
            .memo-form .btn {
                width: 100%;
            }
        }
