/* roulang page: index */
:root {
    --bg-deep: #0B1016;
    --bg-panel: #111A22;
    --bg-card: #18212B;
    --border: rgba(255, 255, 255, 0.08);
    --gold: #E9B25F;
    --gold-hover: #F7C979;
    --cyan: #49D0B6;
    --text-strong: #E8EEF3;
    --text-muted: #A8B6C2;
    --paper-bg: #F5F1E9;
    --paper-text: #1D252D;
    --radius-lg: 24px;
    --radius-md: 15px;
    --shadow-card: 0 18px 50px rgba(0,0,0,0.35);
    --radius-pill: 999px;
    --font-sans: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-num: "Barlow Condensed", "DIN Alternate", Impact, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-deep); color: var(--text-strong); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--gold); text-decoration: none; transition: all .25s ease; }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; }
.container { max-width: 1320px; padding-left: 20px; padding-right: 20px; }

/* Header Nav */
.site-header { background: rgba(11, 16, 22, 0.88); height: 72px; border-bottom: 1px solid transparent; transition: all .3s ease; 
backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.site-header.scrolled { border-bottom-color: rgba(233, 178, 95, .5); box-shadow: 0 1px 18px rgba(233, 178, 95, .07); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 1.18rem; font-weight: 700; letter-spacing: .5px; }
.brand i { color: var(--gold); font-size: 1.5rem; }
.desktop-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.desktop-menu li a { display: inline-block; padding: 8px 14px; color: var(--text-strong); font-weight: 500; font-size: .92rem; position: relative; border-radius: 6px; }
.desktop-menu li a:hover { color: var(--gold); }
.desktop-menu li a.active { color: var(--gold); }
.desktop-menu li a.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.header-cta { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #E9B25F 0%, #F7C979 80%); color: #0B1016 !important; font-weight: 700; border-radius: 30px; padding: 8px 18px; font-size: .9rem; border: none; transition: all .3s ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,178,95,.25); }
.nav-toggle { background: none; border: 1px solid rgba(255,255,255,.2); color: #fff; width: 42px; height: 42px; border-radius: 12px; display: none; font-size: 1.2rem; }

/* Mobile nav */
.mobile-nav { position: fixed; top: 72px; left: 0; right: 0; background: rgba(11,16,22,0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); z-index: 999; padding: 20px; display: none; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.03); font-size: 1rem; }
.mobile-nav a.active { color: var(--gold); padding-left: 18px; border-left: 3px solid var(--gold); background: rgba(233,178,95,.04); }
.mobile-nav .header-cta { margin-top: 16px; justify-content: center; width: 100%; }
@media (max-width: 992px) {
    .desktop-menu, .header-cta { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* General block spacing */
.section-block { padding: clamp(4.5rem, 10vh, 8rem) 0; }
.section-title h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
.block-label { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.block-label span { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }
.block-label i { color: var(--gold); font-size: 1rem; }
.block-label::after { content: ''; height: 1px; width: 60px; background: var(--gold); opacity: .3; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; margin-top: 72px;
background: linear-gradient(100deg, #0B1016 0%, #111721 55%, rgba(17,23,33,.92) 80%), radial-gradient(circle at 20% 50%, rgba(233,178,95,.12), transparent 38%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat; }
.hero .container { position: relative; z-index: 2; }
.hero::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 200px; background: linear-gradient(to top, var(--bg-deep), transparent); z-index: 1; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(233, 178, 95, .12); border: 1px solid rgba(233,178,95,.25); color: #F7D9A0; padding: 6px 18px; border-radius: var(--radius-pill); font-size: .83rem; margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.16; letter-spacing: 1px; }
.hero .highlight { color: var(--gold); }
.hero-sub { font-size: 1.18rem; color: var(--text-muted); max-width: 640px; margin-top: 20px; text-align: left; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.btn-hero { background: linear-gradient(135deg, #E9B25F 0%, #F0C274 90%); border: none; color: #0B1016; font-weight: 700; border-radius: 30px; padding: 12px 26px; font-size: 1rem; box-shadow: 0 4px 16px rgba(233,178,95,.2); transition: all .3s; }
.btn-hero:hover { background: linear-gradient(135deg, #F2C170 0%, #F7D292 100%); color: #0B1016; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(233,178,95,.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 1px solid rgba(232,238,243,.35); color: var(--text-strong); border-radius: 30px; padding: 12px 26px; font-weight: 600; font-size: 1rem; transition: all .3s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 3px rgba(233,178,95,.08); }

.hero-stats { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 22px; display: flex; gap: 50px; flex-wrap: wrap; }
.stat-item .num { font-family: var(--font-num); font-size: 2rem; font-weight: 600; color: #fff; line-height: 1; }
.stat-item .num span { color: var(--gold); margin-left: 2px; font-size: 1.4rem; }
.stat-item .txt { color: var(--text-muted); font-size: .84rem; margin-top: 4px; }

/* Path module */
.path-grid { display: flex; flex-direction: column; gap: 0; position: relative; }
.path-item { display: flex; align-items: center; gap: 18px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: 18px; padding: 18px 24px; margin-bottom: 18px; transition: all .3s; }
.path-item:hover { border-color: rgba(233,178,95,.3); box-shadow: var(--shadow-card); transform: translateX(6px); }
.path-num { width: 44px; height: 44px; background: rgba(233, 178, 95, .1); border: 1px solid rgba(233,178,95,.25); border-radius: 12px; display: flex; justify-content: center; align-items: center; color: var(--gold); font-weight: 700; font-size: 1.1rem; flex: 0 0 auto; }
.path-icon { width: 40px; height: 40px; background: transparent; border: 1px dashed rgba(255,255,255,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.path-title { font-weight: 700; font-size: 1.05rem; margin: 0; color: var(--text-strong); }
.path-desc { color: var(--text-muted); font-size: .9rem; margin: 2px 0 4px; }
.path-arrow { margin-left: auto; color: var(--gold); font-size: 1.1rem; }
@media(min-width: 992px){
 .path-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
 .path-item { display: block; position: relative; padding: 26px 20px 24px; margin-bottom: 0; min-height: 200px; }
 .path-item::after { content: '\F285'; font-family: 'bootstrap-icons'; position: absolute; right: -14px; top: 40%; color: var(--gold); opacity: .6; font-size: 1.2rem; text-shadow: 0 0 12px rgba(233,178,95,.4); }
 .path-item:last-child::after{ content: none; } 
 .path-item:hover {}
 .path-num { width: 48px; height: 48px; margin-bottom: 16px; border-radius: 14px; }
 .path-icon { margin: 14px 0 0; }
 .path-arrow { margin-left: 0; margin-top: 12px; display: block; }
}

/* Feature cards */
.feature-main-border { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; height: 100%; position: relative; box-shadow: var(--shadow-card); }
.feature-main-img { height: 290px; position: relative; overflow: hidden; }
.feature-main-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-main-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,16,22,.85), rgba(11,16,22,.05)); z-index: 1; }
.feature-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(233,178,95,.9); color: #0B1016; font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 30px; }
.feature-content { padding: 10px 28px 28px; }
.feature-content h3 { font-size: 1.6rem; font-weight: 700; }
.feature-content p { color: var(--text-muted); font-size: .95rem; }
.feature-main { position: relative; height: 100%; }
.feature-mini { display: block; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; transition: all .3s; }
.feature-mini:last-child { margin-bottom: 0; }
.feature-mini:hover { border-color: rgba(233,178,95,.45); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.feature-mini-img { position: relative; height: 120px; background: var(--bg-card); }
.feature-mini-img img { object-fit: cover; height: 100%; width: 100%; }
.feature-mini-body { padding: 14px 18px; position: relative; }
.feature-mini-body h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.feature-mini-body span { font-size: .8rem; color: var(--gold); }
.feature-mini-badge { position: absolute; top: 10px; right: 10px; font-size: .7rem; background: rgba(11,16,22,.72); padding: 3px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,.1); }

/* Live list */
.live-list-section { background: #0D141B; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.live-grid { display: flex; flex-direction: column; }
.live-row { display: flex; align-items: center; justify-content: space-between; padding: 24px 2px; border-bottom: 1px solid rgba(255,255,255,.06); transition: all .35s ease; gap: 20px; }
.live-row:hover { background: rgba(233,178,95,.03); padding-left: 12px; }
.live-left { display: flex; align-items: flex-start; width: 78px; }
.date-block { background: var(--bg-panel); border-radius: 10px; padding: 8px 10px; text-align: center; border: 1px solid var(--border); min-width: 62px; }
.date-block strong { display: block; font-family: var(--font-num); font-size: 1.5rem; line-height: 1.1; color: #0B1016; background: linear-gradient(135deg, #E9B25F, #F7C979); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.date-block small { font-size: .7rem; color: var(--text-muted); letter-spacing: 1px; }
.live-centre { flex: 1; min-width: 260px; }
.live-meta { display: flex; gap: 20px; align-items: center; margin-bottom: 6px; flex-wrap: wrap; }
.live-meta .tag { color: var(--gold); font-size: .8rem; padding: 3px 10px; border: 1px solid rgba(233,178,95,.2); border-radius: var(--radius-pill); display: inline-block; line-height: 1.4; }
.live-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--text-strong); transition: all .3s; }
.live-title:hover { color: var(--gold); }
.live-desc { color: var(--text-muted); font-size: .88rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.live-excerpt { display: none; }
.live-empty { display: flex; align-items: center; justify-content: center; border: 2px dashed rgba(255,255,255,.15); border-radius: var(--radius-md); padding: 42px; text-align: center; color: var(--text-muted); }
.live-empty p::before { content: '\F13D'; font-family: 'Bootstrap-icons'; font-size: 2.2rem; display: block; margin-bottom: 16px; opacity: .5; }

@media (max-width: 768px){
 .live-row { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 18px; }
 .live-row:hover { padding-left: 8px; }
 .live-left { width: auto; }
 .live-centre { min-width: 100%; }
}

/* FAQ */
.faq-holder .accordion-item { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px !important; margin-bottom: 14px; overflow: hidden; }
.faq-holder .accordion-item.open { border-color: rgba(233,178,95,.4); }
.faq-holder .accordion-button { background: transparent; color: var(--text-strong); font-size: 1.02rem; font-weight: 600; box-shadow: none; border: none; padding: 18px 24px; }
.faq-holder .accordion-button:not(.collapsed) { color: var(--gold); background: rgba(233,178,95,.02); }
.faq-holder .accordion-button:focus { box-shadow: 0 0 0 3px rgba(233,178,95,.2); }
.faq-holder .accordion-body { color: var(--text-muted); line-height: 1.8; padding: 4px 24px 20px; font-size: .94rem; }

/* CTA */
.cta-outer { background: url('/assets/images/backpic/back-2.png'), linear-gradient(180deg, #0B1016, #101823); background-position: center; background-size: cover; position: relative; }
.cta-outer::before { content: ''; position: absolute; inset: 0; background: rgba(11,16,22,.84); }
.cta-card { text-align: center; position: relative; z-index: 2; }
.cta-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.cta-card h2 span { color: var(--gold); }
.cta-card p { color: var(--text-muted); max-width: 580px; margin: 14px auto 28px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #E9B25F 0%, #F9D58A 100%); color: #0B1016; font-weight: 700; border: none; font-size: 1.05rem; padding: 14px 32px; border-radius: 30px; transition: .35s; }
.cta-btn:hover { transform: translateY(-3px); color: #0B1016; box-shadow: 0 10px 40px rgba(233,178,95,.3); }

/* Footer */
.footer { background: #070B11; border-top: 1px solid rgba(233,178,95,.18); padding: 70px 0 24px; }
.footer h5 { color: #fff; font-weight: 700; margin-bottom: 18px; }
.footer .menu { list-style: none; padding: 0; margin: 0; }
.footer .menu li { margin-bottom: 10px; }
.footer .menu li a { color: var(--text-muted); font-size: .9rem; }
.footer .menu li a:hover { color: var(--gold); }
.footer-brand { color: #fff; font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
.footer-brand i { color: var(--gold); }
.footer .footnote { border-top: 1px solid rgba(255,255,255,.04); padding-top: 18px; margin-top: 26px; color: #5C707A; font-size: .85rem; text-align: center; }

/* bootstrap icons CDN */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

/* roulang page: article */
:root {
            --bg-deep: #0B1016;
            --bg-raise: #111A22;
            --bg-panel: #18212B;
            --line: rgba(255, 255, 255, .08);
            --gold: #E9B25F;
            --gold-hover: #F7C979;
            --cyan: #49D0B6;
            --text-hi: #E8EEF3;
            --text-mid: #A8B6C2;
            --text-low: #768594;
            --paper: #F5F1E9;
            --ink: #1D252D;
            --ink-soft: #43505B;
            --radius-lg: 24px;
            --radius-md: 14px;
            --shadow-lg: 0 18px 50px rgba(0, 0, 0, .35);
            --font-cn: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
            --font-num: "Barlow Condensed", "DIN Alternate", "Arial Narrow", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--bg-deep);
            color: var(--text-hi);
            font-family: var(--font-cn);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color .22s ease;
        }

        img {
            max-width: 100%;
        }

        .container {
            max-width: 1320px;
            width: 100%;
            padding-left: 1.1rem;
            padding-right: 1.1rem;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            border: 0;
            border-radius: 999px;
            padding: .72rem 1.55rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .55rem;
            transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
            cursor: pointer;
        }

        .btn-gold {
            background: linear-gradient(180deg, #E9B25F 0%, #D89F4C 100%);
            color: #0B1016;
            box-shadow: 0 8px 30px rgba(233, 178, 95, .22);
        }

        .btn-gold:hover,
        .btn-gold:focus-visible {
            background: linear-gradient(180deg, #F7C979 0%, #E9B25F 100%);
            color: #0B1016;
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(233, 178, 95, .34);
        }

        .btn-ghost {
            background: rgba(233, 178, 95, .04);
            color: var(--gold);
            border: 1px solid rgba(233, 178, 95, .55);
        }

        .btn-ghost:hover,
        .btn-ghost:focus-visible {
            background: rgba(233, 178, 95, .12);
            color: var(--gold-hover);
            border-color: var(--gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(233, 178, 95, .15);
        }

        a:focus-visible,
        button:focus-visible,
        .btn:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 4px;
            box-shadow: 0 0 0 4px rgba(233, 178, 95, .2);
            border-radius: 8px;
        }

        .text-line {
            color: var(--text-mid);
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(11, 16, 22, .88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid transparent;
            transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
        }

        .site-header.scrolled {
            border-bottom-color: rgba(233, 178, 95, .45);
            box-shadow: 0 6px 30px rgba(0, 0, 0, .3);
        }

        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            height: 72px;
            flex-wrap: nowrap;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            font-weight: 800;
            font-size: 1.12rem;
            color: var(--text-hi);
            white-space: nowrap;
            letter-spacing: .02em;
        }

        .brand i {
            color: var(--gold);
            font-size: 1.35rem;
        }

        .desktop-menu {
            display: flex;
            align-items: center;
            gap: .15rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .desktop-menu li {
            margin: 0;
        }

        .desktop-menu a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: .55rem .82rem;
            color: var(--text-mid);
            font-size: .94rem;
            font-weight: 500;
            border-radius: 12px;
            position: relative;
            transition: color .2s ease;
        }

        .desktop-menu a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: .1rem;
            width: 0;
            height: 2px;
            background: var(--gold);
            transform: translateX(-50%);
            border-radius: 999px;
            box-shadow: 0 0 8px rgba(233, 178, 95, .75);
            transition: width .22s ease;
        }

        .desktop-menu a:hover,
        .desktop-menu a.active {
            color: #fff;
        }

        .desktop-menu a:hover::after,
        .desktop-menu a.active::after {
            width: 54%;
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .55rem 1.2rem;
            background: linear-gradient(180deg, #E9B25F, #D89F4C);
            color: #0B1016;
            font-weight: 700;
            font-size: .92rem;
            border-radius: 999px;
            box-shadow: 0 0 24px rgba(233, 178, 95, .14);
            transition: transform .22s ease, box-shadow .22s ease;
        }

        .header-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 28px rgba(233, 178, 95, .35);
            color: #0B1016;
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .18);
            color: var(--text-hi);
            font-size: 1.6rem;
            line-height: 1;
            padding: .2rem .55rem;
            border-radius: 12px;
        }

        .nav-toggle:hover {
            color: var(--gold);
            border-color: var(--gold);
        }

        /* ===== 文章页 Hero ===== */
        .article-hero {
            position: relative;
            padding: 148px 0 88px;
            background:
                linear-gradient(180deg, rgba(11, 16, 22, .9), rgba(11, 16, 22, .72)),
                radial-gradient(circle at 16% 18%, rgba(233, 178, 95, .3) 0%, rgba(233, 178, 95, 0) 38%),
                url('/assets/images/backpic/back-1.webp') center/cover;
            border-bottom: 1px solid var(--line);
            overflow: hidden;
        }

        .article-hero::after {
            content: "";
            position: absolute;
            right: -10%;
            bottom: -20%;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(73, 208, 182, .1), transparent 65%);
            pointer-events: none;
        }

        .article-hero .container {
            position: relative;
            z-index: 2;
        }

        .crumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: .3rem;
            font-size: .86rem;
            color: var(--text-low);
            margin-bottom: 1.2rem;
        }

        .crumb a {
            color: var(--gold);
        }

        .crumb a:hover {
            color: var(--gold-hover);
        }

        .crumb span {
            color: var(--text-hi);
        }

        .article-hero-head {
            max-width: 930px;
            margin: 0 auto;
            text-align: center;
        }

        .article-kicker {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(233, 178, 95, .1);
            border: 1px solid rgba(233, 178, 95, .28);
            color: var(--gold);
            padding: .3rem 1rem;
            border-radius: 999px;
            font-size: .83rem;
            font-weight: 600;
            letter-spacing: .04em;
            margin-bottom: 1.2rem;
        }

        .article-kicker i {
            font-size: .85rem;
        }

        .article-hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.16;
            color: #fff;
            margin: 0 0 1.2rem;
            letter-spacing: -.01em;
            text-wrap: balance;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: .35rem 1.2rem;
            color: var(--text-mid);
            font-size: .9rem;
            margin-top: 1rem;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
        }

        .article-meta i {
            color: var(--gold);
            opacity: .8;
        }

        .article-meta .meta-strong {
            color: var(--text-hi);
            font-weight: 600;
        }

        /* ===== 正文容器 ===== */
        .article-body {
            background: var(--bg-raise);
            padding: 0 0 clamp(4.5rem, 10vh, 7rem);
        }

        .article-sheet {
            background: var(--paper);
            color: var(--ink);
            margin-top: -40px;
            border-radius: 28px;
            padding: clamp(1.4rem, 5vw, 3.2rem);
            box-shadow: 0 26px 80px rgba(0, 0, 0, .45);
            position: relative;
            overflow: hidden;
        }

        .article-sheet::before {
            content: "";
            position: absolute;
            top: 0;
            left: 56px;
            right: 56px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            border-radius: 0 0 8px 8px;
            opacity: .9;
        }

        .sheet-inner {
            max-width: 860px;
            margin: 0 auto;
        }

        .article-catline {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: .7rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.3rem;
            border-bottom: 1px solid rgba(29, 37, 45, .1);
        }

        .article-catline .cat-badge {
            display: inline-flex;
            align-items: center;
            gap: .42rem;
            background: rgba(233, 178, 95, .14);
            border: 1px solid rgba(233, 178, 95, .45);
            color: #7d5b26;
            padding: .27rem .85rem;
            border-radius: 999px;
            font-size: .8rem;
            font-weight: 700;
        }

        .article-catline .lead-dot {
            color: var(--gold);
            font-size: .75rem;
        }

        .article-content {
            font-size: 1.02rem;
            color: #303a43;
        }

        .article-content > * {
            margin-bottom: 1.2rem;
        }

        .article-content p {
            line-height: 1.85;
            margin-bottom: 1.15rem;
            color: #36414a;
        }

        .article-content h2,
        .article-content h3,
        .article-content h4 {
            color: var(--ink);
            font-weight: 700;
            line-height: 1.4;
            margin-top: 1.4rem;
        }

        .article-content h2 {
            font-size: 1.55rem;
            border-left: 4px solid var(--gold);
            padding-left: .8rem;
            line-height: 1.4;
        }

        .article-content h3 {
            font-size: 1.25rem;
        }

        .article-content img {
            width: 100%;
            border-radius: 14px;
            margin: 1.5rem 0 .4rem;
        }

        .article-content blockquote {
            border-left: 4px solid var(--gold);
            background: rgba(233, 178, 95, .08);
            padding: 1rem 1.25rem;
            border-radius: 0 14px 14px 0;
            color: #47535d;
            font-style: normal;
            margin: 1.5rem 0;
        }

        .article-content ul,
        .article-content ol {
            padding-left: 1.3rem;
            margin: 1rem 0;
        }

        .article-content ul li,
        .article-content ol li {
            margin-bottom: .45rem;
            line-height: 1.8;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: .94rem;
        }

        .article-content th,
        .article-content td {
            border: 1px solid rgba(29, 37, 45, .12);
            padding: .7rem .9rem;
            background: #fff;
        }

        .article-content th {
            background: #f2ead9;
            color: var(--ink);
        }

        .article-content figcaption {
            font-size: .82rem;
            color: #85909a;
            text-align: center;
            margin-bottom: 1rem;
        }

        .article-content a {
            color: #a2690e;
            border-bottom: 1px solid rgba(162, 105, 14, .35);
        }

        .article-content a:hover {
            color: #70450a;
        }

        .article-empty {
            text-align: center;
            padding: 4.5rem 1.5rem;
        }

        .article-empty .empty-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            background: rgba(233, 178, 95, .08);
            border: 1px solid rgba(233, 178, 95, .35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: var(--gold);
            margin-bottom: 1.2rem;
        }

        .article-empty h3 {
            font-weight: 700;
            margin-bottom: .5rem;
            color: var(--ink);
        }

        .article-empty p {
            color: #7d8890;
            margin-bottom: 1.5rem;
        }

        .article-footer {
            border-top: 1px solid rgba(29, 37, 45, .1);
            margin-top: 2rem;
            padding-top: 1.5rem;
        }

        .art-tags {
            display: flex;
            flex-wrap: wrap;
            gap: .55rem;
            margin-bottom: 1.4rem;
        }

        .art-tags .tag {
            background: rgba(29, 37, 45, .05);
            border: 1px solid rgba(29, 37, 45, .12);
            color: #4d5962;
            padding: .3rem .8rem;
            border-radius: 999px;
            font-size: .8rem;
            transition: border-color .2s, background .2s;
        }

        .art-tags .tag:hover {
            background: rgba(233, 178, 95, .14);
            border-color: rgba(233, 178, 95, .45);
            color: #6b4d18;
        }

        .article-backrow {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            color: #70450a;
        }

        .back-link:hover {
            color: #a2690e;
        }

        .back-link i {
            transition: transform .2s;
        }

        .back-link:hover i {
            transform: translateX(-4px);
        }

        /* ===== 相关推荐 ===== */
        .related-section {
            background: var(--bg-deep);
            padding: clamp(4.5rem, 10vh, 7rem) 0;
            border-top: 1px solid rgba(255, 255, 255, .05);
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1.2rem;
            margin-bottom: 2.2rem;
        }

        .section-head .eyebrow {
            display: inline-block;
            font-family: var(--font-num);
            letter-spacing: .18em;
            text-transform: uppercase;
            font-size: .8rem;
            color: var(--gold);
            margin-bottom: .35rem;
        }

        .section-head h2 {
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
        }

        .section-head p {
            color: var(--text-mid);
            margin: 0;
            max-width: 380px;
        }

        .rel-card {
            height: 100%;
            background: var(--bg-raise);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 24px;
            overflow: hidden;
            display: block;
            transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
        }

        .rel-card:hover {
            transform: translateY(-5px);
            border-color: rgba(233, 178, 95, .55);
            box-shadow: 0 0 0 1px rgba(233, 178, 95, .18), 0 20px 46px rgba(0, 0, 0, .45);
        }

        .rel-card .thumb {
            position: relative;
            overflow: hidden;
        }

        .rel-card .thumb img {
            width: 100%;
            height: 216px;
            object-fit: cover;
            transition: transform .45s ease;
            display: block;
        }

        .rel-card:hover .thumb img {
            transform: scale(1.04);
        }

        .rel-card .thumb::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 42%, rgba(11, 16, 22, .72) 100%);
        }

        .rel-card .tag-line {
            position: absolute;
            top: .9rem;
            left: .9rem;
            z-index: 2;
            background: rgba(11, 16, 22, .72);
            border: 1px solid rgba(233, 178, 95, .35);
            color: var(--gold);
            font-size: .76rem;
            font-weight: 600;
            padding: .2rem .75rem;
            border-radius: 999px;
            backdrop-filter: blur(8px);
            letter-spacing: .05em;
        }

        .rel-card .card-body {
            padding: 1.2rem 1.25rem 1.4rem;
        }

        .rel-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .4rem;
            line-height: 1.45;
        }

        .rel-card p {
            font-size: .85rem;
            color: var(--text-mid);
            line-height: 1.6;
            margin: 0;
        }

        .rel-card .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1rem;
            font-size: .79rem;
            color: var(--text-low);
            border-top: 1px solid rgba(255, 255, 255, .07);
            padding-top: .8rem;
        }

        .rel-card .card-meta .arrow {
            color: var(--gold);
            font-size: 1rem;
        }

        /* ===== CTA ===== */
        .cta-zone {
            position: relative;
            padding: clamp(4.5rem, 10vh, 7rem) 0;
            background:
                linear-gradient(105deg, rgba(11, 16, 22, .96), rgba(11, 16, 22, .78)),
                url('/assets/images/backpic/back-3.webp') center/cover;
            overflow: hidden;
            text-align: center;
        }

        .cta-zone::before {
            content: "";
            position: absolute;
            top: -120%;
            left: 10%;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(233, 178, 95, .16), transparent 60%);
        }

        .cta-inner {
            max-width: 760px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-inner .eyebrow {
            color: var(--gold);
            font-size: .78rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            margin-bottom: .5rem;
            display: block;
        }

        .cta-inner h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: .7rem;
        }

        .cta-inner p {
            color: var(--text-mid);
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .cta-btns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: .75rem;
        }

        /* ===== 页脚 ===== */
        .footer {
            background: #080C11;
            border-top: 1px solid rgba(233, 178, 95, .28);
            padding: clamp(3.5rem, 8vh, 5.5rem) 0 2rem;
            position: relative;
        }

        .footer .footer-brand {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
        }

        .footer .footer-brand i {
            color: var(--gold);
        }

        .footer h5 {
            color: #fff;
            font-size: .98rem;
            font-weight: 700;
            margin-bottom: 1.05rem;
        }

        .footer ul.menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer ul.menu li {
            margin-bottom: .45rem;
            font-size: .9rem;
            color: var(--text-mid);
        }

        .footer ul.menu a {
            color: var(--text-mid);
            transition: color .2s ease, padding-left .2s ease;
        }

        .footer ul.menu a:hover {
            color: var(--gold-hover);
            padding-left: 4px;
        }

        .footer .footnote {
            border-top: 1px solid rgba(255, 255, 255, .07);
            padding-top: 1.4rem;
            margin-top: 2.6rem;
            text-align: center;
            color: var(--text-low);
            font-size: .82rem;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1199.98px) {
            .desktop-menu a {
                padding: .55rem .6rem;
                font-size: .88rem;
            }

            .header-cta {
                padding: .5rem 1rem;
                font-size: .86rem;
            }
        }

        @media (max-width: 991.98px) {
            .nav-wrap {
                min-height: 72px;
            }

            .desktop-menu {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(11, 16, 22, .98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-bottom: 1px solid rgba(233, 178, 95, .4);
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: .8rem 1rem 1.1rem;
                gap: .1rem;
                box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
            }

            .site-header.open .desktop-menu {
                display: flex;
            }

            .desktop-menu a {
                justify-content: flex-start;
                min-height: 48px;
                padding: .6rem .7rem;
                border-radius: 10px;
                color: var(--text-hi);
                font-size: 1rem;
            }

            .desktop-menu a::after {
                left: .66rem;
                transform: none;
                bottom: .25rem;
            }

            .desktop-menu a:hover::after,
            .desktop-menu a.active::after {
                width: 28px;
            }

            .header-cta {
                display: none;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .article-hero {
                padding: 132px 0 96px;
            }
        }

        @media (max-width: 767.98px) {
            .brand {
                font-size: 1rem;
            }

            .article-sheet {
                margin-top: -32px;
                border-radius: 22px;
                padding: 1.3rem 1rem 2rem;
            }

            .article-sheet::before {
                left: 24px;
                right: 24px;
            }

            .article-backrow {
                flex-direction: column;
                align-items: flex-start;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .section-head p {
                max-width: 100%;
            }

            .rel-card .thumb img {
                height: 200px;
            }

            .cta-btns .btn {
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .article-meta {
                justify-content: flex-start;
                flex-direction: column;
                align-items: center;
                gap: .3rem;
            }

            .article-hero h1 {
                font-size: 1.75rem;
            }

            .crumb {
                font-size: .78rem;
            }

            .footer .col-lg-4,
            .footer .col-lg-3,
            .footer .col-lg-5 {
                margin-bottom: 1.2rem;
            }
        }

/* roulang page: category1 */
:root {
    --bg-deep: #0B1016;
    --bg-dark: #111A22;
    --panel: #18212B;
    --paper: #F5F1E9;
    --gold: #E9B25F;
    --gold-hover: #F7C979;
    --cyan: #49D0B6;
    --line: rgba(255, 255, 255, 0.08);
    --text: #E8EEF3;
    --muted: #A8B6C2;
    --dark-text: #1D252D;
    --radius-lg: 24px;
    --radius-md: 14px;
    --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 0 0 1px rgba(233, 178, 95, 0.45), 0 22px 60px rgba(0, 0, 0, 0.45);
    --font-num: "Barlow Condensed", "DIN Alternate", "Roboto Condensed", "Arial Narrow", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg-deep);
    color: var(--text);
    font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.28;
    color: #fff;
    font-weight: 800;
    margin: 0 0 .8rem;
}
p {
    margin: 0 0 1rem;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
button,
input {
    font-family: inherit;
}
.container {
    max-width: 1320px;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1045;
    height: 76px;
    background: rgba(11, 16, 22, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
    border-bottom: 1px solid rgba(233, 178, 95, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.nav-wrap {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 22px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
    white-space: nowrap;
}
.brand i {
    color: var(--gold);
    font-size: 1.35rem;
}
.brand:hover {
    color: var(--gold);
}
.desktop-menu {
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.desktop-menu li a {
    position: relative;
    display: block;
    padding: .6rem .85rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 10px;
    transition: color .2s, transform .2s;
}
.desktop-menu li a::after {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .22rem;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(233, 178, 95, 0.9);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.desktop-menu li a:hover,
.desktop-menu li a.active {
    color: var(--gold-hover);
}
.desktop-menu li a:hover::after,
.desktop-menu li a.active::after {
    transform: scaleX(1);
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 44px;
    padding: 0 1.35rem;
    border-radius: 30px;
    background: linear-gradient(180deg, #F1C772 0%, #DCA44F 100%);
    color: #102028;
    font-weight: 700;
    font-size: .9rem;
    border: 0;
    box-shadow: 0 8px 24px rgba(233, 178, 95, 0.18);
    transition: background .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.header-cta:hover {
    background: linear-gradient(180deg, var(--gold-hover), #EAB568);
    box-shadow: 0 10px 26px rgba(247, 201, 121, 0.28);
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.25rem;
}

/* ===== Buttons ===== */
.btn-main,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .7rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.2;
    transition: background .25s, border-color .25s, box-shadow .25s, transform .25s, color .25s;
}
.btn-main {
    background: linear-gradient(180deg, #F1C772 0%, #DCA44F 100%);
    color: #102028;
    border: 0;
    box-shadow: 0 8px 22px rgba(233, 178, 95, 0.18);
}
.btn-main:hover {
    background: linear-gradient(180deg, #F7C979, #E7B260);
    color: #0A1114;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(233, 178, 95, 0.28);
}
.btn-outline {
    background: rgba(233, 178, 95, 0.04);
    color: var(--gold);
    border: 1px solid rgba(233, 178, 95, 0.6);
}
.btn-outline:hover {
    background: rgba(233, 178, 95, 0.12);
    color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(233, 178, 95, 0.15);
}
.btn-main.btn-sm,
.btn-outline.btn-sm {
    min-height: 42px;
    padding: .5rem 1.1rem;
    font-size: .88rem;
}

/* ===== Breadcrumb ===== */
.crumb-nav {
    padding: 15px 0;
    background: #0D1218;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.crumb-nav .container {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--muted);
}
.crumb-nav a {
    color: var(--gold);
}
.crumb-nav i {
    font-size: .75rem;
    color: #607080;
}
.crumb-nav span {
    color: #D8E1E8;
}

/* ===== Hero ===== */
.category-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 5rem 0 4rem;
    min-height: 58vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.overview-hero {
    background-image: linear-gradient(90deg, rgba(11, 16, 22, 0.92) 0%, rgba(11, 16, 22, 0.62) 58%, rgba(11, 16, 22, 0.32) 100%), url('/assets/images/backpic/back-3.webp');
}
.category-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 160px;
    background: linear-gradient(transparent, rgba(11, 16, 22, 0.75));
    pointer-events: none;
}
.category-hero .container {
    position: relative;
    z-index: 2;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: rgba(233, 178, 95, 0.13);
    border: 1px solid rgba(233, 178, 95, 0.35);
    color: var(--gold);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 1.3rem;
    backdrop-filter: blur(8px);
}
.hero-tag i {
    color: var(--cyan);
}
.category-hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.category-hero h1 span {
    color: var(--gold);
}
.hero-lead {
    max-width: 780px;
    color: #C8D7E1;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

/* ===== Sections ===== */
.section {
    position: relative;
    padding: clamp(4rem, 9vh, 7rem) 0;
}
.section-compact {
    padding-top: 2.5rem;
}
.section-head {
    max-width: 860px;
    margin-bottom: 2.8rem;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: .9rem;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}
.section h2 {
    font-size: clamp(1.8rem, 3.1vw, 2.6rem);
    margin-bottom: 1rem;
}
.section .section-head p,
.lead-copy {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0;
}
.text-gold {
    color: var(--gold);
}
.pulse-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 0 rgba(73, 208, 182, 0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(73, 208, 182, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(73, 208, 182, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(73, 208, 182, 0);
    }
}

/* ===== Split intro ===== */
.cover-feature {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: 2rem;
}
.cover-feature img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.cover-feature .cover-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem 1.8rem 1.5rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
    font-size: .95rem;
}
.cover-feature .cover-caption strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: .35rem;
    color: var(--gold-hover);
}
.intro-copy {
    color: var(--muted);
}
.intro-copy p {
    margin-bottom: 1.25rem;
}

/* ===== Side nav card ===== */
.side-nav-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 100px;
}
.side-nav-card .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1.2rem;
}
.side-nav-card .card-top h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}
.card-top .live-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    font-size: .75rem;
    color: var(--cyan);
    background: rgba(73, 208, 182, 0.1);
    border: 1px solid rgba(73, 208, 182, 0.3);
}
.side-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.side-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.side-nav-list li:last-child {
    border-bottom: 0;
}
.side-nav-list a {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem .25rem;
    font-weight: 600;
    color: #D5E1E8;
    transition: color .2s, padding-left .2s;
}
.side-nav-list a:hover {
    color: var(--gold);
    padding-left: .55rem;
}
.side-nav-list .side-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 10px;
    background: rgba(233, 178, 95, 0.12);
    border: 1px solid rgba(233, 178, 95, 0.2);
    color: var(--gold);
    font-family: var(--font-num);
    font-weight: 700;
    font-size: .8rem;
}
.side-nav-list .side-line {
    flex: 1;
}
.side-nav-list .side-arrow {
    color: #697B88;
    font-size: .9rem;
}
.side-nav-list a:hover .side-arrow {
    color: var(--gold);
    transform: translateX(3px);
}
.side-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.6rem;
}

/* ===== Module grid ===== */
.module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.module-cell {
    background: linear-gradient(160deg, rgba(24, 33, 43, 0.95), rgba(17, 26, 34, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.6rem 1.7rem;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.module-cell:hover {
    border-color: rgba(233, 178, 95, 0.5);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.module-cell .module-head {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1rem;
}
.module-cell .module-ico {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--gold);
    background: rgba(233, 178, 95, 0.12);
    border: 1px solid rgba(233, 178, 95, 0.18);
    font-size: 1.2rem;
}
.module-cell .module-no {
    margin-left: auto;
    color: #5F7280;
    font-family: var(--font-num);
    font-size: 1rem;
    letter-spacing: .05em;
}
.module-cell h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: .6rem;
}
.module-cell p {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}
.module-cell .module-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    margin-top: 1.1rem;
}
.module-cell .module-link i {
    transition: transform .2s;
}
.module-cell .module-link:hover i {
    transform: translateX(4px);
}

/* ===== Status tiles ===== */
.status-wrap {
    margin-top: 3rem;
}
.status-tile {
    height: 100%;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.6rem;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.status-tile:hover {
    border-color: rgba(233, 178, 95, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}
.status-tile .st-label {
    font-family: var(--font-num);
    letter-spacing: .08em;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .6rem;
}
.status-tile h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: .4rem;
}
.status-tile p {
    color: var(--muted);
    font-size: .9rem;
    margin: 0;
}

/* ===== Paper strip ===== */
.paper-strip {
    background: var(--paper);
    color: var(--dark-text);
    border-radius: var(--radius-lg);
    padding: clamp(1.8rem, 4vw, 3.2rem);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(245, 241, 233, 0.1);
}
.paper-strip .eyebrow {
    color: #9B6F2E;
}
.paper-strip .eyebrow::before {
    background: #9B6F2E;
}
.paper-strip h2,
.paper-strip h3,
.paper-strip h4 {
    color: var(--dark-text);
}
.paper-strip p {
    color: #4A5561;
}
.steps-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-top: 2rem;
}
.process-step {
    background: #fff;
    border: 1px solid rgba(29, 37, 45, 0.08);
    border-radius: 18px;
    padding: 1.4rem;
    min-height: 170px;
    transition: box-shadow .25s, transform .25s;
}
.process-step:hover {
    box-shadow: 0 12px 30px rgba(40, 46, 53, 0.1);
    transform: translateY(-3px);
}
.process-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 .6rem;
    border-radius: 10px;
    background: rgba(233, 178, 95, 0.18);
    color: #9B6F2E;
    font-family: var(--font-num);
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 1rem;
}
.process-step h4 {
    font-size: 1rem;
    margin-bottom: .45rem;
}
.process-step p {
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ ===== */
.faq-box .accordion-item {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.faq-box .accordion-button {
    background: transparent;
    color: #E8EEF3;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    border-radius: 0;
}
.faq-box .accordion-button:not(.collapsed) {
    background: rgba(233, 178, 95, 0.08);
    color: var(--gold-hover);
}
.faq-box .accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(233, 178, 95, 0.4);
}
.faq-box .accordion-button::after {
    filter: invert(76%) sepia(51%) saturate(600%) hue-rotate(356deg) brightness(91%) contrast(88%);
    opacity: .9;
}
.faq-box .accordion-body {
    color: #B6C4CF;
    font-size: .95rem;
    line-height: 1.8;
    padding: .2rem 1.5rem 1.6rem;
}

/* ===== CTA ===== */
.cta-block {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(2.5rem, 7vw, 5.2rem);
    background-image: linear-gradient(90deg, rgba(11, 16, 22, 0.92), rgba(11, 16, 22, 0.55)), url('/assets/images/backpic/back-2.png');
    background-position: center;
    background-size: cover;
    color: #fff;
    box-shadow: var(--shadow-card);
}
.cta-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(233, 178, 95, 0.22), transparent 55%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.cta-inner .eyebrow {
    color: var(--gold);
}
.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    margin-bottom: 1.2rem;
}
.cta-inner p {
    color: #C9D7E2;
    font-size: 1.02rem;
    margin-bottom: 1.8rem;
}
.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

/* ===== Footer ===== */
.footer {
    background: #070B10;
    border-top: 1px solid rgba(233, 178, 95, 0.45);
    padding: 4rem 0 1.2rem;
    margin-top: 5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
}
.footer-brand i {
    color: var(--gold);
}
.footer h5 {
    color: var(--gold);
    font-size: .95rem;
    letter-spacing: .08em;
    margin-bottom: 1.1rem;
}
.footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer .menu li {
    display: flex;
    align-items: center;
    margin-bottom: .7rem;
    color: var(--muted);
}
.footer .menu a {
    color: var(--muted);
    transition: color .2s, padding-left .2s;
}
.footer .menu a:hover {
    color: var(--gold);
    padding-left: 3px;
}
.footnote {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #788895;
    font-size: .85rem;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .site-header {
        height: auto;
    }
    .nav-wrap {
        flex-wrap: wrap;
        min-height: 76px;
        position: relative;
    }
    .nav-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }
    .desktop-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 1rem;
        margin: 0;
        transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
        background: rgba(10, 15, 21, 0.96);
        border-bottom: 1px solid rgba(233, 178, 95, 0.18);
        border-radius: 0 0 18px 18px;
    }
    .desktop-menu.open {
        max-height: 500px;
        opacity: 1;
        padding: 1rem 1rem 1.2rem;
    }
    .desktop-menu li a {
        padding: .85rem .6rem;
        border-radius: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .desktop-menu li:last-child a {
        border-bottom: 0;
    }
    .desktop-menu li a::after {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .side-nav-card {
        position: static;
        margin-top: .5rem;
    }
    .steps-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-hero {
        min-height: auto;
        padding: 4.2rem 0 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .module-grid {
        grid-template-columns: 1fr;
    }
    .steps-matrix {
        grid-template-columns: 1fr;
    }
    .cover-feature img {
        height: 260px;
    }
    .section {
        padding: 3.6rem 0;
    }
    .footer {
        margin-top: 3rem;
    }
}

@media (max-width: 575.98px) {
    .brand {
        font-size: .98rem;
    }
    .brand i {
        font-size: 1.1rem;
    }
    .category-hero {
        padding: 2.8rem 0 3rem;
    }
    .category-hero h1 {
        font-size: 2rem;
    }
    .hero-lead {
        font-size: .96rem;
        line-height: 1.7;
    }
    .hero-btns .btn-main,
    .hero-btns .btn-outline,
    .cta-btns .btn-main,
    .cta-btns .btn-outline {
        width: 100%;
    }
    .side-actions .btn-main,
    .side-actions .btn-outline {
        width: 100%;
    }
    .cta-block {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .paper-strip {
        padding: 1.5rem;
    }
    .process-step {
        min-height: 0;
    }
    .footer {
        padding-top: 3rem;
    }
}

/* roulang page: category2 */
:root {
    --bg-deep: #0B1016;
    --bg-dark: #111A22;
    --bg-panel: #18212B;
    --line-light: rgba(255, 255, 255, 0.08);
    --gold: #E9B25F;
    --gold-hover: #F7C979;
    --cyan: #49D0B6;
    --text-light: #E8EEF3;
    --text-muted: #A8B6C2;
    --paper: #F5F1E9;
    --paper-text: #1D252D;
    --radius-large: 24px;
    --radius-small: 14px;
    --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
    --transition-base: all 0.3s ease;
    --font-main: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-headline: "Barlow Condensed", "DIN Alternate", "Bahnschrift", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--paper);
    color: var(--paper-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input {
    font-family: inherit;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.site-header {
    background: rgba(11, 16, 22, 0.9);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.site-header.scrolled {
    border-bottom: 1px solid rgba(233, 178, 95, 0.35);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand i {
    color: var(--gold);
    font-size: 1.6rem;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--transition-base);
    letter-spacing: 0.01em;
}

.desktop-menu li a:hover {
    color: #fff;
    background: rgba(233, 178, 95, 0.08);
}

.desktop-menu li a.active {
    color: var(--gold);
    background: rgba(233, 178, 95, 0.1);
    box-shadow: inset 0 -2px 0 var(--gold);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), #d2984a);
    color: #0B1016 !important;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    transition: var(--transition-base);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 178, 95, 0.3);
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 178, 95, 0.5);
}

.nav-wrap .mobile-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #111A22;
    flex-direction: column;
    padding: 12px 20px 20px;
    list-style: none;
    border-bottom: 1px solid var(--line-light);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu li a {
    display: block;
    padding: 12px 8px;
    color: #E8EEF3;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
}

.mobile-menu li a:last-child {
    border-bottom: none;
}

.mobile-menu li a.active,
.mobile-menu li a:hover {
    color: var(--gold);
    background: transparent;
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #0B1016;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 30px;
    margin-top: 12px;
    gap: 6px;
}

@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    .site-header .header-cta {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.kv-section {
    background: #0B1016;
    background-image: radial-gradient(ellipse at 30% 20%, rgba(233, 178, 95, 0.12), transparent 55%),
        linear-gradient(120deg, rgba(11, 16, 22, 0.96), rgba(17, 26, 34, 0.92));
    background-size: cover;
    background-position: center;
    padding-top: 132px;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--line-light);
    text-align: center;
}

.kv-section .category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233, 178, 95, 0.12);
    border: 1px solid rgba(233, 178, 95, 0.3);
    color: var(--gold);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    font-weight: 600;
}

.kv-section h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    color: #E8EEF3;
    font-weight: 800;
    margin-bottom: 14px;
}

.kv-section h1 span {
    color: var(--gold);
    display: inline-block;
}

.kv-section .intro-txt {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #A8B6C2;
    max-width: 784px;
    margin: 0 auto;
}

.section-padding {
    padding: clamp(3.5rem, 7vh, 5rem) 0;
}

.index-bg {
    background: var(--paper);
    position: relative;
}

.container {
    max-width: 1320px;
    width: 92%;
    margin: 0 auto;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: clamp(2rem, 4vh, 3rem);
}

.section-head .title-pretag {
    font-size: 0.75rem;
    color: rgba(187, 111, 0, 0.55);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.section-head h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: var(--paper-text);
    margin: 0;
}

.section-head .head-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 8px;
}

.section-head .head-note {
    color: #4b5966;
    font-size: 0.9rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.section-head .head-note i {
    color: var(--gold);
}

.index-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.index-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-small);
    padding: 26px 26px 22px;
    display: flex;
    gap: 20px;
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
}

.index-card:hover {
    box-shadow: 0 0 0 1px var(--gold), 0 18px 36px rgba(0, 0, 0, 0.06);
}

.index-card:hover {
    transform: translateY(-4px);
}

.index-card:hover .go-icon {
    background: var(--gold);
    color: #0B1016;
}

.index-card .index-line {
    display: flex;
    flex-direction: column;
    flex: 0 0 46px;
    align-items: center;
}

.index-card .index-line .index-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-headline);
    background: rgba(207, 151, 66, 0.68);
    color: #0B1016;
    font-size: 1.05rem;
    line-height: 40px;
    letter-spacing: 0.06em;
}

.index-card .card-content {
    flex: 1;
    min-width: 0;
}

.index-card .card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1D252D;
    display: flex;
    align-items: center;
    gap: 8px;
}

.index-card .card-title i {
    color: rgba(221, 137, 11, 0.5);
    font-size: 0.85rem;
}

.index-card .card-sub {
    font-size: 0.86rem;
    color: #4b5966;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-card .go-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 16, 22, 0.06);
    color: rgba(11, 16, 22, 0.5);
    font-size: 1.05rem;
    flex: none;
}

.page-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 10px;
}

.page-nav-grid a {
    background: rgba(11, 16, 22, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: inline-block;
    border-radius: 30px;
    font-size: 0.85rem;
    padding: 6px 16px;
    color: #1D252D;
    transition: var(--transition-base);
    font-weight: 600;
}

.page-nav-grid a:hover {
    background: var(--gold);
    color: #0B1016;
    border-color: transparent;
}

.hero-secondary {
    background-image: url('/assets/images/backpic/back-2.png');
    background-size: cover;
    background-position: center;
    background-color: #0B1016;
    background-blend-mode: overlay;
    padding-top: clamp(5rem, 10vh, 8rem);
    padding-bottom: clamp(4.5rem, 8vh, 6rem);
}

.hero-secondary .category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233, 178, 95, 0.12);
    border: 1px solid rgba(233, 178, 95, 0.3);
    color: var(--gold);
    border-radius: 50px;
    padding: 6px 19px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero-secondary h1 {
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 3.4rem);
    line-height: 1.2;
}

.hero-secondary h1 span {
    color: var(--gold);
}

.hero-secondary p {
    color: var(--text-muted);
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.7;
}

.breadcrumb-block {
    display: flex;
    gap: 6px;
    font-size: 0.85rem;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255,255,255,.55);
    flex-wrap: wrap;
}

.breadcrumb-block a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-block a:hover {
    color: var(--gold-hover);
}


.timeline-pc { position: relative; }
.timeline-item { position: relative; padding-left: 4px; display: flex; gap: 20px;}
.timeline-line { position: absolute; left: 19px; top: 40px; bottom: 10px; width: 1px; background: rgba(0,0,0,.08); }

@media(max-width:768px) {
    .timeline-line { left: 14px; }
}

.steps-wrap {
    margin-top: 2.5rem;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

.step-line {
    width: 1px;
    background: rgba(0,0,0,0.08);
    margin-left: 19px;
    flex: 1;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(207, 151, 66, 0.68);
    color: #0B1016;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: none;
}

.step-card {
    background: #fff;
    border-radius: var(--radius-small);
    padding: 24px 26px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    flex: 1;
    border: 1px solid rgba(0,0,0,.03);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #57636f;
    line-height: 1.8;
}

.need-bg {
    background: #0B1016;
}

.need-head {
    text-align: center;
    display: block;
    margin-bottom: clamp(1.8rem, 4vh, 3rem);
}

.need-head .title-pretag {
    font-size: 0.75rem;
    color: rgba(233, 178, 95, 0.7);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.need-head h2 {
    color: #E8EEF3;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
}

.need-head .subtext {
    color: #A8B6C2;
    font-size: 0.92rem;
    max-width: 610px;
    margin: 6px auto 0;
}

.need-card {
    background: #111A22;
    border-radius: 20px;
    padding: 26px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.need-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 88px;
    height: 88px;
    background: radial-gradient(circle at 100% 0, var(--gold), transparent 70%);
    opacity: 0.1;
    border-radius: 0 0 0 40px;
    pointer-events: none;
}

.need-card:hover {
    background: rgba(17, 26, 34, 0.85);
}

.need-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(233, 178, 95, 0.15);
    border: 1px solid rgba(233, 178, 95, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.need-card h3 {
    font-size: 1.1rem;
    color: #E8EEF3;
    margin-bottom: 6px;
}

.need-card p {
    font-size: 0.85rem;
    color: #A8B6C2;
    line-height: 1.7;
    margin: 0;
}

.faq-section {
    background: #F5F1E9;
    padding: clamp(3.5rem, 8vh, 5rem) 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title .title-pretag {
    font-size: 0.75rem;
    color: #8a6a2f;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.faq-title h2 {
    font-weight: 800;
    color: #1D252D;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.accordion-item {
    background: #FFFFFF;
    border: none;
    border-radius: 16px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0,0,0,0.04);
}

.accordion-button {
    background: transparent;
    color: var(--paper-text);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
    background: #FFFFFF;
    color: #1D252D;
    box-shadow: inset 0 -1px rgba(221,137,11,0.2);
    font-weight: 600;
}

.accordion-button:hover,
.accordion-button:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(221, 137, 11, 0.15);
}

.accordion-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--gold);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c97f0e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: #FFFFFF;
    padding: 0 22px 20px;
    color: #57636f;
    font-size: 0.88rem;
    line-height: 1.85;
    border-top: none;
}

.cta-band {
    background: var(--bg-deep);
    border-top: 1px solid var(--line-light);
    background-image: url('/assets/images/backpic/back-3.webp');
    background-position: center 70%;
    background-size: cover;
    padding: clamp(3rem, 7vh, 5rem) 0;
    text-align: center;
    background-blend-mode: overlay;
}

.cta-band h2 {
    color: #E8EEF3;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.cta-band p {
    color: #A8B6C2;
    margin-bottom: 26px;
    font-size: 0.95rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #c98d37);
    color: #0B1016;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 8px 26px rgba(233, 178, 95, 0.25);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover, .btn-gold:focus {
    color: #0B1016;
    box-shadow: 0 12px 34px rgba(233, 178, 95, 0.4);
    transform: translateY(-2px);
}

.btn-gold:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(233, 178, 95, 0.5);
}

.footer {
    background: #0B1016;
    padding: 54px 0 0;
    position: relative;
    border-top: 2px solid rgba(233, 178, 95, .45);
}

.footer h5 {
    color: var(--text-light);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.footer .brand {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    gap: 8px;
    display: inline-flex;
    align-items: center;
}

.footer .brand i {
    color: var(--gold);
    font-size: 1.5rem;
}

.footer .menu {
    padding: 0;
    list-style: none;
    font-size: 0.88rem;
    margin: 0;
    gap: 0px;
    display: flex;
    flex-direction: column;
}

.footer .menu li {
    margin-bottom: 8px;
    color: #A8B6C2;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.footer .menu li a {
    color: #B9CAD6;
    transition: all 0.25s ease;
    font-size: 0.85rem;
}

.footer .menu li i {
    color: var(--gold);
    font-size: .78rem;
    margin-right: 7px;
}

.footer .menu li a:hover {
    color: var(--gold);
    opacity: 1;
}

.footnote {
    background: rgba(11,16,22,0.6);
    border-top: 1px solid var(--line-light);
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 14px 0;
    text-align: center;
    margin-top: 34px;
}

@media (max-width: 768px) {
    .index-grid {
        grid-template-columns: 1fr;
    }
    .index-card .index-line {
        flex-basis: 34px;
    }
    .index-card .index-line .index-num {
        width: 36px;
        height: 36px;
        font-size: .9rem;
        line-height: 36px;
    }
    .index-grid {
        gap: 12px;
    }
    .section-padding {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
    .container {
        width: 96%;
    }
    .header-cta {
        display: none;
    }
    .kv-section {
        padding-top: 112px;
    }
    .desktop-menu {
        display: none;
    }
    .site-header .header-cta {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
}

/* mobile filter menu display under 576 */
.mobile-cta.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #0B1016;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 30px;
    margin-top: 16px;
    gap: 8px;
    border: none;
}

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: flex;
}
.mobile-menu li {
    list-style: none;
}

/* roulang page: category3 */
:root {
            --bg-deep: #0B1016;
            --bg-bright: #111A22;
            --bg-panel: #18212B;
            --line: rgba(255, 255, 255, 0.08);
            --gold: #E9B25F;
            --gold-hover: #F7C979;
            --cyan: #49D0B6;
            --text-hi: #E8EEF3;
            --text-muted: #A8B6C2;
            --paper: #F5F1E9;
            --paper-text: #1D252D;
            --radius-lg: 24px;
            --radius-md: 16px;
            --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 0 0 1px rgba(233, 178, 95, 0.45), 0 22px 60px rgba(0, 0, 0, 0.45);
            --space-section: clamp(4.5rem, 10vh, 8rem);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, "Segoe UI", sans-serif;
            background: var(--bg-deep);
            color: var(--text-hi);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul,
        ol {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        button {
            border: 0;
            background: transparent;
        }

        .container {
            max-width: 1320px;
        }

        ::selection {
            background: rgba(233, 178, 95, 0.35);
            color: #fff;
        }

        /* ---------- Header ---------- */

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: 72px;
            background: rgba(11, 16, 22, 0.86);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: border-color .3s, background .3s, box-shadow .3s;
        }

        .site-header.scrolled {
            background: rgba(9, 13, 18, 0.96);
            border-bottom-color: rgba(233, 178, 95, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
        }

        .nav-wrap {
            height: 72px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 9px;
            color: var(--text-hi);
            font-weight: 800;
            font-size: 1.08rem;
            line-height: 1.2;
            white-space: nowrap;
            letter-spacing: 0.4px;
        }

        .brand i {
            color: var(--gold);
            font-size: 1.35rem;
            filter: drop-shadow(0 0 8px rgba(233, 178, 95, .45));
        }

        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 2px;
            margin: 0 auto;
        }

        .desktop-menu a {
            position: relative;
            display: block;
            padding: 10px 16px;
            color: #C4CFD9;
            border-radius: 999px;
            font-size: .92rem;
            font-weight: 500;
            transition: color .25s, background-color .25s;
        }

        .desktop-menu a::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 3px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), rgba(233, 178, 95, 0.1));
            border-radius: 999px;
            opacity: 0;
            transform: scaleX(.5);
            transition: opacity .25s, transform .25s;
        }

        .desktop-menu a:hover,
        .desktop-menu a.active {
            color: var(--gold);
        }

        .desktop-menu a:hover::after,
        .desktop-menu a.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 20px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), #F8CE88);
            color: #141B10;
            font-weight: 700;
            font-size: .9rem;
            box-shadow: 0 8px 24px rgba(233, 178, 95, .22);
            transition: transform .25s, box-shadow .25s, background .25s;
            white-space: nowrap;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--gold-hover), #FBD99C);
            box-shadow: 0 12px 30px rgba(233, 178, 95, .32);
        }

        .nav-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 12px;
            color: var(--text-hi);
            font-size: 1.25rem;
            cursor: pointer;
            transition: border-color .2s, color .2s;
        }

        /* ---------- Buttons ---------- */

        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 28px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), #F8CE88);
            color: #14160F;
            font-weight: 800;
            letter-spacing: .3px;
            box-shadow: 0 10px 26px rgba(233, 178, 95, .24);
            transition: transform .25s, box-shadow .25s, background .25s;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--gold-hover), #FCDA9B);
            box-shadow: 0 14px 34px rgba(233, 178, 95, .35);
            color: #14160F;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 26px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(233, 178, 95, .55);
            color: var(--text-hi);
            font-weight: 600;
            transition: background .25s, transform .25s, color .25s, box-shadow .25s;
        }

        .btn-ghost:hover {
            background: rgba(233, 178, 95, .14);
            color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
        }

        .btn-gold:focus-visible,
        .btn-ghost:focus-visible,
        .header-cta:focus-visible,
        .desktop-menu a:focus-visible,
        .footer a:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 4px;
            box-shadow: 0 0 0 6px rgba(233, 178, 95, .18);
        }

        /* ---------- Hero ---------- */

        .entry-hero {
            position: relative;
            display: flex;
            align-items: center;
            min-height: 64vh;
            padding: 148px 0 72px;
            background:
                linear-gradient(100deg, rgba(11, 16, 22, .82) 20%, rgba(16, 24, 33, .72)),
                url("/assets/images/backpic/back-2.png") center / cover no-repeat;
        }

        .entry-hero::before {
            content: "";
            position: absolute;
            top: -80px;
            left: 10%;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(233, 178, 95, .2), transparent 68%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 22px;
            padding: 7px 15px;
            border: 1px solid rgba(233, 178, 95, .35);
            background: rgba(233, 178, 95, .1);
            border-radius: 999px;
            color: #F2C981;
            font-size: .84rem;
            letter-spacing: .4px;
        }

        .hero-pill .pulse-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 0 0 rgba(73, 208, 182, .55);
            animation: pulseRing 2.2s infinite;
        }

        @keyframes pulseRing {
            0% {
                box-shadow: 0 0 0 0 rgba(73, 208, 182, .5);
            }
            65% {
                box-shadow: 0 0 0 8px rgba(73, 208, 182, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(73, 208, 182, 0);
            }
        }

        .hero-title {
            margin: 0 0 22px;
            font-size: clamp(2.4rem, 6vw, 4.2rem);
            font-weight: 800;
            line-height: 1.12;
            color: var(--text-hi);
            letter-spacing: -1px;
        }

        .hero-title .gold-text {
            color: var(--gold);
        }

        .hero-lead {
            max-width: 740px;
            margin-bottom: 32px;
            color: #C2CDD6;
            font-size: 1.06rem;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .hero-status {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 38px;
            color: var(--text-muted);
            font-size: .86rem;
        }

        .hero-status li {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .hero-status i {
            color: var(--cyan);
        }

        /* ---------- Section General ---------- */

        .section {
            padding: var(--space-section) 0;
            position: relative;
        }

        .section-alt {
            background: #0D141B;
            border-top: 1px solid rgba(255, 255, 255, .05);
            border-bottom: 1px solid rgba(255, 255, 255, .05);
        }

        .section-narrow {
            padding: clamp(4rem, 8vh, 6.5rem) 0;
        }

        .section-head {
            max-width: 800px;
            margin-bottom: 3rem;
        }

        .kicker {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-family: "Barlow Condensed", "DIN Alternate", sans-serif;
            font-size: .88rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .kicker::before {
            content: "";
            width: 28px;
            height: 1px;
            background: rgba(233, 178, 95, .6);
        }

        .section-head h2,
        .map-copy h2 {
            margin: 0 0 14px;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.2px;
        }

        .section-head p,
        .map-copy p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .center-head {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .center-head .kicker {
            justify-content: center;
        }

        .center-head .kicker::before {
            display: none;
        }

        /* ---------- Entry Cards ---------- */

        .entry-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.6rem;
        }

        .entry-card {
            position: relative;
            display: grid;
            grid-template-columns: 64px 1fr 150px;
            align-items: center;
            gap: 18px;
            aspect-ratio: 2 / 1;
            min-height: 0;
            background: linear-gradient(150deg, rgba(26, 36, 48, .96), rgba(15, 22, 30, .98));
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 22px;
            overflow: hidden;
            box-shadow: 0 12px 36px rgba(0, 0, 0, .2);
            transition: border-color .3s, transform .3s, box-shadow .3s;
        }

        .entry-card::before {
            content: "";
            position: absolute;
            top: -80px;
            right: 30px;
            width: 170px;
            height: 170px;
            background: radial-gradient(circle, rgba(233, 178, 95, .13), transparent 70%);
            pointer-events: none;
        }

        .entry-card:hover {
            transform: translateY(-5px);
            border-color: rgba(233, 178, 95, .5);
            box-shadow: var(--shadow-card-hover);
        }

        .entry-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: rgba(233, 178, 95, .12);
            border: 1px solid rgba(233, 178, 95, .24);
            color: var(--gold);
            font-size: 1.35rem;
        }

        .entry-main {
            min-width: 0;
        }

        .entry-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 6px;
        }

        .entry-tags span {
            display: inline-flex;
            align-items: center;
            padding: 2px 9px;
            border: 1px solid rgba(73, 208, 182, .3);
            background: rgba(73, 208, 182, .08);
            color: var(--cyan);
            border-radius: 999px;
            font-size: .68rem;
            letter-spacing: .3px;
            line-height: 1.5;
        }

        .entry-main h3 {
            margin: 0 0 4px;
            font-size: 1.08rem;
            font-weight: 700;
        }

        .entry-main p {
            margin: 0;
            color: #93A4B2;
            font-size: .84rem;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .entry-side {
            position: relative;
            height: 108px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
        }

        .entry-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .entry-side::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .68));
        }

        .entry-side-label {
            position: absolute;
            left: 8px;
            bottom: 8px;
            z-index: 1;
            font-size: .72rem;
            font-weight: 600;
            color: #fff;
            background: rgba(13, 19, 26, .7);
            border: 1px solid rgba(233, 178, 95, .3);
            padding: 3px 9px;
            border-radius: 999px;
            backdrop-filter: blur(4px);
        }

        .card-link:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: -3px;
            border-radius: var(--radius-lg);
        }

        /* ---------- Map Band ---------- */

        .map-band {
            background:
                radial-gradient(circle at 90% 15%, rgba(233, 178, 95, .07), transparent 28%),
                #0D141C;
            border-top: 1px solid rgba(255, 255, 255, .06);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .map-grid {
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 3.2rem;
            align-items: center;
        }

        .map-media {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .map-media img {
            width: 100%;
            aspect-ratio: 4 / 4.3;
            object-fit: cover;
        }

        .map-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 16, 22, .08), rgba(11, 16, 22, .38));
        }

        .map-chip {
            position: absolute;
            left: 18px;
            bottom: 18px;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-size: .82rem;
            font-weight: 700;
            background: rgba(11, 16, 22, .78);
            border: 1px solid rgba(233, 178, 95, .5);
            border-radius: 999px;
            padding: 8px 15px;
            backdrop-filter: blur(8px);
        }

        .map-chip i {
            color: var(--gold);
        }

        .check-list {
            display: grid;
            gap: 10px;
            margin-top: 26px;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #C6D2DC;
            font-size: .94rem;
            line-height: 1.65;
            padding: 9px 14px;
            background: rgba(255, 255, 255, .03);
            border-radius: 14px;
        }

        .check-list li i {
            color: var(--gold);
            margin-top: 4px;
        }

        /* ---------- Steps ---------- */

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.4rem;
        }

        .step-item {
            position: relative;
            border-radius: 22px;
            padding: 26px 22px 22px;
            background: linear-gradient(150deg, rgba(26, 36, 48, .92), rgba(15, 22, 30, .98));
            border: 1px solid var(--line);
            overflow: hidden;
            transition: border-color .25s, transform .25s, box-shadow .3s;
        }

        .step-item:hover {
            transform: translateY(-4px);
            border-color: rgba(233, 178, 95, .4);
            box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
        }

        .step-item::before {
            content: "";
            position: absolute;
            top: -58px;
            left: -38px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(233, 178, 95, .17), transparent 72%);
        }

        .step-no {
            display: inline-block;
            margin-bottom: 14px;
            font-family: "Barlow Condensed", "DIN Alternate", sans-serif;
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--gold);
            padding: 4px 12px;
            border-radius: 8px;
            background: rgba(233, 178, 95, .12);
            border: 1px solid rgba(233, 178, 95, .3);
        }

        .step-item h3 {
            margin: 0 0 8px;
            font-size: 1.05rem;
            font-weight: 700;
        }

        .step-item p {
            margin: 0;
            color: var(--text-muted);
            font-size: .84rem;
            line-height: 1.7;
        }

        /* ---------- FAQ ---------- */

        .faq-section {
            background:
                radial-gradient(circle at 14% 30%, rgba(73, 208, 182, .04), transparent 26%),
                var(--bg-deep);
        }

        .faq-accordion {
            max-width: 940px;
            margin: 0 auto;
        }

        .faq-accordion .accordion-item {
            background: var(--bg-bright);
            border: 1px solid var(--line) !important;
            border-radius: 18px !important;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
            transition: border-color .25s, box-shadow .25s;
        }

        .faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: rgba(233, 178, 95, .5) !important;
            box-shadow: 0 0 0 1px rgba(233, 178, 95, .22), 0 12px 28px rgba(0, 0, 0, .2);
        }

        .faq-accordion .accordion-button {
            background: transparent;
            color: var(--text-hi) !important;
            font-weight: 600;
            font-size: 1.02rem;
            box-shadow: none !important;
            padding: 20px 24px;
            line-height: 1.5;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(233, 178, 95, .1);
            color: #F3C87B !important;
        }

        .faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E9B25F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F2C981'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-accordion .accordion-button:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: -2px;
            border-radius: 18px;
            z-index: 1;
        }

        .faq-accordion .accordion-body {
            padding: 4px 24px 22px;
            color: #B7C4CF;
            font-size: .92rem;
            line-height: 1.78;
        }

        /* ---------- CTA ---------- */

        .cta-box {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: clamp(2.8rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
            border-radius: 30px;
            overflow: hidden;
            background:
                linear-gradient(115deg, rgba(11, 16, 22, .93) 15%, rgba(17, 26, 34, .82)),
                url("/assets/images/backpic/back-1.webp") center / cover no-repeat;
            border: 1px solid rgba(233, 178, 95, .25);
            box-shadow: var(--shadow-card);
        }

        .cta-box::before {
            content: "";
            position: absolute;
            top: -100px;
            left: 8%;
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(233, 178, 95, .16), transparent 68%);
            pointer-events: none;
        }

        .cta-box h2 {
            font-size: clamp(1.8rem, 3.4vw, 2.7rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .cta-box .cta-sub {
            max-width: 700px;
            color: var(--text-muted);
            margin-bottom: 28px;
            font-size: 1rem;
            line-height: 1.75;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        /* ---------- Footer ---------- */

        .footer {
            background: #070B0F;
            border-top: 1px solid rgba(233, 178, 95, .35);
            padding-top: 64px;
            margin-top: 0;
        }

        .footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #DFE8EF;
            font-weight: 800;
            font-size: 1.14rem;
            margin-bottom: 14px;
        }

        .footer .footer-brand i {
            color: var(--gold);
        }

        .footer h5 {
            color: #E8EEF3;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .footer .menu {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .footer .menu li {
            color: var(--text-muted);
            font-size: .9rem;
        }

        .footer .menu a {
            color: var(--text-muted);
            transition: color .2s, padding-left .2s;
        }

        .footer .menu a:hover {
            color: var(--gold);
            padding-left: 3px;
        }

        .footnote {
            margin-top: 42px;
            padding: 18px 0 22px;
            border-top: 1px solid rgba(255, 255, 255, .06);
            color: #6E7F8E;
            font-size: .82rem;
            text-align: center;
        }

        /* ---------- Responsive ---------- */

        @media (max-width: 1199.98px) {
            .entry-grid {
                grid-template-columns: 1fr;
            }

            .entry-card {
                aspect-ratio: auto;
                min-height: 210px;
            }
        }

        @media (max-width: 991.98px) {
            .nav-toggle {
                display: inline-flex;
            }

            .desktop-menu {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                margin: 0;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                background: rgba(9, 13, 19, .98);
                border-top: 1px solid rgba(233, 178, 95, .25);
                border-bottom: 1px solid rgba(255, 255, 255, .06);
                padding: 12px 20px 20px;
                box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
                -webkit-backdrop-filter: blur(18px);
                backdrop-filter: blur(18px);
            }

            .site-header.menu-open .desktop-menu {
                display: flex;
            }

            .desktop-menu a {
                border-radius: 14px;
                padding: 15px 12px;
                font-size: 1rem;
            }

            .desktop-menu a::after {
                display: none;
            }

            .desktop-menu a:hover,
            .desktop-menu a.active {
                background: rgba(233, 178, 95, .12);
                color: var(--gold);
            }

            .header-cta {
                margin-left: auto;
            }

            .map-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .map-media img {
                aspect-ratio: 16 / 9;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767.98px) {
            .entry-card {
                grid-template-columns: 56px 1fr;
                gap: 16px;
                min-height: 0;
            }

            .entry-side {
                grid-column: 1 / -1;
                width: 100%;
                height: 160px;
            }
        }

        @media (max-width: 575.98px) {
            .brand {
                font-size: .98rem;
            }

            .brand i {
                font-size: 1.12rem;
            }

            .header-cta {
                display: none;
            }

            .entry-card {
                grid-template-columns: 1fr;
                padding: 20px;
                gap: 12px;
            }

            .entry-icon {
                width: 48px;
                height: 48px;
            }

            .entry-main p {
                -webkit-line-clamp: 3;
            }

            .entry-side {
                grid-column: auto;
                height: 150px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .hero-status {
                gap: 10px 16px;
            }

            .hero-actions a {
                width: 100%;
            }

            .cta-actions a {
                width: 100%;
            }

            .footer .row>div {
                margin-bottom: 20px;
            }
        }
