/* roulang page: index */
:root {
    --bg-page: #F5F0E9;
    --bg-section: #FFFFFF;
    --bg-dark: #1B1216;
    --bg-dark2: #24161C;
    --ink: #241C1E;
    --ink-soft: #4A3E39;
    --ink-secondary: #5C4F4A;
    --ink-ghost: #8F8179;
    --line: #E6DDD3;
    --line-deep: #D9CEC4;
    --primary-rose: #A22138;
    --primary-scarlet: #D8433D;
    --primary-ember: #EE8B42;
    --accent-gold: #F5B544;
    --grad-brand: linear-gradient(135deg, #4B1626 0%, #A22138 36%, #D8433D 68%, #F5B544 120%);
    --grad-deep: linear-gradient(135deg, #2A1519 0%, #401B20 70%, #5C2A2C 120%);
    --glow: #FFC26A;
    --shadow-card: 0 10px 30px rgba(72, 34, 30, 0.08);
    --shadow-card-hover: 0 22px 44px rgba(52, 26, 20, 0.16);
    --shadow-glow: 0 0 22px rgba(255, 194, 106, 0.25);
    --radius-sm: 10px;
    --radius-card: 20px;
    --radius-hero: 28px;
    --radius-pill: 999px;
    --font-cn: "Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,-apple-system,"Segoe UI",sans-serif;
    --font-num: "DIN Alternate","Bahnschrift","Roboto Condensed","Arial Narrow",sans-serif;
    --container: 1280px;
    --space-section: 104px;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg-page);
    color: var(--ink);
    font-family: var(--font-cn);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}
button, input {
    font: inherit;
    color: inherit;
}
button {
    cursor: pointer;
    border: 0;
    background: none;
    padding: 0;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1, h2, h3, h4, p {
    margin-top: 0;
}
:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.btn {
    min-height: 48px;
    padding: 0 28px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    border: 1.5px solid transparent;
    transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, filter .25s ease;
}
.btn-primary {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(162, 33, 56, 0.22);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #681a2b 0%, #b92c41 40%, #e34a3c 70%, #ffc86b 130%);
    box-shadow: 0 0 24px rgba(255, 194, 106, 0.3), 0 14px 30px rgba(93, 25, 32, 0.25);
    transform: translateY(-2px);
}
.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(162, 33, 56, 0.18);
}
.btn-outline {
    background: rgba(255,255,255,0.08);
    border-color: rgba(245, 181, 68, 0.75);
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(245,181,68,0.14);
    box-shadow: var(--shadow-glow);
}
.btn-light {
    background: #fff;
    color: var(--primary-rose);
}
.btn-light:hover {
    background: #fff4e2;
    box-shadow: var(--shadow-card-hover);
}
.btn-dark {
    background: var(--bg-dark);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
}
.btn-dark:hover {
    background: #2e1f26;
    box-shadow: var(--shadow-card-hover);
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: rgba(162,33,56,.08);
    color: var(--primary-rose);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.tag-gold {
    background: rgba(245,181,68,.16);
    color: #9c6a13;
}
.tag-dark {
    background: rgba(27,18,22,.08);
    color: var(--ink-soft);
}
.section {
    padding: var(--space-section) 0;
}
.section-head {
    max-width: 820px;
    margin-bottom: 44px;
}
.section-head h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 14px;
}
.section-head h2 span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-head p {
    color: var(--ink-secondary);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 0;
}
/* header top */
.site-header {
    position: relative;
    z-index: 100;
}
.header-top {
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.62);
    font-size: 13px;
    min-height: 34px;
}
.header-top .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 34px;
    text-align: center;
}
.header-top .top-mark {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--glow);
}
/* navigation */
.nav-outer {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(27,18,22,.96);
    border-top: 1.5px solid transparent;
    border-image: var(--grad-brand) 1;
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .01em;
    white-space: nowrap;
}
.nav-brand .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffe5b8;
    box-shadow: 0 0 16px rgba(255, 194, 106, .28);
    flex-shrink: 0;
    font-weight: 800;
}
.nav-brand:hover .brand-mark {
    box-shadow: 0 0 26px rgba(255, 194, 106, .5);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 72px;
    padding: 0 18px;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    border-bottom: 2px solid transparent;
}
.nav-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 14px rgba(255,209,130,.65);
}
.nav-link.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 209, 130, .66);
}
.nav-menu .nav-cta {
    margin-left: 12px;
}
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.03);
}
.mobile-drawer {
    display: none;
}
/* hero */
.hero-zone {
    padding: 22px 20px 0;
}
.hero-cover {
    position: relative;
    min-height: min(720px, 92vh);
    background: linear-gradient(135deg, #42353B, #1E1518) center center / cover no-repeat;
    border-radius: var(--radius-hero);
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(51, 28, 24, .18);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/backpic/back-1.png');
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
}
.hero-cover:hover .hero-bg {
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(19,10,12,.92) 0%, rgba(40,15,20,.72) 48%, rgba(88,28,34,.36) 100%), linear-gradient(0deg, rgba(9,5,6,.62) 4%, transparent 44%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    padding: 96px 0 110px;
    width: 100%;
}
.hero-copy {
    max-width: 720px;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 36px;
    padding: 0 16px;
    background: rgba(255,240,215,.1);
    border: 1px solid rgba(245,181,68,.55);
    border-radius: var(--radius-pill);
    color: #ffdc96;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--glow);
}
.hero-copy h1 {
    color: #fff;
    font-size: clamp(34px, 5.4vw, 56px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: .01em;
    margin-bottom: 22px;
    text-shadow: 0 4px 22px rgba(30,8,12,.18);
}
.hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.95;
    max-width: 620px;
    margin-bottom: 34px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.hero-badge-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 250px;
    position: relative;
}
.metric-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(27,18,22,.62);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    min-height: 66px;
    transition: border-color .2s ease, background .2s ease;
}
.metric-pill:hover {
    border-color: rgba(245,181,68,.46);
    background: rgba(44,24,30,.72);
}
.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245,181,68,.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.metric-text {
    flex: 1;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.4;
}
.metric-text .num {
    display: block;
    color: #fff;
    font-family: var(--font-num);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.1;
    margin-top: 2px;
}
.metric-text .num.demo {
    color: var(--accent-gold);
}
.hero-note {
    position: absolute;
    right: 24px;
    bottom: 26px;
    color: rgba(255,255,255,.46);
    font-size: 13px;
    z-index: 4;
}
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.42);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    transition: color .2s ease;
    background: rgba(20,12,14,.4);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}
.scroll-hint:hover {
    color: var(--accent-gold);
}
.scroll-hint svg {
    animation: floatDown 1.8s infinite ease;
}
@keyframes floatDown {
    0%,100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}
/* countdown */
.countdown-section {
    padding: 80px 0 40px;
}
.countdown-card {
    background: #fffdf9;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 44px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.countdown-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: var(--grad-brand);
}
.countdown-card h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 8px;
}
.countdown-intro {
    color: var(--ink-secondary);
    max-width: 600px;
    margin: 0 auto 34px;
    font-size: 16px;
}
.timer-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.timer-cell {
    flex: 1 1 110px;
    max-width: 156px;
    background: var(--bg-dark);
    border-radius: 18px;
    padding: 20px 14px 18px;
    color: #fff;
    box-shadow: 0 12px 28px rgba(35, 15, 18, .12);
}
.timer-cell .number {
    display: block;
    font-family: var(--font-num);
    font-size: clamp(38px, 6vw, 58px);
    font-weight: 700;
    line-height: 1;
    color: #fff;
    letter-spacing: .02em;
}
.timer-cell .caption {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    letter-spacing: .22em;
    font-weight: 600;
}
.timer-footer {
    margin-top: 30px;
    font-size: 13px;
    color: var(--ink-ghost);
}
/* watcher */
.watchlist-section {
    padding: 40px 0 0;
}
.watch-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}
.watch-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: stretch;
}
.watch-no {
    text-align: right;
    color: rgba(162,33,56,.7);
    font-family: var(--font-num);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    padding-top: 4px;
}
.watch-card {
    background: var(--bg-section);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 26px 30px;
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-card);
    transition: box-shadow .25s ease, transform .25s ease, background .25s ease;
    position: relative;
    overflow: hidden;
}
.watch-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity .25s ease;
}
.watch-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}
.watch-card:hover::after {
    opacity: 1;
}
.watch-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.watch-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}
.watch-card p {
    margin-bottom: 0;
    color: var(--ink-secondary);
    line-height: 1.8;
}
.watch-thumb {
    width: 110px;
    height: 90px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4A3139, #251a1f);
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 18px rgba(34, 20, 20, .08);
}
/* subscribe */
.subscribe-section {
    padding: 90px 0 10px;
}
.subscribe-panel {
    background: radial-gradient(circle at 80% 12%, rgba(245, 181, 68, .1), transparent 32%), var(--bg-dark);
    border-radius: var(--radius-hero);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 44px;
    padding: 52px 54px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(28, 15, 18, .18);
}
.subscribe-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-brand);
}
.subscribe-panel .sub-title {
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 12px;
}
.subscribe-panel .sub-desc {
    color: rgba(255,255,255,.66);
    font-size: 16px;
    line-height: 1.85;
}
.subscribe-form-wrap {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 26px;
}
.sub-form-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    color: #fff;
}
.sub-form {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.sub-input {
    flex: 1;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    padding: 0 18px;
    background: rgba(255,255,255,.04);
    color: #fff;
    min-width: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.sub-input::placeholder {
    color: rgba(255,255,255,.36);
}
.sub-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245,181,68,.2);
}
.sub-privacy {
    font-size: 12px;
    color: rgba(255,255,255,.46);
    line-height: 1.7;
}
.sub-success {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffe1a0;
    gap: 8px;
    font-size: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
}
/* replay */
.replay-section {
    padding: 80px 0 0;
}
.replay-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}
.replay-card {
    grid-column: span 6;
    border-radius: var(--radius-hero);
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-card);
    transition: box-shadow .25s ease, transform .25s ease;
}
.replay-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
}
.replay-card.dark-card {
    background: var(--bg-dark2);
}
.replay-card.light-card {
    background: #fff;
    border: 1px solid var(--line);
}
.replay-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .88;
    transition: opacity .3s ease, transform .6s ease;
}
.replay-card:hover .replay-photo {
    transform: scale(1.03);
    opacity: .78;
}
.replay-card.dark-card .replay-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,8,9,.96) 4%, rgba(26,12,14,.62) 58%, rgba(74,20,25,.08) 100%);
}
.replay-inner {
    position: relative;
    z-index: 4;
    padding: 30px;
    width: 100%;
    color: #fff;
}
.replay-card.light-card .replay-inner {
    color: var(--ink);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.replay-caption {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 8px;
    letter-spacing: .06em;
}
.replay-card.light-card .replay-caption {
    color: var(--primary-rose);
}
.replay-inner h3 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}
.replay-inner p {
    opacity: .82;
    max-width: 380px;
    line-height: 1.85;
    margin-bottom: 22px;
}
.replay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.arrow-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
}
.replay-card.light-card .arrow-line {
    color: var(--primary-scarlet);
}
.arrow-line:hover {
    color: #fff;
    text-shadow: 0 0 12px var(--glow);
}
.replay-card.light-card .arrow-line:hover {
    color: var(--primary-rose);
    text-shadow: 0 0 10px rgba(213, 67, 61, .15);
}
/* news */
.news-section {
    padding: var(--space-section) 0 30px;
}
.news-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.news-item {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--bg-section);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow .25s ease, transform .25s ease;
}
.news-item:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.news-item.news-item--lead {
    grid-template-columns: 1.05fr 1fr;
}
.news-thumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #42353B, #1E1518);
}
.news-thumb img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform .6s ease;
}
.news-item:hover .news-thumb img {
    transform: scale(1.04);
}
.news-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.news-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
    font-family: var(--font-num);
    font-size: 14px;
    color: var(--ink-ghost);
}
.news-item h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}
.news-item h3 a:hover {
    color: var(--primary-rose);
}
.news-item .lead-title {
    font-size: 24px;
}
.news-summary {
    color: var(--ink-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-rose);
    font-weight: 600;
    font-size: 15px;
}
.news-link:hover {
    color: var(--primary-ember);
}
.news-empty {
    background: #fff;
    border: 1px dashed var(--line-deep);
    border-radius: var(--radius-card);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--ink-ghost);
    font-size: 17px;
}
/* data rail */
.rail {
    padding: 44px 0 20px;
    border-top: 1px solid var(--line);
}
.rail-head {
    text-align: center;
    color: var(--ink-secondary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 26px;
}
.rail-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}
.rail-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fffdf9;
    padding: 12px 22px 12px 14px;
    border-top: 3px solid var(--primary-rose);
    border-radius: 16px;
    min-width: 160px;
    box-shadow: var(--shadow-card);
}
.rail-pill .rail-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(162,33,56,.08);
    border-radius: 50%;
}
.rail-pill .rail-label {
    display: block;
    font-size: 12px;
    color: var(--ink-secondary);
}
.rail-pill .rail-value {
    display: block;
    font-family: var(--font-num);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ink);
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rail-pill .rail-value.stub {
    color: var(--ink-ghost);
    background: transparent;
    -webkit-background-clip: initial;
}
/* faq */
.faq-section {
    background: transparent;
    padding: var(--space-section) 0 20px;
}
.faq-container {
    max-width: 920px;
    margin: 0 auto;
}
.faq-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 0;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.faq-card:hover {
    border-color: #d8cbc0;
    box-shadow: var(--shadow-card);
}
.faq-card.is-open {
    border-color: rgba(162,33,56,.2);
    box-shadow: var(--shadow-card);
}
.faq-card.is-open .faq-q {
    background: #fff9f4;
    border-radius: 16px 16px 0 0;
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    line-height: 1.6;
    transition: color .2s ease;
}
.faq-q:hover {
    color: var(--primary-rose);
}
.faq-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(162,33,56,.08);
    color: var(--primary-rose);
    font-size: 20px;
    font-weight: 300;
    transition: transform .3s ease, background .3s ease;
}
.faq-card.is-open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-rose);
    color: #fff;
}
.faq-a {
    display: none;
    padding: 0 24px 24px 24px;
    color: var(--ink-secondary);
    line-height: 1.9;
    font-size: 15px;
}
.faq-card.is-open .faq-a {
    display: block;
}
/* footer cta */
.footer-cta {
    padding: 60px 0 0;
}
.footer-cta-card {
    border-radius: var(--radius-hero);
    background: var(--grad-brand);
    color: #fff;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 24px 60px rgba(142, 43, 47, .22);
    position: relative;
    overflow: hidden;
}
.footer-cta-card h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 4px;
}
.footer-cta-card p {
    color: rgba(255,255,255,.74);
    font-size: 16px;
}
.footer-cta-card a {
    background: rgba(255,255,255,.95);
    color: var(--primary-rose);
    flex-shrink: 0;
}
.footer-cta-card a:hover {
    background: #ffeec7;
    color: #911b31;
    box-shadow: 0 0 26px rgba(255,255,255,.5);
}
/* footer */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,.6);
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-brand {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #ffe4b2;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-desc {
    max-width: 420px;
    color: rgba(255,255,255,.52);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 26px;
}
.footer-col-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
.footer-links a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 194, 106, .25);
}
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    border: 0;
    margin: 0;
}
.footer-bottom {
    padding: 26px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.35);
    font-size: 13px;
}
.footer-bottom a {
    color: rgba(255,255,255,.4);
}
.footer-bottom a:hover {
    color: var(--accent-gold);
}
/* media queries */
@media (max-width: 1199px) and (min-width: 769px) {
    .hero-inner {
        grid-template-columns: 1.5fr 1fr;
    }
    .hero-badge-group {
        min-width: 0;
    }
    .news-item.news-item--lead {
        grid-template-columns: 1fr;
    }
    .news-thumb img {
        min-height: 190px;
    }
    .subscribe-panel {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}
@media (max-width: 1023px) {
    .hero-cover {
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 64px 20px 110px;
    }
    .hero-badge-group {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 4px;
    }
    .watch-card {
        grid-template-columns: 1fr;
    }
    .watch-thumb {
        display: none;
    }
    .replay-grid {
        grid-template-columns: 1fr;
    }
    .replay-card {
        grid-column: span 12;
    }
    .subscribe-panel {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .footer-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 44px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-desc {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .section {
        padding: 64px 0;
    }
    .nav-inner {
        min-height: 60px;
    }
    .nav-brand {
        font-size: 16px;
        gap: 8px;
    }
    .nav-menu {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-menu-mobile {
        position: fixed;
        inset: 0;
        background: rgba(20,12,14,.98);
        z-index: 300;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        padding: 100px 26px 30px;
        display: none;
        opacity: 0;
        transition: opacity .25s ease;
    }
    .nav-menu-mobile.is-open {
        display: flex;
        opacity: 1;
    }
    .nav-menu-mobile .mobile-close {
        position: absolute;
        top: 26px;
        right: 24px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        color: #fff;
        font-size: 24px;
        background: rgba(255,255,255,.06);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-menu-mobile .nav-link {
        width: 100%;
        height: auto;
        padding: 13px 4px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,.06);
        border-left: 2px solid transparent;
        color: rgba(255,255,255,.88);
        font-size: 17px;
    }
    .nav-menu-mobile .nav-link.active {
        border-left-color: var(--accent-gold);
        border-bottom-color: transparent;
        color: var(--accent-gold);
        text-shadow: none;
    }
    .nav-menu-mobile .btn {
        width: 100%;
        margin-top: 14px;
    }
    .hero-zone {
        padding: 10px 8px 0;
    }
    .hero-cover {
        border-radius: 20px;
        min-height: 620px;
    }
    .hero-overlay {
        background: linear-gradient(6deg, rgba(14,8,10,.98) 10%, rgba(36,15,20,.84) 40%, rgba(39,17,20,.25) 100%);
    }
    .hero-inner {
        align-content: flex-end;
        padding: 60px 16px 120px;
        min-height: 620px;
    }
    .hero-copy h1 {
        font-size: 36px;
    }
    .hero-sub {
        font-size: 15px;
        line-height: 1.85;
    }
    .hero-badge-group {
        flex-direction: column;
    }
    .countdown-section {
        padding-top: 50px;
    }
    .countdown-card {
        padding: 34px 18px;
        border-radius: 20px;
    }
    .timer-grid {
        gap: 7px;
    }
    .timer-cell {
        flex: 1 1 62px;
        max-width: none;
        padding: 14px 4px 10px;
        border-radius: 13px;
    }
    .timer-cell .number {
        font-size: 28px;
    }
    .sub-form {
        flex-direction: column;
    }
    .subscribe-panel {
        padding: 34px 19px;
        border-radius: 20px;
    }
    .watch-row {
        grid-template-columns: 1fr;
    }
    .watch-no {
        text-align: left;
        font-size: 40px;
    }
    .watch-card {
        padding: 22px 18px;
    }
    .news-body {
        padding: 22px 18px;
    }
    .replay-card {
        min-height: 280px;
    }
    .replay-inner,
    .replay-card.light-card .replay-inner {
        padding: 28px 22px;
    }
    .rail-strip {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .rail-pill {
        min-width: 150px;
        flex: 0 0 auto;
    }
    .footer-cta-card {
        padding: 38px 22px;
        text-align: left;
        align-items: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-col-title {
        margin-bottom: 14px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 22px;
    }
    .scroll-hint {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* roulang page: article */
:root {
      --bg-page: #F5F0E9;
      --bg-section: #FFFFFF;
      --bg-dark: #1B1216;
      --bg-dark2: #24161C;
      --ink: #241C1E;
      --ink-secondary: #5C4F4A;
      --ink-ghost: #8F8179;
      --line: #E6DDD3;
      --primary-rose: #A22138;
      --primary-scarlet: #D8433D;
      --primary-ember: #EE8B42;
      --accent-gold: #F5B544;
      --grad-brand: linear-gradient(135deg, #4B1626 0%, #A22138 36%, #D8433D 68%, #F5B544 120%);
      --glow: #FFC26A;
      --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
      --font-num: "DIN Alternate", "Bahnschrift", "Roboto Condensed", sans-serif;
      --shadow-card: 0 10px 30px rgba(72, 34, 30, 0.08);
      --shadow-hover: 0 22px 44px rgba(52, 26, 20, 0.16);
      --radius-sm: 10px;
      --radius-md: 20px;
      --radius-lg: 28px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-sans);
      background: var(--bg-page);
      color: var(--ink);
      line-height: 1.7;
      font-size: 16px;
      padding-top: 3px;
    }

    img {
      max-width: 100%;
      display: block;
      border: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font-family: var(--font-sans);
      font-size: inherit;
      line-height: inherit;
    }

    ul,
    ol {
      padding-left: 1.35em;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
      border: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 28px;
      border-radius: 999px;
      border: 0;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
      white-space: nowrap;
      min-height: 44px;
    }

    .btn-primary {
      background: var(--grad-brand);
      color: #fff;
      box-shadow: 0 8px 22px rgba(162, 33, 56, .22);
    }

    .btn-primary:hover {
      box-shadow: 0 0 0 1px rgba(255, 194, 106, .4), 0 0 24px rgba(255, 194, 106, .28);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--primary-ember);
      color: var(--ink);
    }

    .btn-outline:hover {
      background: rgba(245, 181, 68, .18);
      border-color: var(--accent-gold);
    }

    .btn-dark {
      background: var(--bg-dark2);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .btn-dark:hover {
      background: #3a242c;
      box-shadow: 0 0 18px rgba(255, 194, 106, .2);
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(23, 15, 18, .96);
      box-shadow: 0 8px 28px rgba(20, 12, 14, .18);
    }

    .site-header::before {
      content: "";
      display: block;
      height: 3px;
      background: var(--grad-brand);
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 0 24px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--grad-brand);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 18px;
      box-shadow: 0 0 14px rgba(245, 181, 68, .35);
    }

    .brand-text {
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .02em;
      line-height: 1.2;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 15px;
      color: rgba(255, 255, 255, .82);
      transition: color .25s ease, text-shadow .25s ease, background-color .25s ease;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: var(--accent-gold);
      text-shadow: 0 0 14px rgba(255, 209, 130, .6);
      background: rgba(255, 255, 255, .04);
    }

    .nav-link.active {
      color: var(--accent-gold);
      text-shadow: 0 0 14px rgba(255, 209, 130, .65);
      background: rgba(245, 181, 68, .12);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -2px;
    }

    .nav-cta {
      margin-left: 8px;
      height: 42px;
      padding: 0 22px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      background: transparent;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      z-index: 1002;
      cursor: pointer;
      border-radius: 12px;
    }

    .menu-toggle span {
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      display: block;
      transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
    }

    .site-header.menu-open .menu-toggle span {
      background: var(--accent-gold);
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Article hero */
    .article-hero {
      padding: 56px 0 20px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--ink-ghost);
      margin-bottom: 22px;
    }

    .breadcrumb a {
      transition: color .2s ease;
    }

    .breadcrumb a:hover {
      color: var(--primary-rose);
    }

    .breadcrumb-sep {
      color: var(--ink-ghost);
      user-select: none;
    }

    .article-title {
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.22;
      font-weight: 800;
      letter-spacing: .01em;
      color: var(--ink);
      max-width: 980px;
      margin-bottom: 28px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 22px;
      padding: 16px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: var(--ink-secondary);
      font-size: 15px;
    }

    .meta-category {
      background: rgba(217, 87, 68, .12);
      color: var(--primary-rose);
      border-radius: 999px;
      padding: 6px 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .meta-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--ink-ghost);
    }

    .meta-item strong {
      color: var(--ink-secondary);
      font-weight: 600;
    }

    .main-area {
      padding: 0 0 20px;
    }

    .article-shell {
      max-width: 920px;
      margin: 0 auto;
    }

    .article-cover {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      margin: 10px 0 0;
      background: linear-gradient(135deg, #42353B, #1E1518);
    }

    .article-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
      border-radius: var(--radius-md);
    }

    .article-cover img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .article-content {
      max-width: 760px;
      margin: 46px auto 0;
      font-size: 17px;
      color: var(--ink);
      line-height: 1.95;
      word-wrap: break-word;
    }

    .article-content p {
      margin-bottom: 24px;
    }

    .article-content h2,
    .article-content h3,
    .article-content h4 {
      color: var(--ink);
      font-weight: 800;
      line-height: 1.35;
      margin: 1.6em 0 .65em;
    }

    .article-content h2 {
      font-size: 26px;
    }

    .article-content h3 {
      font-size: 22px;
    }

    .article-content h4 {
      font-size: 18px;
    }

    .article-content ul,
    .article-content ol {
      margin: 0 0 24px;
      padding-left: 1.5em;
    }

    .article-content li {
      margin-bottom: 8px;
    }

    .article-content blockquote {
      margin: 30px 0;
      padding: 18px 24px;
      background: rgba(245, 181, 68, .06);
      border-left: 3px solid var(--primary-scarlet);
      border-radius: 0 12px 12px 0;
      color: var(--ink-secondary);
      font-style: normal;
    }

    .article-content blockquote p {
      margin: 0 0 8px;
    }

    .article-content a {
      color: var(--primary-rose);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .article-content a:hover {
      color: var(--primary-scarlet);
      text-decoration-thickness: 2px;
    }

    .article-content img {
      border-radius: var(--radius-sm);
      margin: 24px auto;
    }

    .article-content pre,
    .article-content code {
      font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    }

    .article-content hr {
      border: 0;
      border-top: 1px solid var(--line);
      margin: 40px 0;
    }

    .article-footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      margin: 44px 0 0;
      border-top: 1px solid var(--line);
      padding-top: 28px;
    }

    .article-footer-links .btn {
      min-height: 44px;
    }

    /* Empty state */
    .empty-state {
      max-width: 700px;
      margin: 30px auto 80px;
      text-align: center;
      background: var(--bg-section);
      border-radius: var(--radius-lg);
      padding: 74px 32px;
      box-shadow: var(--shadow-card);
    }

    .empty-code {
      display: block;
      font-family: var(--font-num), sans-serif;
      font-size: 72px;
      color: var(--line);
      margin-bottom: 12px;
    }

    .empty-state p {
      color: var(--ink-secondary);
      max-width: 420px;
      margin: 0 auto 28px;
      font-size: 16px;
    }

    /* More section */
    .more-section {
      padding: 72px 0 96px;
    }

    .section-head {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 34px;
    }

    .section-kicker {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--primary-rose);
    }

    .more-title {
      font-size: 34px;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -.01em;
    }

    .more-subtitle {
      color: var(--ink-secondary);
      font-size: 16px;
      max-width: 640px;
    }

    .more-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .more-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 30px;
      border-radius: var(--radius-md);
      background: var(--bg-dark);
      color: #fff;
      transition: transform .3s ease, box-shadow .3s ease;
      min-height: 250px;
      overflow: hidden;
    }

    .more-card::after {
      content: "";
      position: absolute;
      right: -40px;
      top: -40px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(238, 139, 66, .28), transparent 70%);
      pointer-events: none;
    }

    .more-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 28px rgba(18, 10, 14, .3);
    }

    .more-card.light-card {
      background: var(--bg-section);
      color: var(--ink);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
    }

    .more-card.light-card::after {
      background: radial-gradient(circle, rgba(245, 181, 68, .16), transparent 70%);
    }

    .more-card.light-card:hover {
      box-shadow: var(--shadow-hover);
    }

    .more-tag {
      display: inline-flex;
      width: fit-content;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .14);
      color: var(--glow);
      font-size: 13px;
      margin-bottom: 20px;
    }

    .light-card .more-tag {
      background: rgba(217, 87, 68, .12);
      color: var(--primary-rose);
    }

    .more-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .more-card p {
      color: rgba(255, 255, 255, .68);
      line-height: 1.75;
      font-size: 15px;
      max-width: 360px;
    }

    .light-card p {
      color: var(--ink-secondary);
    }

    .more-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      padding-top: 22px;
      color: var(--accent-gold);
      font-weight: 600;
    }

    .light-card .more-link {
      color: var(--primary-scarlet);
    }

    .more-link i {
      font-style: normal;
      transition: transform .3s ease;
    }

    .more-card:hover .more-link i {
      transform: translateX(4px);
    }

    /* Subscribe CTA */
    .subscribe-section {
      padding-bottom: 96px;
    }

    .subscribe-panel {
      background: var(--bg-dark);
      border-radius: var(--radius-lg);
      padding: 48px;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #fff;
    }

    .subscribe-panel::before {
      content: "";
      position: absolute;
      right: -120px;
      top: -110px;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 194, 106, .16), transparent 65%);
      pointer-events: none;
    }

    .subscribe-head h2 {
      font-size: 30px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .subscribe-head p {
      color: rgba(255, 255, 255, .72);
      font-size: 15px;
      max-width: 440px;
      line-height: 1.8;
    }

    .subscribe-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 420px;
    }

    .subscribe-row {
      display: flex;
      gap: 10px;
      align-items: stretch;
    }

    .subscribe-row .btn {
      flex-shrink: 0;
    }

    .subscribe-panel input[type="email"] {
      flex: 1;
      height: 48px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 14px;
      padding: 0 16px;
      color: #fff;
      outline: none;
      transition: border-color .25s ease, box-shadow .25s ease;
      min-width: 0;
    }

    .subscribe-panel input[type="email"]::placeholder {
      color: rgba(255, 255, 255, .45);
    }

    .subscribe-panel input[type="email"]:focus {
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 3px rgba(245, 181, 68, .18), 0 0 18px rgba(255, 194, 106, .15);
    }

    .subscribe-note {
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.6;
    }

    .subscribe-success {
      background: rgba(245, 181, 68, .16);
      border: 1px solid rgba(245, 181, 68, .3);
      border-radius: 14px;
      padding: 14px 18px;
      color: var(--glow);
      font-weight: 600;
      font-size: 14px;
      line-height: 1.6;
    }

    /* Footer */
    .site-footer {
      background: var(--bg-dark);
      color: rgba(255, 255, 255, .82);
      padding-top: 64px;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      color: #fff;
    }

    .footer-brand .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--grad-brand);
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 800;
    }

    .footer-brand span {
      font-size: 18px;
      font-weight: 700;
    }

    .footer-desc {
      color: rgba(255, 255, 255, .6);
      font-size: 14px;
      line-height: 1.75;
      max-width: 380px;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
      transition: color .2s ease, padding-left .2s ease;
    }

    .footer-links a:hover {
      color: var(--accent-gold);
      padding-left: 4px;
    }

    .footer-divider {
      border: 0;
      border-top: 1px solid rgba(255, 255, 255, .12);
      margin: 0;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      padding: 24px 0 30px;
      color: rgba(255, 255, 255, .48);
      font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .container {
        padding-left: 24px;
        padding-right: 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-desc {
        max-width: 100%;
      }

      .subscribe-panel {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 900px) {
      .header-inner {
        height: 60px;
        padding: 0 16px;
      }

      .brand-text {
        font-size: 16px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 15, 18, .985);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 24px;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px);
        transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
      }

      .site-header.menu-open .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav-menu .nav-link {
        font-size: 20px;
        padding: 12px 20px;
        color: rgba(255, 255, 255, .88);
      }

      .nav-menu .nav-cta {
        margin: 12px 0 0;
        height: 48px;
        padding: 0 26px;
        font-size: 16px;
      }

      .article-hero {
        padding-top: 36px;
      }

      .more-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .article-footer-links {
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      body {
        font-size: 15px;
      }

      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .header-inner {
        padding-left: 16px;
        padding-right: 16px;
      }

      .article-title {
        font-size: 28px;
        margin-bottom: 18px;
      }

      .article-meta {
        gap: 8px 12px;
        font-size: 14px;
      }

      .article-cover {
        border-radius: 14px;
      }

      .article-content {
        font-size: 16px;
        line-height: 1.85;
        margin-top: 32px;
      }

      .article-content h2 {
        font-size: 22px;
      }

      .article-content h3 {
        font-size: 19px;
      }

      .article-footer-links {
        flex-direction: column;
      }

      .article-footer-links .btn {
        width: 100%;
      }

      .more-card {
        padding: 24px;
        min-height: 220px;
      }

      .more-title {
        font-size: 28px;
      }

      .subscribe-panel {
        padding: 32px 22px;
        border-radius: 20px;
      }

      .subscribe-head h2 {
        font-size: 26px;
      }

      .subscribe-row {
        flex-direction: column;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 30px;
      }

      .site-footer {
        padding-top: 44px;
      }

      .footer-bottom {
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }

/* roulang page: category1 */
:root {
            --bg-page: #F5F0E9;
            --bg-section: #FFFDF9;
            --bg-dark: #1B1216;
            --bg-dark2: #24161C;
            --ink: #241C1E;
            --ink-secondary: #5C4F4A;
            --ink-ghost: #8F8179;
            --line: #E6DDD3;
            --rose: #A22138;
            --scarlet: #D8433D;
            --ember: #EE8B42;
            --gold: #F5B544;
            --glow: #FFC26A;
            --grad-brand: linear-gradient(135deg, #4B1626 0%, #A22138 36%, #D8433D 68%, #F5B544 120%);
            --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
            --font-digit: "DIN Alternate", "Bahnschrift", "Roboto Condensed", sans-serif;
            --radius-s: 10px;
            --radius: 20px;
            --radius-l: 28px;
            --shadow-card: 0 10px 30px rgba(72, 34, 30, 0.08);
            --shadow-hover: 0 22px 44px rgba(52, 26, 20, 0.16);
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 92px;
        }

        body {
            font-family: var(--font);
            background: var(--bg-page);
            color: var(--ink);
            font-size: 16px;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        ul,
        ol {
            list-style: none;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            width: min(1280px, calc(100% - 48px));
            margin-inline: auto;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
        }

        :focus-visible {
            outline: 3px solid var(--glow);
            outline-offset: 4px;
            border-radius: 6px;
        }

        ::selection {
            background: rgba(217, 67, 61, 0.22);
        }

        h1,
        h2,
        h3 {
            line-height: 1.35;
            letter-spacing: 0.02em;
            text-wrap: balance;
        }

        p {
            text-wrap: pretty;
        }

        .section {
            padding: 96px 0;
        }

        .section-head {
            margin-bottom: 42px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px 24px;
            align-items: flex-end;
        }

        .section-head h2,
        .section h2 {
            font-size: clamp(28px, 3.4vw, 44px);
            font-weight: 800;
            letter-spacing: 0.02em;
        }

        .kicker {
            color: var(--rose);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .kicker::before {
            content: "";
            width: 26px;
            height: 3px;
            background: var(--grad-brand);
            border-radius: 99px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 12px 26px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-weight: 700;
            font-size: 15px;
            line-height: 1;
            cursor: pointer;
            transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.2s ease;
        }

        .btn-primary {
            background: var(--grad-brand);
            color: #fff;
            box-shadow: 0 8px 24px rgba(162, 33, 56, 0.22);
        }

        .btn-primary:hover {
            filter: brightness(1.07);
            box-shadow: 0 0 24px rgba(255, 194, 106, 0.35);
            transform: translateY(-1px);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            border-color: rgba(255, 255, 255, 0.36);
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
        }

        .btn-outline:hover {
            background: rgba(255, 194, 106, 0.16);
            border-color: rgba(255, 194, 106, 0.7);
            color: var(--glow);
        }

        .btn-outline-rose {
            background: transparent;
            border-color: rgba(162, 33, 56, 0.55);
            color: var(--rose);
        }

        .btn-outline-rose:hover {
            background: rgba(162, 33, 56, 0.08);
            border-color: var(--rose);
        }

        .tag {
            display: inline-flex;
            align-items: center;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.04em;
            line-height: 1.4;
            background: rgba(245, 181, 68, 0.16);
            color: #8A4A20;
        }

        .tag-rose {
            background: rgba(162, 33, 56, 0.09);
            color: var(--rose);
        }

        .tag-dark {
            background: rgba(255, 255, 255, 0.12);
            color: #F6E7D8;
        }

        .tag-gold {
            background: rgba(245, 181, 68, 0.2);
            color: #9B5C12;
        }

        /* ---------------------------------- Header ---------------------------------- */

        .site-header {
            position: sticky;
            top: 0;
            left: 0;
            z-index: 100;
            background: rgba(27, 18, 22, 0.96);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .site-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--grad-brand);
            z-index: 2;
        }

        .header-inner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            min-height: 74px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            color: #fff;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 0.02em;
        }

        .brand-mark {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            background: var(--grad-brand);
            display: grid;
            place-items: center;
            font-size: 17px;
            color: #fff;
            font-weight: 800;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
        }

        .brand-name {
            white-space: nowrap;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex: 1;
            min-width: 0;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 16px;
            color: rgba(255, 255, 255, 0.77);
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.02em;
            transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, text-shadow 0.2s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--glow);
            background: rgba(255, 255, 255, 0.05);
            text-shadow: 0 0 14px rgba(255, 194, 106, 0.45);
        }

        .nav-link.active {
            color: var(--glow);
            background: linear-gradient(180deg, rgba(255, 194, 106, 0.12), rgba(255, 194, 106, 0.02));
            text-shadow: 0 0 14px rgba(255, 209, 130, 0.65);
            box-shadow: inset 0 -2px 0 var(--gold);
        }

        .nav-cta {
            flex-shrink: 0;
            margin-left: 6px;
        }

        .nav-toggle {
            display: none;
            width: 46px;
            height: 46px;
            border: 0;
            background: transparent;
            border-radius: 12px;
            cursor: pointer;
            place-items: center;
            gap: 5px;
            z-index: 110;
        }

        .nav-toggle-bar {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 4px;
            transition: transform 0.3s ease, opacity 0.2s ease;
        }

        .nav-toggle.open .nav-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.open .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open .nav-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ---------------------------------- Page Hero ---------------------------------- */

        .category-hero {
            padding: 36px 0 8px;
        }

        .hero-card {
            position: relative;
            min-height: 470px;
            border-radius: var(--radius-l);
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            background-color: var(--bg-dark2);
            box-shadow: 0 22px 50px rgba(52, 26, 20, 0.22);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-color: var(--bg-dark2);
            background-size: cover;
            background-position: center;
            opacity: 0.85;
        }

        .hero-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(80deg, rgba(27, 18, 22, 0.94) 0%, rgba(27, 18, 22, 0.62) 44%, rgba(33, 18, 22, 0.36) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 3;
            max-width: 720px;
            padding: 56px 56px 52px;
            color: #fff;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 7px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--glow);
            margin-bottom: 22px;
        }

        .hero-inner h1 {
            font-size: clamp(42px, 6.4vw, 62px);
            font-weight: 800;
            letter-spacing: 0.02em;
            margin-bottom: 18px;
            line-height: 1.15;
        }

        .hero-lead {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.82);
            max-width: 560px;
            line-height: 1.9;
            margin-bottom: 28px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* ---------------------------------- Intro ---------------------------------- */

        .intro-section {
            background: var(--bg-section);
            padding: 96px 0;
            border-bottom: 1px solid var(--line);
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1.02fr 0.98fr;
            gap: 56px;
            align-items: center;
        }

        .intro-media {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            aspect-ratio: 4 / 3;
            background: var(--bg-dark2);
        }

        .intro-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .intro-media:hover img {
            transform: scale(1.025);
        }

        .intro-media::after {
            content: "NEW ARRIVAL GUIDE";
            position: absolute;
            left: 18px;
            bottom: 16px;
            background: rgba(27, 18, 22, 0.72);
            backdrop-filter: blur(8px);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 12px;
            letter-spacing: 0.08em;
        }

        .intro-copy h2 {
            margin-bottom: 18px;
        }

        .intro-copy>p {
            color: var(--ink-secondary);
            font-size: 17px;
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .checklist {
            display: grid;
            gap: 14px;
            margin-top: 22px;
        }

        .checklist li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 15px 18px;
            background: #FBF6EF;
            border-radius: 14px;
            border: 1px solid #EFE6DA;
            color: var(--ink);
            line-height: 1.7;
        }

        .checklist li::before {
            content: "";
            width: 12px;
            height: 12px;
            border-radius: 99px;
            background: var(--grad-brand);
            flex-shrink: 0;
            margin-top: 9px;
        }

        /* ---------------------------------- Catalog ---------------------------------- */

        .catalog-section {
            background: #F2EBDF;
            padding: 96px 0;
            border-bottom: 1px solid var(--line);
        }

        .catalog-section .section-head p {
            color: var(--ink-secondary);
            max-width: 520px;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .catalog-card {
            background: #FFFFFF;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid #F0E5D8;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .catalog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .catalog-card.is-dark {
            background: var(--bg-dark);
            border-color: transparent;
            box-shadow: 0 20px 44px rgba(35, 18, 22, 0.32);
        }

        .catalog-card.is-dark:hover {
            box-shadow: 0 28px 48px rgba(35, 18, 22, 0.42);
        }

        .catalog-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: linear-gradient(135deg, #42353B, #1E1518);
        }

        .catalog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .catalog-card.is-dark .catalog-cover-pattern {
            min-height: 210px;
            background: radial-gradient(circle at 30% 20%, rgba(255, 194, 106, 0.18), transparent 32%), linear-gradient(135deg, #39232B, #1B1216 66%);
            display: grid;
            place-items: center;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 800;
            font-size: 64px;
            font-family: var(--font-digit);
        }

        .catalog-body {
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            flex: 1;
        }

        .catalog-body h3 {
            font-size: 22px;
            font-weight: 700;
        }

        .catalog-body p {
            color: var(--ink-secondary);
            font-size: 15px;
            line-height: 1.85;
        }

        .is-dark .catalog-body p {
            color: rgba(255, 255, 255, 0.7);
        }

        .arrow-link {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--rose);
            font-size: 15px;
            transition: gap 0.2s ease, color 0.2s ease;
        }

        .arrow-link:hover {
            color: var(--scarlet);
            gap: 13px;
        }

        .is-dark .arrow-link {
            color: var(--glow);
        }

        /* ---------------------------------- Updates ---------------------------------- */

        .updates-section {
            background: var(--bg-page);
            padding: 96px 0;
        }

        .updates-landscape {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 24px;
            align-items: stretch;
        }

        .feature-update {
            background: var(--bg-section);
            border: 1px solid #E9DFD1;
            border-radius: 22px;
            overflow: hidden;
            display: grid;
            grid-template-rows: auto 1fr;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .feature-update:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .feature-img {
            aspect-ratio: 16 / 9;
            background-color: #38262C;
            overflow: hidden;
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-update:hover .feature-img img {
            transform: scale(1.03);
        }

        .feature-content {
            padding: 26px 28px 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .meta-line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 13px;
            color: var(--ink-ghost);
            flex-wrap: wrap;
        }

        .feature-content h3 {
            font-size: 22px;
            line-height: 1.5;
            font-weight: 700;
        }

        .feature-content p {
            color: var(--ink-secondary);
            font-size: 15px;
            line-height: 1.85;
            max-width: 72ch;
        }

        .feature-content .arrow-link {
            margin-top: 6px;
        }

        .updates-aside {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .update-mini {
            background: var(--bg-section);
            border: 1px solid #E9DFD1;
            border-radius: 20px;
            padding: 16px;
            display: grid;
            grid-template-columns: 128px 1fr;
            gap: 16px;
            align-items: center;
            flex: 1;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .update-mini:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .mini-thumb {
            aspect-ratio: 1 / 1;
            border-radius: 14px;
            overflow: hidden;
            background: var(--bg-dark2);
        }

        .mini-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mini-tag {
            font-size: 12px;
            font-weight: 700;
            color: var(--rose);
            margin-bottom: 6px;
            letter-spacing: 0.04em;
        }

        .update-mini h3 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.55;
        }

        /* ---------------------------------- FAQ ---------------------------------- */

        .faq-section {
            padding: 96px 0 80px;
            background: #FBF6EE;
            border-top: 1px solid var(--line);
        }

        .faq-panel {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-panel .section-head {
            flex-direction: column;
            align-items: flex-start;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #EDE2D4;
            border-radius: 16px;
            margin-bottom: 14px;
            box-shadow: 0 6px 20px rgba(72, 34, 30, 0.05);
            overflow: hidden;
            transition: box-shadow 0.25s ease;
        }

        .faq-item[open] {
            box-shadow: 0 0 0 1px var(--gold), 0 12px 26px rgba(72, 34, 30, 0.09);
            border-top: 2px solid var(--grad-brand);
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 22px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            list-style: none;
            color: var(--ink);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            color: var(--rose);
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            border-radius: 999px;
            background: rgba(162, 33, 56, 0.08);
            color: var(--rose);
            font-size: 22px;
            font-weight: 300;
            transition: transform 0.3s ease, background 0.25s ease;
            line-height: 1;
        }

        .faq-icon::before {
            content: "+";
            transform: translateY(-1px);
        }

        .faq-item[open] .faq-icon {
            background: var(--grad-brand);
            color: #fff;
        }

        .faq-item[open] .faq-icon::before {
            content: "−";
            transform: translateY(-1px);
        }

        .faq-body {
            padding: 0 24px 24px;
            color: var(--ink-secondary);
            font-size: 15px;
            line-height: 1.85;
            max-width: 72ch;
        }

        /* ---------------------------------- CTA ---------------------------------- */

        .cta-section {
            background: var(--bg-dark);
            color: #fff;
            padding: 72px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .cta-section::before {
            content: "";
            position: absolute;
            right: -120px;
            top: -160px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(255, 194, 106, 0.22), transparent 60%);
            pointer-events: none;
        }

        .cta-section::after {
            content: "";
            position: absolute;
            left: 6%;
            bottom: -60px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(217, 67, 61, 0.3), transparent 62%);
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px 48px;
            align-items: center;
        }

        .cta-copy h2 {
            font-size: clamp(28px, 3vw, 40px);
            margin-bottom: 12px;
        }

        .cta-copy p {
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            max-width: 48ch;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

        .subscribe-form input {
            flex: 1;
            min-width: 0;
            min-height: 50px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 14px;
            color: #fff;
            padding: 0 16px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .subscribe-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .subscribe-form input:focus {
            outline: 0;
            border-color: var(--glow);
            box-shadow: 0 0 0 3px rgba(255, 194, 106, 0.18);
        }

        .subscribe-form .btn {
            flex-shrink: 0;
            min-height: 50px;
        }

        .privacy-line {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.56);
        }

        .subscribe-success {
            color: var(--glow);
            font-size: 15px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            padding: 16px 18px;
            border: 1px solid rgba(255, 194, 106, 0.35);
        }

        .hidden {
            display: none !important;
        }

        /* ---------------------------------- Footer ---------------------------------- */

        .site-footer {
            background: var(--bg-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 64px 0 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .site-footer .container {
            max-width: min(1280px, calc(100% - 48px));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 0.7fr 0.8fr;
            gap: 52px;
            margin-bottom: 44px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 19px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .footer-brand .brand-mark {
            width: 36px;
            height: 36px;
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            max-width: 42ch;
            line-height: 1.85;
        }

        .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 18px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.62);
            width: fit-content;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--glow);
            transform: translateX(2px);
        }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 18px;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 8px 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.42);
        }

        /* ---------------------------------- Responsive ---------------------------------- */

        @media (max-width: 1199.98px) {
            .brand-name {
                font-size: 16px;
            }

            .nav-link {
                padding: 0 10px;
            }

            .home-hero-card {
                padding: 40px;
            }

            .update-mini {
                grid-template-columns: 104px 1fr;
            }
        }

        @media (max-width: 1023.98px) {
            .nav-toggle {
                display: inline-flex;
                flex-direction: column;
                justify-content: center;
            }

            .nav-menu {
                position: fixed;
                inset: 0;
                background: #1B1216;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 96px 32px 32px;
                gap: 10px;
                transform: translateX(105%);
                transition: transform 0.3s ease;
                z-index: 105;
                box-shadow: -18px 0 44px rgba(0, 0, 0, 0.25);
            }

            .nav-menu.open {
                transform: translateX(0);
            }

            .nav-menu .nav-link {
                width: 100%;
                height: 52px;
                font-size: 18px;
                padding: 0 16px;
            }

            .nav-menu .btn.nav-cta {
                margin-top: 18px;
                width: 100%;
                justify-content: center;
            }

            .header-inner {
                min-height: 70px;
            }

            .hero-card {
                min-height: 400px;
            }

            .hero-inner {
                padding: 42px 34px;
            }

            .category-hero .hero-lead {
                font-size: 16px;
            }

            .intro-grid,
            .catalog-grid,
            .updates-landscape,
            .cta-inner {
                grid-template-columns: 1fr;
            }

            .intro-media {
                aspect-ratio: 16 / 10;
            }

            .feature-update {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
            }

            .updates-aside {
                grid-template-columns: 1fr 1fr;
                display: grid;
            }

            .update-mini {
                grid-template-columns: 1fr;
            }

            .update-mini .mini-thumb {
                aspect-ratio: 16 / 10;
            }

            .footer-grid {
                grid-template-columns: 1fr 0.8fr;
                gap: 36px;
            }

            .footer-grid>div:first-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 767.98px) {
            .container {
                width: min(1280px, calc(100% - 32px));
            }

            .section {
                padding: 64px 0;
            }

            .intro-section,
            .catalog-section,
            .updates-section,
            .faq-section {
                padding: 64px 0;
            }

            .header-inner {
                gap: 10px;
            }

            .brand-name {
                font-size: 14px;
            }

            .brand-mark {
                width: 34px;
                height: 34px;
            }

            .hero-card {
                border-radius: 22px;
                min-height: 480px;
            }

            .hero-inner {
                padding: 30px 24px;
            }

            .hero-inner h1 {
                font-size: 36px;
            }

            .hero-lead {
                font-size: 15px;
            }

            .intro-grid,
            .catalog-grid,
            .updates-landscape {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .catalog-body {
                padding: 22px;
            }

            .feature-content {
                padding: 22px;
            }

            .updates-aside {
                display: flex;
            }

            .faq-item summary {
                font-size: 15px;
            }

            .faq-body {
                padding: 0 18px 20px;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-form .btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-grid>div:first-child {
                grid-column: auto;
            }
        }

        @media (max-width: 520px) {
            .catalog-card.is-dark .catalog-cover-pattern {
                min-height: 170px;
                font-size: 44px;
            }

            .update-mini {
                grid-template-columns: 1fr;
                padding: 14px;
            }

            .footer-bottom {
                flex-direction: column;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

/* roulang page: category2 */
:root {
      --bg-page: #F5F0E9;
      --bg-section: #FFFFFF;
      --bg-card: #FFFDF9;
      --bg-dark: #1B1216;
      --bg-dark2: #24161C;
      --ink: #241C1E;
      --ink-secondary: #5C4F4A;
      --ink-ghost: #8F8179;
      --line: #E6DDD3;
      --primary-rose: #A22138;
      --primary-scarlet: #D8433D;
      --primary-ember: #EE8B42;
      --accent-gold: #F5B544;
      --glow: #FFC26A;
      --grad-brand: linear-gradient(135deg, #4B1626 0%, #A22138 36%, #D8433D 68%, #F5B544 120%);
      --shadow-card: 0 10px 30px rgba(72, 34, 30, 0.08);
      --shadow-card-hover: 0 22px 44px rgba(52, 26, 20, 0.16);
      --shadow-glow: 0 0 22px rgba(255, 194, 106, 0.25);
      --radius-sm: 10px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-pill: 999px;
      --container: 1280px;
      --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
      --font-num: "DIN Alternate", "Bahnschrift", "Roboto Condensed", var(--font-sans);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html,
    body {
      padding: 0;
      margin: 0;
    }

    body {
      background-color: var(--bg-page);
      color: var(--ink);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.75;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.no-scroll {
      overflow: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    p,
    figure,
    ul,
    ol,
    dl,
    dd {
      margin: 0;
      padding: 0;
    }

    ul,
    ol {
      list-style: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
      color: inherit;
      border: 0;
      background: none;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: 24px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(27, 18, 22, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-header::before {
      content: "";
      display: block;
      height: 2px;
      background: var(--grad-brand);
    }

    .header-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: relative;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--grad-brand);
      color: #fff;
      font-weight: 800;
      font-size: 17px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 1px rgba(255, 209, 130, 0.28), var(--shadow-glow);
    }

    .brand-text {
      color: #fff;
      font-weight: 700;
      font-size: 17px;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      color: rgba(255, 255, 255, 0.82);
      font-size: 15px;
      font-weight: 500;
      padding: 6px 2px;
      border-bottom: 2px solid transparent;
      transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--accent-gold);
      text-shadow: 0 0 14px rgba(255, 209, 130, 0.65);
    }

    .nav-link.active {
      color: var(--accent-gold);
      border-bottom-color: var(--accent-gold);
      text-shadow: 0 0 14px rgba(255, 209, 130, 0.65);
    }

    .nav-cta {
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 15px;
      line-height: 1;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }

    .btn:focus-visible {
      outline: 2px solid var(--accent-gold);
      outline-offset: 4px;
    }

    .btn-primary {
      background: var(--grad-brand);
      color: #fff;
      box-shadow: 0 8px 24px rgba(162, 33, 56, 0.35);
    }

    .btn-primary:hover {
      box-shadow: 0 10px 34px rgba(255, 194, 106, 0.35);
      transform: translateY(-1px);
    }

    .btn-primary:active {
      transform: translateY(1px);
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid rgba(255, 194, 106, 0.45);
      color: #fff;
    }

    .btn-outline:hover {
      background: rgba(255, 194, 106, 0.16);
      border-color: var(--glow);
    }

    .btn-light {
      background: #fff;
      color: var(--primary-rose);
    }

    .btn-light:hover {
      background: var(--accent-gold);
      color: #431A23;
      box-shadow: var(--shadow-card);
    }

    .nav-toggle {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      font-size: 24px;
      line-height: 1;
    }

    .mobile-drawer {
      display: none;
      background: var(--bg-dark2);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 20px 16px 24px;
    }

    .mobile-drawer .nav-menu {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .mobile-drawer .nav-link {
      display: flex;
      justify-content: space-between;
      padding: 12px 6px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      color: #fff;
      font-size: 16px;
    }

    .mobile-drawer .nav-cta {
      margin-top: 16px;
    }

    .main {
      overflow: hidden;
    }

    .live-hero {
      position: relative;
      padding: 94px 0 110px;
      color: #fff;
      background:
        linear-gradient(105deg, rgba(22, 10, 14, 0.92) 0%, rgba(90, 18, 27, 0.78) 46%, rgba(27, 18, 22, 0.55) 100%),
        url("/assets/images/backpic/back-3.webp") center / cover no-repeat;
    }

    .live-hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100px;
      background: linear-gradient(to top, var(--bg-page), transparent);
      pointer-events: none;
    }

    .hero-copy {
      max-width: 720px;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 194, 106, 0.28);
      color: var(--accent-gold);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.05em;
      backdrop-filter: blur(6px);
    }

    .hero-copy h1 {
      margin-top: 30px;
      font-size: 52px;
      line-height: 1.16;
      font-weight: 800;
      letter-spacing: 0.01em;
    }

    .hero-copy .lead {
      margin-top: 22px;
      font-size: 17px;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.88);
      max-width: 64ch;
    }

    .hero-actions {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-note {
      margin-top: 22px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-note::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--accent-gold);
      border-radius: 50%;
    }

    .section {
      padding: 92px 0;
    }

    .section-tight {
      padding-top: 72px;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 34px;
      margin-bottom: 44px;
    }

    .section-head .kicker {
      color: var(--primary-rose);
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.08em;
    }

    .section-head h2 {
      max-width: 760px;
      font-size: 30px;
      line-height: 1.35;
      letter-spacing: 0.02em;
      font-weight: 800;
      margin-top: 10px;
    }

    .section-head p {
      color: var(--ink-secondary);
      max-width: 42ch;
      font-size: 15px;
      margin-top: 14px;
    }

    .type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .type-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 30px 28px 28px;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .type-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius-pill);
      padding: 5px 12px;
      font-size: 13px;
      font-weight: 600;
      background: #FCE7D8;
      color: #A23623;
    }

    .tag-gold {
      background: #FCF1D9;
      color: #8A5F0A;
    }

    .tag-rose {
      background: #F7DDE0;
      color: var(--primary-rose);
    }

    .type-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-top: 22px;
      color: var(--ink);
    }

    .type-card p {
      margin-top: 14px;
      font-size: 15px;
      line-height: 1.85;
      color: var(--ink-secondary);
    }

    .timeline-zebra {
      background: #F7EFE7;
    }

    .timeline-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: start;
    }

    .timeline-intro h2 {
      font-size: 30px;
      line-height: 1.4;
      font-weight: 800;
    }

    .timeline-intro h2 span {
      color: var(--primary-rose);
    }

    .timeline-intro p {
      margin-top: 18px;
      color: var(--ink-secondary);
      font-size: 16px;
      line-height: 1.9;
    }

    .timeline {
      position: relative;
      padding-left: 34px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 12px;
      bottom: 12px;
      left: 10px;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary-scarlet), var(--accent-gold));
      border-radius: 2px;
    }

    .timeline-item {
      position: relative;
      padding: 4px 0 40px;
    }

    .timeline-item:last-child {
      padding-bottom: 0;
    }

    .timeline-dot {
      position: absolute;
      left: -34px;
      top: 8px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--grad-brand);
      border: 3px solid #fff;
      box-shadow: 0 0 0 1px rgba(162, 33, 56, 0.25);
    }

    .timeline-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 24px 26px;
      box-shadow: var(--shadow-card);
      border-left: 3px solid var(--primary-scarlet);
    }

    .timeline-card .step {
      font-family: var(--font-num);
      font-size: 26px;
      font-weight: 700;
      color: var(--primary-ember);
      letter-spacing: 0.02em;
    }

    .timeline-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-top: 8px;
    }

    .timeline-card p {
      margin-top: 10px;
      color: var(--ink-secondary);
      font-size: 15px;
    }

    .focus-band {
      background:
        linear-gradient(135deg, rgba(27, 18, 22, 0.95), rgba(75, 22, 38, 0.88)),
        url("/assets/images/backpic/back-2.png") center / cover no-repeat;
      color: #fff;
    }

    .focus-band .section-head h2 {
      color: #fff;
    }

    .focus-band .section-head p {
      color: rgba(255, 255, 255, 0.7);
    }

    .focus-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: stretch;
    }

    .focus-list {
      display: grid;
      gap: 14px;
    }

    .focus-line {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .focus-line:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .focus-icon {
      flex: 0 0 42px;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 194, 106, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: var(--accent-gold);
      font-weight: 700;
      font-family: var(--font-num);
    }

    .focus-line h3 {
      font-size: 17px;
      font-weight: 700;
    }

    .focus-line p {
      color: rgba(255, 255, 255, 0.74);
      font-size: 14.5px;
      line-height: 1.8;
      margin-top: 6px;
    }

    .focus-poster {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      padding: 20px;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .focus-poster img {
      width: 100%;
      height: 205px;
      object-fit: cover;
      border-radius: 16px;
    }

    .focus-poster .poster-note {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
    }

    .poster-tag {
      padding: 5px 12px;
      background: rgba(255, 194, 106, 0.18);
      color: var(--accent-gold);
      border-radius: var(--radius-pill);
      white-space: nowrap;
    }

    .subscribe-section {
      background: var(--bg-page);
      padding: 72px 0 100px;
    }

    .subscribe-panel {
      background: var(--bg-dark);
      position: relative;
      border-radius: var(--radius-lg);
      padding: 52px 48px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: center;
      color: #fff;
      box-shadow: var(--shadow-card-hover);
    }

    .subscribe-panel::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad-brand);
      opacity: 0.95;
    }

    .subscribe-panel::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      right: -120px;
      bottom: -140px;
      background: radial-gradient(circle, rgba(221, 67, 61, 0.38), transparent 62%);
      pointer-events: none;
    }

    .subscribe-copy h2 {
      font-size: 28px;
      font-weight: 800;
      line-height: 1.4;
    }

    .subscribe-copy p {
      margin-top: 14px;
      color: rgba(255, 255, 255, 0.7);
      max-width: 46ch;
    }

    .subscribe-form {
      position: relative;
      z-index: 2;
    }

    .subscribe-form .input-row {
      display: flex;
      gap: 12px;
      width: 100%;
    }

    .subscribe-form label {
      font-size: 14px;
      font-weight: 500;
      display: block;
      margin-bottom: 9px;
      color: rgba(255, 255, 255, 0.76);
    }

    .subscribe-form input[type="email"] {
      flex: 1 1 auto;
      min-width: 0;
      min-height: 52px;
      padding: 0 18px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.28);
      color: #fff;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .subscribe-form input[type="email"]::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .subscribe-form input[type="email"]:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 3px rgba(255, 194, 106, 0.18), 0 2px 14px rgba(255, 194, 106, 0.1);
    }

    .subscribe-form .btn {
      height: 52px;
      margin-top: 1px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .form-note {
      margin-top: 15px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.55);
    }

    .replay-cta-band {
      background: #fff;
      padding: 64px 0 100px;
    }

    .replay-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 28px;
    }

    .entry-card {
      border-radius: var(--radius-md);
      background: var(--bg-dark);
      color: #fff;
      padding: 30px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      min-height: 260px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .entry-card.light-card {
      background: #FFFDF6;
      border: 1px solid var(--line);
      color: var(--ink);
    }

    .entry-card .arrow {
      position: absolute;
      right: 24px;
      top: 28px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .entry-card:hover .arrow {
      transform: rotate(-45deg);
      background: var(--accent-gold);
    }

    .entry-card.light-card .arrow {
      background: rgba(162, 33, 56, 0.08);
      color: var(--primary-rose);
    }

    .entry-card .card-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.52);
      letter-spacing: 0.06em;
    }

    .light-card .card-label {
      color: var(--ink-ghost);
    }

    .entry-card h3 {
      font-size: 23px;
      margin-top: 50px;
      font-weight: 700;
      line-height: 1.35;
    }

    .entry-card p {
      margin-top: 12px;
      max-width: 44ch;
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.72);
    }

    .entry-card.light-card p {
      color: var(--ink-secondary);
    }

    .entry-foot {
      margin-top: 24px;
      font-size: 14px;
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--primary-scarlet);
      font-weight: 600;
    }

    .entry-card.dark-card .link-arrow {
      color: var(--accent-gold);
    }

    .link-arrow span {
      transition: transform 0.25s ease;
    }

    .entry-card:hover .link-arrow span {
      transform: translateX(4px);
    }

    .faq-section {
      background: #F5F0E9;
      padding: 96px 0 100px;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
    }

    .faq-head h2 {
      font-size: 30px;
      font-weight: 800;
      line-height: 1.4;
    }

    .faq-head p {
      margin-top: 16px;
      color: var(--ink-secondary);
      line-height: 1.85;
      max-width: 70ch;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.25s ease;
    }

    .faq-item.active {
      box-shadow: var(--shadow-card-hover);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      text-align: left;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.5;
      color: var(--ink);
    }

    .faq-icon {
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #F5DDD8;
      color: var(--primary-rose);
      font-size: 18px;
      font-weight: 400;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: var(--primary-rose);
      color: #fff;
    }

    .faq-a {
      display: none;
      padding: 0 22px 22px;
      color: var(--ink-secondary);
      font-size: 15px;
      line-height: 1.85;
    }

    .faq-item.active .faq-a {
      display: block;
    }

    .faq-item.active {
      border-top: 3px solid var(--primary-scarlet);
    }

    .bottom-cta {
      background: var(--grad-brand);
      border-radius: 0;
      padding: 68px 0 76px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .bottom-cta .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .bottom-cta h2 {
      font-size: 24px;
      line-height: 1.5;
      font-weight: 800;
      max-width: 36ch;
    }

    .bottom-cta p {
      margin-top: 6px;
      color: rgba(255, 255, 255, 0.8);
    }

    .site-footer {
      background: var(--bg-dark);
      color: rgba(255, 255, 255, 0.68);
      padding: 48px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.8fr 0.8fr;
      gap: 48px;
      padding-bottom: 44px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
    }

    .footer-desc {
      margin-top: 14px;
      max-width: 46ch;
      color: rgba(255, 255, 255, 0.55);
      font-size: 14px;
      line-height: 1.85;
    }

    .footer-col-title {
      color: #fff;
      font-weight: 600;
      margin-bottom: 16px;
      font-size: 16px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.66);
      transition: color 0.25s ease;
    }

    .footer-links a:hover {
      color: var(--accent-gold);
      text-shadow: 0 0 12px rgba(255, 194, 106, 0.4);
    }

    .footer-divider {
      border: none;
      height: 1px;
      background: rgba(255, 255, 255, 0.09);
      margin: 0;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 8px;
      padding-top: 24px;
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.42);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.42);
    }

    @media (max-width: 1200px) {
      .type-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .timeline-wrap,
      .faq-layout {
        gap: 40px;
      }
    }

    @media (max-width: 992px) {
      .nav-toggle {
        display: inline-flex;
      }

      .nav-menu {
        display: none;
      }

      .mobile-drawer.open {
        display: block;
      }

      .type-grid {
        grid-template-columns: 1fr;
      }

      .timeline-wrap,
      .faq-layout,
      .focus-grid,
      .subscribe-panel,
      .bottom-cta .container {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .bottom-cta .container {
        display: grid;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-copy h1 {
        font-size: 38px;
      }
    }

    @media (max-width: 640px) {
      .container {
        padding-inline: 16px;
      }

      .section {
        padding: 64px 0;
      }

      .header-inner {
        min-height: 60px;
      }

      .brand-text {
        font-size: 15px;
      }

      .brand-mark {
        width: 32px;
        height: 32px;
        font-size: 15px;
      }

      .replay-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy h1 {
        font-size: 34px;
      }

      .hero-copy .lead {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .subscribe-panel {
        padding: 36px 24px;
      }

      .subscribe-form .input-row {
        flex-direction: column;
      }

      .section-head {
        display: block;
        margin-bottom: 30px;
      }

      .section-head p {
        margin-top: 12px;
      }

      .section-head h2 {
        font-size: 26px;
      }

      .entry-card {
        min-height: 220px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
