/* roulang page: index */
:root {
        --bg: #0A0F1C;
        --bg-soft: #111827;
        --panel: rgba(255, 255, 255, .04);
        --panel-hover: rgba(255, 255, 255, .08);
        --stroke: rgba(255, 255, 255, .09);
        --kiwi: #C3F53C;
        --kiwi-strong: #D6FF4D;
        --kiwi-soft: rgba(195, 245, 60, .12);
        --orange: #FF6B35;
        --orange-soft: rgba(255, 107, 53, .15);
        --text: #F3F4F6;
        --body: #D1D5DB;
        --muted: #9CA3AF;
        --radius: 20px;
        --radius-sm: 12px;
        --radius-pill: 999px;
        --shadow: 0 24px 70px rgba(0, 0, 0, .32);
        --shadow-soft: 0 12px 32px rgba(0, 0, 0, .16);
        --font-cn: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
        --font-en: "Inter", Arial, Helvetica, sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: .01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .01ms !important;
            scroll-behavior: auto !important;
        }
    }

    body {
        margin: 0;
        background: var(--bg);
        color: var(--body);
        font-family: var(--font-cn);
        font-size: 16px;
        line-height: 1.8;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    body,
    h1,
    h2,
    h3,
    h4,
    p,
    ul,
    ol,
    figure {
        margin: 0;
        padding: 0;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        display: block;
        max-width: 100%;
        border: 0;
    }

    input,
    button {
        font: inherit;
        color: inherit;
    }

    button {
        border: 0;
        background: none;
        cursor: pointer;
    }

    .container {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
        padding-left: 28px;
        padding-right: 28px;
    }

    .section {
        padding: 108px 0;
        position: relative;
    }

    .section-sm {
        padding: 72px 0;
    }

    .section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 42px;
    }

    .section-head-left {
        max-width: 760px;
    }

    .section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--kiwi);
        background: var(--kiwi-soft);
        border: 1px solid rgba(195, 245, 60, .24);
        padding: 6px 14px;
        border-radius: var(--radius-pill);
        margin-bottom: 14px;
    }

    .section-eyebrow-orange {
        color: var(--orange);
        background: var(--orange-soft);
        border-color: rgba(255, 107, 53, .24);
    }

    .section-title {
        color: var(--text);
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -.02em;
    }

    .section-lead {
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
        max-width: 860px;
        margin-top: 16px;
    }

    /* 按钮 */
    .btn-primary,
    .btn-outline,
    .btn-dark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 50px;
        padding: 0 26px;
        border-radius: var(--radius-pill);
        font-weight: 700;
        font-size: 15px;
        transition: all .25s ease;
        white-space: nowrap;
        line-height: 1;
    }

    .btn-primary {
        background: var(--kiwi);
        color: #0D1A16;
        box-shadow: 0 12px 28px rgba(195, 245, 60, .22);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
        background: var(--kiwi-strong);
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(195, 245, 60, .3);
    }

    .btn-primary .arrow {
        transition: transform .25s ease;
    }

    .btn-primary:hover .arrow {
        transform: translateX(5px);
    }

    .btn-outline {
        border: 1px solid rgba(255, 255, 255, .22);
        color: var(--text);
        background: rgba(255, 255, 255, .05);
        backdrop-filter: blur(12px);
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
        border-color: rgba(255, 255, 255, .55);
        background: rgba(255, 255, 255, .1);
        transform: translateY(-3px);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 3px solid var(--kiwi);
        outline-offset: 3px;
        border-radius: 8px;
    }

    .skip-link {
        position: fixed;
        top: -80px;
        left: 20px;
        background: var(--kiwi);
        color: #101a18;
        z-index: 2000;
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 700;
        transition: top .2s;
    }

    .skip-link:focus {
        top: 14px;
    }

    /* ===== 导航 ===== */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
        border-bottom: 1px solid transparent;
    }

    .header-scrolled {
        background: rgba(17, 24, 39, .85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom-color: var(--stroke);
        box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    }

    .nav-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 78px;
        gap: 28px;
    }

    .brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .brand-mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        background: linear-gradient(145deg, #D7FF62, #A6DE11);
        color: #0C160D;
        font-weight: 900;
        font-size: 20px;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 10px 24px rgba(195, 245, 60, .18);
        line-height: 1;
    }

    .brand-word {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .brand-name {
        color: var(--text);
        font-weight: 800;
        font-size: 17px;
        letter-spacing: .02em;
    }

    .brand-name i {
        font-style: normal;
        color: var(--kiwi);
    }

    .brand-tag {
        color: var(--muted);
        font-size: 11px;
        letter-spacing: .18em;
        margin-top: 2px;
    }

    .main-nav {
        display: flex;
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: 6px;
    }

    .nav-link {
        display: inline-flex;
        align-items: center;
        padding: 10px 15px;
        font-size: 15px;
        border-radius: 999px;
        color: #CBD5E1;
        font-weight: 500;
        position: relative;
        transition: all .2s ease;
    }

    .nav-link:hover {
        color: var(--text);
        background: rgba(255, 255, 255, .08);
    }

    .nav-link.active {
        color: var(--kiwi);
        background: var(--kiwi-soft);
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .nav-action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .08);
        color: #E5E7EB;
        transition: all .2s ease;
    }

    .nav-action-btn:hover {
        background: rgba(255, 255, 255, .13);
        color: var(--kiwi);
    }

    .menu-toggle {
        display: none;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .1);
        align-items: center;
        justify-content: center;
        color: var(--text);
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
        content: "";
        width: 18px;
        height: 2px;
        background: var(--text);
        border-radius: 4px;
        display: block;
        margin: 3px auto;
        transition: all .3s ease;
    }

    .mobile-scrim {
        position: fixed;
        inset: 0;
        background: rgba(2, 6, 12, .66);
        backdrop-filter: blur(6px);
        z-index: 150;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
    }

    .mobile-scrim.show {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(86vw, 360px);
        height: 100vh;
        background: #0C1422;
        border-left: 1px solid var(--stroke);
        z-index: 180;
        padding: 84px 24px 32px;
        transform: translateX(100%);
        transition: transform .35s ease;
        overflow-y: auto;
        box-shadow: -18px 0 50px rgba(0, 0, 0, .35);
    }

    .mobile-panel.open {
        transform: translateX(0);
    }

    .mobile-panel-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        list-style: none;
    }

    .mobile-panel-list .nav-link {
        font-size: 17px;
        padding: 14px 16px;
    }

    .mobile-panel CTA {
        margin-top: 28px;
    }

    .mobile-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        border-radius: 999px;
        color: var(--text);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .08);
    }

    /* ===== Hero 首屏 ===== */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 130px 0 86px;
        overflow: hidden;
        isolation: isolate;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -3;
        animation: heroZoom 16s ease-out both;
    }

    @keyframes heroZoom {
        0% {
            transform: scale(1.06);
        }
        100% {
            transform: scale(1);
        }
    }

    .hero-bg-tint {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(10, 15, 28, .97) 0%, rgba(10, 15, 28, .78) 36%, rgba(10, 15, 28, .38) 74%, rgba(10, 15, 28, .24) 100%),
            linear-gradient(to top, rgba(10, 15, 28, .92), transparent 40%);
        z-index: -2;
    }

    .hero-inner {
        position: relative;
        z-index: 2;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 999px;
        padding: 7px 15px;
        font-size: 13px;
        font-weight: 600;
        color: #F8FAFC;
        backdrop-filter: blur(12px);
        margin-bottom: 22px;
    }

    .live-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--orange);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, .7);
        animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 107, 53, .7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
        }
    }

    .hero h1 {
        color: var(--text);
        font-size: clamp(34px, 5.2vw, 62px);
        font-weight: 900;
        line-height: 1.18;
        letter-spacing: -.025em;
        max-width: 880px;
        text-shadow: 0 4px 30px rgba(0, 0, 0, .3);
    }

    .hero h1 .highlight {
        color: var(--kiwi);
    }

    .hero-lead {
        color: #E5E7EB;
        font-size: 18px;
        line-height: 1.85;
        max-width: 640px;
        margin-top: 24px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 36px;
    }

    .hero-tag-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        align-items: center;
        margin-top: 40px;
    }

    .hero-tag-strip span {
        font-size: 13px;
        color: #E5E7EB;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .1);
        padding: 8px 15px;
        border-radius: 999px;
        backdrop-filter: blur(8px);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .hero-tag-strip span i {
        font-style: normal;
        color: var(--kiwi);
        font-weight: 700;
    }

    /* ===== 横滑片库 ===== */
    .rail-wrap {
        position: relative;
    }

    .hot-rail {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 4px 4px 26px;
        scrollbar-width: none;
        margin-left: -4px;
        width: 100%;
    }

    .hot-rail::-webkit-scrollbar {
        display: none;
    }

    .rail-card {
        flex: 0 0 328px;
        max-width: 328px;
        scroll-snap-align: start;
        background: var(--panel);
        border: 1px solid var(--stroke);
        border-radius: 22px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform .28s cubic-bezier(.2, .7, .4, 1), border-color .28s ease, background .28s ease, box-shadow .28s ease;
    }

    .rail-card:hover {
        transform: translateY(-6px);
        border-color: rgba(195, 245, 60, .45);
        box-shadow: 0 24px 46px rgba(0, 0, 0, .34);
        background: rgba(255, 255, 255, .06);
    }

    .rail-cover {
        position: relative;
        display: block;
        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

    .rail-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .rail-card:hover .rail-cover img {
        transform: scale(1.07);
    }

    .rail-rank {
        position: absolute;
        left: 14px;
        bottom: 12px;
        font-size: 13px;
        font-weight: 700;
        color: #0A0F1C;
        background: var(--kiwi);
        padding: 4px 11px;
        border-radius: 999px;
    }

    .rail-cat {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(10, 15, 28, .72);
        color: var(--orange);
        font-size: 12px;
        font-weight: 600;
        border: 1px solid rgba(255, 107, 53, .28);
        backdrop-filter: blur(8px);
        padding: 5px 11px;
        border-radius: 999px;
    }

    .rail-body {
        padding: 20px 20px 8px;
    }

    .rail-body h3 {
        color: var(--text);
        font-size: 18px;
        line-height: 1.45;
        font-weight: 700;
        margin-top: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .rail-desc {
        font-size: 14px;
        color: var(--muted);
        margin-top: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.7;
    }

    .rail-more {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px 16px;
        font-size: 13px;
        color: var(--kiwi);
        font-weight: 600;
        margin-top: auto;
        transition: color .2s ease;
    }

    .rail-more span {
        transition: transform .2s ease;
    }

    .rail-card:hover .rail-more span {
        transform: translateX(5px);
    }

    .rail-controls {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .slide-arrow {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid var(--stroke);
        background: var(--panel);
        color: var(--text);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all .2s ease;
    }

    .slide-arrow:hover {
        background: var(--kiwi);
        color: #0C1607;
        border-color: var(--kiwi);
    }

    /* ===== 精选卡片 ===== */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .feature-card {
        position: relative;
        background: var(--panel);
        border: 1px solid var(--stroke);
        border-radius: var(--radius);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        border-color: rgba(195, 245, 60, .5);
        box-shadow: var(--shadow);
    }

    .feature-media {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16 / 11;
        background: #17202e;
    }

    .feature-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s cubic-bezier(.2, .7, .3, 1);
    }

    .feature-card:hover .feature-media img {
        transform: scale(1.08);
    }

    .feature-tag {
        position: absolute;
        top: 12px;
        left: 12px;
        color: #FDE9E2;
        background: var(--orange);
        font-size: 12px;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 999px;
        line-height: 1.4;
    }

    .feature-body {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .feature-body h3 {
        font-size: 18px;
        line-height: 1.55;
        color: var(--text);
        font-weight: 800;
        letter-spacing: -.01em;
    }

    .feature-body p {
        margin-top: 10px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.75;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .feature-link {
        margin-top: 16px;
        font-size: 14px;
        color: var(--kiwi);
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .feature-link span {
        transition: transform .2s ease;
    }

    .feature-card:hover .feature-link span {
        transform: translateX(4px);
    }

    /* ===== 分类入口 ===== */
    .topic-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .topic-card {
        position: relative;
        padding: 30px 26px 26px;
        border-radius: 22px;
        border: 1px solid var(--stroke);
        background:
            linear-gradient(155deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02)),
            rgba(10, 15, 28, .36);
        overflow: hidden;
        min-height: 330px;
        display: flex;
        flex-direction: column;
        transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }

    .topic-card::after {
        content: "";
        position: absolute;
        inset: auto -20% -46% auto;
        width: 220px;
        height: 220px;
        background: var(--kiwi);
        opacity: .07;
        border-radius: 50%;
        transition: opacity .3s ease;
    }

    .topic-card:hover {
        transform: translateY(-6px);
        border-color: rgba(195, 245, 60, .5);
        box-shadow: var(--shadow);
    }

    .topic-num {
        font-family: var(--font-en);
        font-size: 44px;
        font-weight: 800;
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, .28);
        line-height: 1;
        transition: -webkit-text-stroke .3s ease;
    }

    .topic-card:hover .topic-num {
        -webkit-text-stroke: 1px var(--kiwi);
    }

    .topic-name {
        display: inline-block;
        margin-top: 18px;
        align-self: flex-start;
        background: var(--kiwi-soft);
        color: var(--kiwi);
        font-weight: 800;
        font-size: 15px;
        border-radius: 999px;
        padding: 7px 16px;
        border: 1px solid rgba(195, 245, 60, .24);
    }

    .topic-card h3 {
        color: var(--text);
        font-size: 21px;
        font-weight: 800;
        margin-top: 16px;
        line-height: 1.4;
    }

    .topic-card p {
        color: var(--muted);
        font-size: 15px;
        line-height: 1.8;
        margin-top: 10px;
        flex: 1;
    }

    .topic-card .topic-arrow {
        margin-top: 18px;
        height: 42px;
        width: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid var(--stroke);
        color: var(--text);
        align-self: flex-start;
        transition: all .25s ease;
    }

    .topic-card:hover .topic-arrow {
        background: var(--kiwi);
        color: #0C160E;
        border-color: var(--kiwi);
    }

    /* ===== CMS 动态列表 ===== */
    .cms-section {
        background: linear-gradient(180deg, rgba(10, 15, 28, .2), rgba(17, 24, 39, .36));
    }

    .cms-block {
        border: 1px solid var(--stroke);
        border-radius: 28px;
        overflow: hidden;
        background: rgba(255, 255, 255, .03);
        backdrop-filter: blur(10px);
    }

    .cms-head-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 24px 28px;
        border-bottom: 1px solid var(--stroke);
        flex-wrap: wrap;
    }

    .cms-head-row .mini-title {
        font-size: 17px;
        font-weight: 800;
        color: var(--text);
    }

    .cms-head-row .mini-note {
        color: var(--muted);
        font-size: 13px;
    }

    .cms-list {
        display: flex;
        flex-direction: column;
    }

    .cms-empty {
        padding: 50px 28px;
        text-align: center;
        color: var(--muted);
    }

    .cms-row {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr) auto auto;
        gap: 22px;
        align-items: center;
        padding: 24px 28px;
        border-bottom: 1px solid var(--stroke);
        transition: background .2s ease;
    }

    .cms-row:last-child {
        border-bottom: 0;
    }

    .cms-row:hover {
        background: rgba(255, 255, 255, .045);
    }

    .cms-date {
        color: var(--muted);
        font-size: 14px;
        font-family: var(--font-en);
        letter-spacing: .02em;
    }

    .cms-title {
        font-size: 17px;
        line-height: 1.55;
        margin: 0;
        color: var(--text);
        font-weight: 700;
    }

    .cms-title a:hover {
        color: var(--kiwi);
    }

    .cms-desc {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
        margin-top: 4px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 30vw;
    }

    .cms-cat {
        color: var(--orange);
        font-size: 12px;
        border: 1px solid rgba(255, 107, 53, .3);
        background: var(--orange-soft);
        padding: 5px 12px;
        border-radius: 999px;
        white-space: nowrap;
        line-height: 1.2;
    }

    .cms-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--kiwi);
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        transition: color .2s ease;
    }

    .cms-more:hover {
        color: var(--kiwi-strong);
    }

    .cms-more span {
        transition: transform .2s ease;
    }

    .cms-row:hover .cms-more span {
        transform: translateX(5px);
    }

    .cms-all {
        text-align: center;
        padding: 26px 0 30px;
        border-top: 1px solid var(--stroke);
    }

    /* ===== 品牌与数据 ===== */
    .proof-section {
        background:
            radial-gradient(circle at 84% 18%, rgba(195, 245, 60, .1), transparent 26%),
            linear-gradient(180deg, transparent, rgba(255, 255, 255, .04), transparent);
    }

    .proof-layout {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 64px;
        align-items: center;
    }

    .proof-media {
        position: relative;
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid var(--stroke);
        box-shadow: var(--shadow);
        min-height: 340px;
    }

    .proof-media img {
        width: 100%;
        height: 100%;
        min-height: 340px;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .proof-quote {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 20px;
        background: rgba(10, 15, 28, .72);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, .12);
        padding: 18px 20px;
        border-radius: 18px;
        color: #F8FAFC;
        font-size: 15px;
    }

    .proof-quote strong {
        color: var(--kiwi);
    }

    .proof-data {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 30px;
    }

    .proof-stat {
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, .04);
        border-radius: 18px;
        padding: 16px;
        text-align: center;
    }

    .proof-stat b {
        display: block;
        color: var(--kiwi);
        font-size: 28px;
        letter-spacing: -.02em;
        font-family: var(--font-en);
        line-height: 1.2;
    }

    .proof-stat span {
        display: inline-block;
        color: var(--muted);
        font-size: 12.5px;
        margin-top: 6px;
    }

    .proof-point-list {
        list-style: none;
        margin-top: 20px;
    }

    .proof-point-list li {
        position: relative;
        padding-left: 28px;
        margin-top: 14px;
        color: var(--body);
        font-size: 15px;
    }

    .proof-point-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 8px;
        height: 8px;
        background: var(--kiwi);
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(195, 245, 60, .15);
    }

    /* ===== FAQ ===== */
    .faq-list {
        max-width: 920px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .faq-item {
        background: var(--panel);
        border: 1px solid var(--stroke);
        border-radius: var(--radius-sm);
        overflow: hidden;
        transition: border-color .25s ease, background .25s ease;
    }

    .faq-item.active {
        border-color: rgba(195, 245, 60, .38);
        background: rgba(255, 255, 255, .055);
    }

    .faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 20px 22px;
        text-align: left;
        color: var(--text);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;
    }

    .faq-icon {
        position: relative;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        border: 1.5px solid var(--kiwi);
        border-radius: 999px;
        transition: transform .25s ease;
    }

    .faq-icon::before,
    .faq-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 2px;
        background: var(--kiwi);
        transform: translate(-50%, -50%);
        transition: background .2s ease;
    }

    .faq-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer-wrap {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .faq-answer {
        padding: 0 22px 20px 22px;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.8;
        border-top: 1px solid rgba(255, 255, 255, .05);
        margin: 0 20px 0 0;
        padding-left: 22px;
    }

    .faq-answer p {
        padding-top: 15px;
    }

    /* ===== CTA ===== */
    .cta-section {
        padding: 120px 0;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at center, rgba(195, 245, 60, .12), transparent 52%),
            linear-gradient(180deg, transparent, rgba(255, 255, 255, .03));
        pointer-events: none;
    }

    .cta-inner {
        position: relative;
        max-width: 830px;
        margin: 0 auto;
    }

    .cta-inner .section-title {
        font-size: clamp(30px, 4vw, 48px);
    }

    .cta-inner .section-lead {
        margin: 18px auto 0;
    }

    .cta-shield {
        width: 64px;
        height: 64px;
        border-radius: 22px;
        background: var(--kiwi-soft);
        border: 1px solid rgba(195, 245, 60, .36);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 18px;
        color: var(--kiwi);
        box-shadow: 0 0 0 8px rgba(195, 245, 60, .04);
    }

    .cta-actions {
        margin-top: 32px;
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .newsletter-box {
        margin-top: 46px;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form {
        display: flex;
        gap: 10px;
        padding: 8px;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, .04);
        border-radius: 999px;
        backdrop-filter: blur(12px);
    }

    .newsletter-form input {
        flex: 1;
        min-width: 0;
        background: transparent;
        border: 0;
        padding: 0 18px;
        color: var(--text);
        font-size: 15px;
        outline: none;
    }

    .newsletter-form input::placeholder {
        color: var(--muted);
    }

    .newsletter-form .btn-primary {
        flex-shrink: 0;
    }

    .form-note {
        margin-top: 14px;
        color: var(--muted);
        font-size: 13px;
        min-height: 20px;
    }

    .form-note.ok {
        color: var(--kiwi);
    }

    .form-note.warn {
        color: var(--orange);
    }

    /* ===== 页脚 ===== */
    .site-footer {
        background: #05070D;
        border-top: 1px solid var(--stroke);
        padding-top: 76px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr .9fr 1fr 1.1fr;
        gap: 50px;
        padding-bottom: 52px;
    }

    .footer-brand .brand {
        margin-bottom: 16px;
    }

    .footer-brand p {
        max-width: 340px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.85;
    }

    .footer-title {
        color: var(--text);
        font-weight: 800;
        font-size: 16px;
        margin-bottom: 20px;
        letter-spacing: .04em;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        color: var(--muted);
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all .2s ease;
    }

    .footer-links a:hover {
        color: var(--kiwi);
        transform: translateX(4px);
    }

    .footer-contact {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        color: var(--muted);
        font-size: 14px;
    }

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-contact li span {
        color: var(--kiwi);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .06);
        padding: 22px 0 28px;
        font-size: 13px;
        color: rgba(255, 255, 255, .55);
        display: flex;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-bottom .copyright {
        color: var(--muted);
    }

    .footer-bottom .domain-note {
        font-family: var(--font-en);
        letter-spacing: .03em;
        opacity: .75;
    }

    /* ===== 响应式 ===== */
    @media (max-width: 1199px) {
        .feature-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .topic-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .topic-card {
            min-height: 280px;
        }
        .cms-desc {
            max-width: 22vw;
        }
        .footer-grid {
            grid-template-columns: 1.2fr 1fr 1fr;
        }
        .footer-contact {
            grid-column: span 3;
        }
    }

    @media (max-width: 991px) {
        .main-nav,
        .nav-cta .btn-primary {
            display: none;
        }
        .menu-toggle {
            display: inline-flex;
        }
        .site-header {
            background: rgba(10, 15, 28, .78);
            backdrop-filter: blur(16px);
            border-bottom-color: var(--stroke);
        }
        .proof-layout {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .proof-media {
            min-height: 300px;
        }
        .cms-row {
            grid-template-columns: 120px minmax(0, 1fr) auto;
        }
        .cms-desc {
            display: none;
        }
        .cms-more {
            display: none;
        }
    }

    @media (max-width: 767px) {
        .section {
            padding: 76px 0;
        }
        .section-sm {
            padding: 54px 0;
        }
        .container {
            padding-left: 18px;
            padding-right: 18px;
        }
        .section-head {
            flex-direction: column;
            align-items: flex-start;
        }
        .section-title {
            font-size: 28px;
        }
        .rail-controls {
            display: none;
        }
        .rail-card {
            flex: 0 0 278px;
        }
        .hero {
            min-height: 92vh;
            padding: 110px 0 60px;
        }
        .hero h1 {
            font-size: 33px;
            line-height: 1.25;
        }
        .hero-lead {
            font-size: 16px;
        }
        .hero-tag-strip {
            gap: 10px;
        }
        .feature-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }
        .topic-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .topic-card {
            min-height: 0;
        }
        .cms-row {
            grid-template-columns: 1fr auto;
            gap: 8px 16px;
            padding: 20px 18px;
        }
        .cms-date {
            grid-row: 1;
            grid-column: 1;
        }
        .cms-cat {
            grid-row: 1;
            grid-column: 2;
        }
        .cms-title {
            grid-row: 2;
            grid-column: 1 / -1;
        }
        .cms-desc {
            display: block;
            grid-row: 3;
            grid-column: 1 / -1;
            max-width: none;
            white-space: normal;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .cms-head-row {
            padding: 18px;
        }
        .cms-row .cms-more {
            display: none;
        }
        .proof-data {
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .proof-stat {
            padding: 12px;
        }
        .proof-stat b {
            font-size: 22px;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .footer-contact {
            grid-column: span 1;
        }
        .cta-section {
            padding: 84px 0;
        }
        .newsletter-form {
            flex-direction: column;
            border-radius: 20px;
            padding: 14px;
            gap: 12px;
        }
        .newsletter-form input {
            background: rgba(255, 255, 255, .07);
            border-radius: 999px;
            padding: 14px 18px;
        }
        .newsletter-form .btn-primary {
            width: 100%;
        }
        .footer-bottom {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

    @media (max-width: 520px) {
        .feature-grid {
            grid-template-columns: 1fr;
        }
        .nav-cta {
            display: none;
        }
        .brand-tag {
            display: none;
        }
        .hero h1 {
            font-size: 28px;
        }
        .hero-actions .btn-primary,
        .hero-actions .btn-outline {
            width: 100%;
        }
        .footer-contact {
            font-size: 13px;
        }
    }

/* roulang page: article */
:root {
            --background: #0A0F1C;
            --panel: #111827;
            --card: rgba(255, 255, 255, .045);
            --stroke: rgba(255, 255, 255, .1);
            --kiwi: #C3F53C;
            --kiwi-bright: #D9FA54;
            --ember: #FF6B35;
            --silver: #D1D5DB;
            --mist: #9CA3AF;
            --paper: #F3F4F6;
            --radius-lg: 20px;
            --radius-md: 14px;
            --ease: all .28s cubic-bezier(.2, .7, .3, 1);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            background: var(--background);
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
            color: #e5e7eb;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            border: 0;
            background: none;
            cursor: pointer;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        ::selection {
            background: rgba(195, 245, 60, .22);
            color: #fff;
        }
        a:focus-visible,
        button:focus-visible {
            outline: 3px solid rgba(195, 245, 60, .55);
            outline-offset: 2px;
            border-radius: 10px;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: all .35s ease;
            background: rgba(10, 15, 28, .28);
            backdrop-filter: blur(16px) saturate(150%);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }
        .site-header.scrolled {
            background: rgba(17, 24, 39, .88);
            box-shadow: 0 12px 38px rgba(0, 0, 0, .28);
        }
        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            height: 78px;
            padding: 0 32px;
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-mark {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--kiwi), #9bd91f);
            color: #0A0F1C;
            font-weight: 900;
            font-size: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 22px rgba(195, 245, 60, .35);
            letter-spacing: 0;
        }
        .brand-name {
            color: #f8fafc;
            font-size: 17px;
            font-weight: 800;
            letter-spacing: .01em;
            line-height: 1.2;
            white-space: nowrap;
        }
        .brand-name i {
            font-style: normal;
            color: var(--kiwi);
            margin: 0 .1em;
        }
        .brand-tag {
            display: block;
            font-size: 10px;
            letter-spacing: .24em;
            color: var(--mist);
            margin-top: 3px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .main-nav {
            margin-left: 22px;
        }
        .nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-link {
            display: inline-block;
            padding: 9px 18px;
            border-radius: 999px;
            color: #d5dae1;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            transition: var(--ease);
            letter-spacing: .01em;
        }
        .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, .08);
        }
        .nav-link.active {
            color: #0A0F1C;
            background: var(--kiwi);
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(195, 245, 60, .2);
        }
        .header-actions {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-weight: 600;
            font-size: 14px;
            line-height: 1;
            min-height: 42px;
            padding: 0 22px;
            transition: var(--ease);
            white-space: nowrap;
        }
        .btn-kiwi {
            background: var(--kiwi);
            color: #0A0F1C;
        }
        .btn-kiwi:hover {
            background: var(--kiwi-bright);
            box-shadow: 0 8px 28px rgba(195, 245, 60, .24);
            transform: translateY(-2px);
        }
        .btn-kiwi .arrow {
            display: inline-block;
            transition: transform .28s ease;
            margin-left: 4px;
        }
        .btn-kiwi:hover .arrow {
            transform: translateX(4px);
        }
        .btn-ghost {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .16);
            color: #f3f4f6;
        }
        .btn-ghost:hover {
            background: rgba(255, 255, 255, .14);
            border-color: rgba(255, 255, 255, .32);
        }
        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .1);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
        }
        .nav-toggle span {
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 4px;
            display: block;
            transition: var(--ease);
        }
        .nav-open .nav-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-open .nav-toggle span:nth-child(2) {
            opacity: 0;
        }
        .nav-open .nav-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .page-hero {
            position: relative;
            padding: 186px 0 94px;
            background-image: linear-gradient(95deg, rgba(10, 15, 28, .96) 4%, rgba(10, 15, 28, .82) 42%, rgba(10, 15, 28, .56) 100%), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }
        .page-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .crumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            color: var(--mist);
            font-size: 13px;
        }
        .crumb a {
            color: #d1d5db;
            transition: var(--ease);
        }
        .crumb a:hover {
            color: var(--kiwi);
        }
        .crumb span {
            color: rgba(255, 255, 255, .35);
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .04em;
            color: var(--kiwi);
            background: rgba(195, 245, 60, .12);
            border: 1px solid rgba(195, 245, 60, .22);
            border-radius: 999px;
            padding: 7px 16px;
        }
        .hero-kicker .dot {
            width: 6px;
            height: 6px;
            background: var(--kiwi);
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(195, 245, 60, .8);
        }
        .page-hero h1 {
            margin: 22px 0 14px;
            color: #fff;
            font-weight: 800;
            letter-spacing: -.02em;
            font-size: clamp(31px, 4.8vw, 54px);
            line-height: 1.25;
            max-width: 980px;
            text-wrap: balance;
        }
        .hero-lead {
            color: #d5dae1;
            font-size: 16px;
            line-height: 1.85;
            margin: 0;
            max-width: 820px;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            margin-top: 30px;
            color: #b6becb;
            font-size: 14px;
        }
        .article-meta .meta-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 999px;
            color: var(--silver);
        }
        .article-meta .meta-chip.orange {
            color: var(--ember);
            border-color: rgba(255, 107, 53, .3);
            background: rgba(255, 107, 53, .12);
        }

        .article-body-wrap {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 24px 30px;
        }
        .cms-content {
            color: #d1d5db;
            font-size: 17px;
            line-height: 1.95;
            word-break: break-word;
        }
        .cms-content p {
            margin: 0 0 1.5rem;
        }
        .cms-content h2 {
            color: #f9fafb;
            font-size: 25px;
            line-height: 1.5;
            font-weight: 800;
            margin: 2.4rem 0 1.2rem;
            padding-left: 16px;
            border-left: 4px solid var(--kiwi);
        }
        .cms-content h3 {
            color: #f3f4f6;
            font-size: 20px;
            line-height: 1.5;
            font-weight: 700;
            margin: 2rem 0 .9rem;
        }
        .cms-content ul,
        .cms-content ol {
            margin: 0 0 1.5rem;
            padding-left: 1.5rem;
        }
        .cms-content li {
            margin-bottom: .5rem;
        }
        .cms-content blockquote {
            margin: 2rem 0;
            padding: 22px 26px;
            background: rgba(255, 255, 255, .045);
            border-left: 4px solid var(--ember);
            border-radius: 0 18px 18px 0;
            color: #e5e7eb;
            font-size: 17px;
            line-height: 1.85;
        }
        .cms-content blockquote p {
            margin-bottom: 8px;
        }
        .cms-content blockquote p:last-child {
            margin-bottom: 0;
        }
        .cms-content img {
            border-radius: 20px;
            margin: 1.8rem 0;
            box-shadow: 0 14px 46px rgba(0, 0, 0, .28);
        }
        .cms-content a {
            color: var(--kiwi);
            border-bottom: 1px solid rgba(195, 245, 60, .5);
        }
        .cms-content a:hover {
            color: var(--kiwi-bright);
        }
        .cms-content table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 1.8rem 0;
            font-size: 15px;
            line-height: 1.7;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 16px;
            overflow: hidden;
        }
        .cms-content th,
        .cms-content td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            text-align: left;
        }
        .cms-content tr:last-child td {
            border-bottom: 0;
        }
        .cms-content th {
            background: rgba(195, 245, 60, .1);
            color: #fff;
            font-weight: 700;
        }
        .cms-content code {
            background: rgba(255, 255, 255, .1);
            padding: 2px 8px;
            border-radius: 7px;
            font-size: .9em;
            color: #f1c6b0;
        }
        .cms-content pre {
            background: rgba(2, 6, 13, .45);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 16px;
            padding: 22px;
            overflow-x: auto;
        }
        .cms-content pre code {
            background: none;
            padding: 0;
            color: #e5e7eb;
        }

        .missing-content {
            text-align: center;
            padding: 56px 24px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 24px;
        }
        .missing-content h2 {
            color: #fff;
            font-size: 28px;
            margin-top: 0;
        }
        .missing-content p {
            color: #c5cbd4;
            max-width: 640px;
            margin: 0 auto 28px;
        }

        .article-bottom-actions {
            max-width: 800px;
            margin: 34px auto 0;
            padding: 30px 0 18px;
            border-top: 1px solid rgba(255, 255, 255, .09);
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .link-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #c5cbd4;
            font-size: 14px;
            font-weight: 600;
            transition: var(--ease);
            padding: 8px 2px;
        }
        .link-item:hover {
            color: var(--kiwi);
        }

        .section {
            padding: 76px 0;
        }
        .section-head {
            max-width: 1280px;
            margin: 0 auto 40px;
            padding: 0 32px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .section-kicker {
            font-size: 14px;
            font-weight: 700;
            color: var(--kiwi);
            letter-spacing: .16em;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-kicker::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--kiwi);
            border-radius: 4px;
        }
        .section-title {
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            letter-spacing: -.02em;
            color: #fff;
            margin: 0;
            line-height: 1.3;
        }
        .section-note {
            color: var(--mist);
            font-size: 15px;
            max-width: 520px;
        }

        .related-grid {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }
        .rel-card {
            display: block;
            background: rgba(255, 255, 255, .045);
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: 22px;
            overflow: hidden;
            transition: var(--ease);
            position: relative;
        }
        .rel-card:hover {
            transform: translateY(-6px);
            border-color: rgba(195, 245, 60, .34);
            box-shadow: 0 18px 44px rgba(0, 0, 0, .32), 0 0 0 1px rgba(195, 245, 60, .08);
        }
        .rel-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #101827;
        }
        .rel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .55s ease;
        }
        .rel-card:hover .rel-thumb img {
            transform: scale(1.05);
        }
        .rel-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 3;
            background: rgba(10, 15, 28, .7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .15);
            color: #f3f4f6;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 999px;
        }
        .rel-tag.hot {
            color: #0A0F1C;
            background: var(--ember);
            border-color: transparent;
            font-weight: 700;
        }
        .rel-body {
            padding: 22px 22px 26px;
        }
        .rel-body h3 {
            color: #fff;
            font-size: 18px;
            line-height: 1.55;
            margin: 0 0 10px;
            font-weight: 700;
        }
        .rel-body p {
            color: var(--mist);
            font-size: 14px;
            line-height: 1.7;
            margin: 0 0 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .rel-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--kiwi);
            font-size: 14px;
            font-weight: 700;
            transition: var(--ease);
        }
        .rel-more .arr {
            transition: transform .28s ease;
        }
        .rel-card:hover .rel-more .arr {
            transform: translateX(5px);
        }

        .cta-block {
            position: relative;
            margin: 60px 0 0;
            padding: 90px 24px;
            background-image: linear-gradient(135deg, rgba(10, 15, 28, .93), rgba(17, 24, 39, .76)), url('/assets/images/backpic/back-3.png');
            background-size: cover;
            background-position: center;
            text-align: center;
            overflow: hidden;
        }
        .cta-block::before {
            content: "";
            position: absolute;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(195, 245, 60, .24), transparent 68%);
            top: -160px;
            right: -120px;
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 860px;
            margin: 0 auto;
        }
        .cta-inner h2 {
            color: #fff;
            font-size: clamp(27px, 4vw, 42px);
            line-height: 1.4;
            font-weight: 800;
            letter-spacing: -.02em;
            margin: 0 0 16px;
        }
        .cta-inner p {
            color: #d1d5db;
            font-size: 16px;
            line-height: 1.9;
            margin: 0 0 32px;
        }
        .cta-inner .btn {
            min-width: 180px;
            min-height: 52px;
            font-size: 16px;
            padding: 0 30px;
            box-shadow: 0 10px 34px rgba(195, 245, 60, .18);
        }

        .site-footer {
            background: #05070D;
            padding: 74px 0 28px;
            color: #9CA3AF;
            font-size: 14px;
        }
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.55fr .9fr 1fr 1.25fr;
            gap: 42px;
            margin-bottom: 44px;
        }
        .footer-brand p {
            margin: 18px 0 0;
            line-height: 1.85;
            color: #9CA3AF;
            max-width: 360px;
        }
        .footer-title {
            color: #F3F4F6;
            font-size: 15px;
            font-weight: 700;
            margin: 4px 0 18px;
            letter-spacing: .04em;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 11px;
        }
        .footer-links a {
            color: #9CA3AF;
            transition: var(--ease);
        }
        .footer-links a:hover {
            color: var(--kiwi);
        }
        .footer-contact {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 14px;
            color: #a7aebd;
            line-height: 1.7;
        }
        .footer-contact span {
            color: var(--kiwi);
            margin-right: 7px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 22px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px 26px;
            color: #6c7481;
            font-size: 13px;
        }
        .footer-bottom .domain-note {
            color: #6c7481;
            letter-spacing: .03em;
        }

        .no-scrollbar {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        @media (max-width: 1100px) {
            .header-inner {
                padding: 0 20px;
                gap: 18px;
            }
            .main-nav {
                margin-left: 4px;
            }
            .nav-link {
                padding: 8px 14px;
                font-size: 13px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }

        @media (max-width: 991px) {
            .site-header {
                background: rgba(10, 15, 28, .72);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);
            }
            .nav-toggle {
                display: inline-flex;
            }
            .header-cta {
                display: none;
            }
            .header-actions {
                margin-left: auto;
            }
            .main-nav {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: min(80vw, 360px);
                margin: 0;
                padding: 96px 28px 32px;
                background: rgba(8, 12, 22, .96);
                backdrop-filter: blur(22px);
                -webkit-backdrop-filter: blur(22px);
                border-left: 1px solid rgba(255, 255, 255, .1);
                transform: translateX(105%);
                transition: transform .35s ease;
                z-index: 90;
                overflow-y: auto;
            }
            .header.nav-open .main-nav,
            .nav-open .main-nav {
                transform: translateX(0);
                box-shadow: -24px 0 70px rgba(0, 0, 0, .45);
            }
            .nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .nav-link {
                padding: 12px 20px;
                font-size: 16px;
                border-radius: 16px;
                display: block;
                color: #e5e7eb;
            }
            .nav-link.active {
                background: var(--kiwi);
                color: #0A0F1C;
            }
            .related-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .header-inner {
                height: 66px;
                padding: 0 16px;
            }
            .brand-mark {
                width: 34px;
                height: 34px;
                font-size: 17px;
                border-radius: 10px;
            }
            .brand-name {
                font-size: 15px;
            }
            .brand-tag {
                font-size: 8px;
                letter-spacing: .13em;
            }
            .page-hero {
                padding: 142px 0 58px;
                background-image: linear-gradient(180deg, rgba(10, 15, 28, .88) 0%, rgba(10, 15, 28, .78) 100%), url('/assets/images/backpic/back-1.webp');
            }
            .page-hero-inner {
                padding: 0 18px;
            }
            .crumb {
                font-size: 12px;
            }
            .hero-kicker {
                margin-top: 22px;
            }
            .page-hero h1 {
                font-size: 30px;
                line-height: 1.3;
            }
            .hero-lead {
                font-size: 15px;
            }
            .article-body-wrap {
                padding: 30px 18px 20px;
            }
            .cms-content {
                font-size: 16px;
            }
            .cms-content h2 {
                font-size: 21px;
            }
            .cms-content h3 {
                font-size: 18px;
            }
            .cms-content blockquote {
                padding: 18px;
            }
            .section {
                padding: 52px 0;
            }
            .section-head {
                padding: 0 18px;
                margin-bottom: 30px;
            }
            .section-note {
                margin-top: 12px;
            }
            .related-grid {
                padding: 0 18px;
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section-head {
                align-items: flex-start;
                flex-direction: column;
            }
            .cta-block {
                padding: 62px 18px;
                margin-top: 28px;
            }
            .cta-inner p {
                font-size: 15px;
            }
            .site-footer {
                padding: 52px 0 22px;
            }
            .container {
                padding: 0 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-bottom {
                font-size: 12px;
                gap: 8px 18px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
                scroll-behavior: auto !important;
            }
        }

/* roulang page: category1 */
:root {
    --bg: #0A0F1C;
    --panel: #111827;
    --coal: #1A2332;
    --kiwi: #C3F53C;
    --ember: #FF6B35;
    --silver: #9CA3AF;
    --title: #F3F4F6;
    --body: #D1D5DB;
    --muted: #8C97AB;
    --line: rgba(255, 255, 255, .12);
    --card-bg: rgba(255, 255, 255, .045);
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .25);
    --shadow-hover: 0 14px 38px rgba(0, 0, 0, .35), 0 0 0 1px rgba(195, 245, 60, .16);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--body);
    font-family: "Inter", "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: all .25s ease;
  }

  img {
    max-width: 100%;
    display: block;
  }

  button,
  input {
    font-family: inherit;
  }

  ::selection {
    background: var(--kiwi);
    color: #0A0F1C;
  }

  :focus-visible {
    outline: 2px solid var(--kiwi);
    outline-offset: 3px;
    border-radius: 6px;
  }

  ::-webkit-scrollbar {
    width: 10px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    background: #2D3648;
    border-radius: 999px;
  }

  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }

  @media (min-width: 1200px) {
    .container {
      padding-left: 48px;
      padding-right: 48px;
    }
  }

  @media (max-width: 1199.98px) {
    .container {
      padding-left: 24px;
      padding-right: 24px;
    }
  }

  @media (max-width: 767.98px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  }

  .site-header.scrolled {
    background: rgba(10, 15, 28, .88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, .12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
  }

  .site-header .header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .brand .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #C3F53C, #93E02E);
    color: #0A0F1C;
    font-weight: 900;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(195, 245, 60, .25);
    transition: transform .25s ease;
    letter-spacing: -1px;
  }

  .brand:hover .brand-mark {
    transform: rotate(-5deg) scale(1.03);
  }

  .brand-word {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
  }

  .brand-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .4px;
    white-space: nowrap;
  }

  .brand-name i {
    color: var(--kiwi);
    font-style: normal;
  }

  .brand-tag {
    font-size: 9px;
    letter-spacing: .22em;
    color: #8C97AB;
    margin-top: 4px;
    font-weight: 600;
  }

  .main-nav {
    display: flex;
    align-items: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border-radius: 999px;
    color: #C7CFDD;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--kiwi);
    background: rgba(195, 245, 60, .10);
  }

  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: var(--kiwi);
  }

  .header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--kiwi);
    color: #0A0F1C;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(195, 245, 60, .22);
    transition: all .25s ease;
  }

  .header-cta:hover {
    background: #DCFF6D;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(195, 245, 60, .28);
  }

  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  .category-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 72px;
    background:
      linear-gradient(78deg, rgba(10, 15, 28, .96) 0%, rgba(10, 15, 28, .84) 40%, rgba(10, 15, 28, .30) 100%),
      url("/assets/images/backpic/back-1.webp") center 38% / cover no-repeat;
  }

  .category-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(10, 15, 28, 0) 0%, #0A0F1C 96%);
    pointer-events: none;
  }

  .category-hero .container {
    position: relative;
    z-index: 2;
  }

  .category-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .05);
    border-radius: 999px;
    padding: 8px 16px;
    color: #D8DEE9;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kiwi);
    box-shadow: 0 0 0 4px rgba(195, 245, 60, .16);
  }

  .hero-kicker-note {
    color: var(--silver);
    font-size: 13px;
  }

  .hero-title {
    margin: 0;
    color: #F6F7FB;
    font-size: clamp(34px, 5.4vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.02em;
    max-width: 960px;
  }

  .hero-title .text-kiwi {
    color: var(--kiwi);
  }

  .hero-copy {
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 1.9;
    color: #D1D5DB;
    max-width: 650px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
  }

  .btn-primary,
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    transition: all .25s ease;
    border: 0;
    cursor: pointer;
  }

  .btn-primary {
    background: var(--kiwi);
    color: #0A0F1C;
    box-shadow: 0 8px 26px rgba(195, 245, 60, .24);
  }

  .btn-primary:hover {
    background: #DCFF6D;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(195, 245, 60, .30);
  }

  .btn-primary i {
    transition: transform .25s ease;
  }

  .btn-primary:hover i {
    transform: translateX(4px);
  }

  .btn-ghost {
    background: rgba(255, 255, 255, .07);
    color: #EDF0F6;
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(195, 245, 60, .45);
    transform: translateY(-1px);
  }

  .hero-footline {
    margin-top: 48px;
    color: #66758B;
    font-size: 12.5px;
    letter-spacing: .05em;
  }

  .section-spacing {
    padding: 90px 0;
  }

  @media (max-width: 767.98px) {
    .section-spacing {
      padding: 60px 0;
    }
    .category-hero {
      min-height: 560px;
      padding-top: 126px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
      width: 100%;
      justify-content: center;
    }
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kiwi);
    font-weight: 700;
    letter-spacing: .18em;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--kiwi);
  }

  .section-title {
    color: #F3F4F6;
    font-size: clamp(24px, 3.4vw, 38px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
  }

  .section-lead {
    color: #B9C0CE;
    font-size: 16.5px;
    line-height: 1.9;
    margin: 18px 0 0;
  }

  .intro-mini-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    padding: 28px 26px;
    height: 100%;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
  }

  .intro-mini-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--kiwi);
    opacity: 0;
    transition: opacity .25s ease;
  }

  .intro-mini-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .065);
    box-shadow: var(--shadow-hover);
  }

  .intro-mini-card:hover::before {
    opacity: 1;
  }

  .mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 245, 60, .12);
    color: var(--kiwi);
    font-size: 19px;
    margin-bottom: 18px;
  }

  .intro-mini-card h3 {
    color: #F6F7FB;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
  }

  .intro-mini-card p {
    margin: 0;
    color: #AAB4C5;
    font-size: 15px;
    line-height: 1.8;
  }

  .content-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }

  .content-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(195, 245, 60, .22);
  }

  .card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #182033;
  }

  .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .content-card:hover .card-media img {
    transform: scale(1.05);
  }

  .card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 28, 0) 45%, rgba(10, 15, 28, .58) 100%);
    pointer-events: none;
  }

  .card-media .card-flag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(10, 15, 28, .68);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #F1F5FA;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .card-tags span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #B9C2D4;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: 3px 9px;
  }

  .content-card h3 {
    margin: 0;
    color: #F6F7FB;
    font-size: 19px;
    font-weight: 750;
    line-height: 1.4;
  }

  .content-card p {
    margin: 0;
    font-size: 15px;
    color: #B0BACB;
    line-height: 1.83;
    flex: 1;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kiwi);
    font-weight: 700;
    font-size: 14px;
    margin-top: 6px;
  }

  .card-link i {
    transition: transform .25s ease;
  }

  .content-card:hover .card-link i {
    transform: translateX(4px);
  }

  .scene-route {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  @media (max-width: 1023.98px) {
    .scene-route {
      grid-template-columns: 1fr;
    }
  }

  .route-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 24px 22px;
    border-radius: 20px;
  }

  .route-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--kiwi);
    line-height: 1;
    font-family: Arial, sans-serif;
    margin-top: 2px;
    text-shadow: 0 0 18px rgba(195, 245, 60, .25);
  }

  .route-step h4 {
    color: #F3F4F6;
    font-size: 17px;
    margin: 0 0 6px;
    font-weight: 700;
  }

  .route-step p {
    color: #9FAABE;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.8;
  }

  .assurance-panel {
    background: linear-gradient(135deg, rgba(17, 24, 39, .78), rgba(10, 15, 28, .72));
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
  }

  .assurance-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .assurance-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .assurance-list i {
    color: var(--kiwi);
    font-size: 16px;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .assurance-list strong {
    display: block;
    color: #F3F4F6;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .assurance-list span {
    color: #A2ACBE;
    font-size: 14.5px;
    line-height: 1.8;
  }

  .assurance-panel .panel-aside {
    background: rgba(10, 15, 28, .45);
    padding: 26px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    height: 100%;
  }

  .panel-aside h4 {
    color: #F6F7FB;
    margin: 0 0 10px;
    font-size: 18px;
  }

  .panel-aside p {
    color: #A6B0C1;
    font-size: 15px;
    margin: 0;
    line-height: 1.85;
  }

  .shield-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: rgba(195, 245, 60, .12);
    color: var(--kiwi);
    font-size: 18px;
    margin-bottom: 14px;
  }

  .trust-grid-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--kiwi);
  }

  .faq-section {
    background:
      radial-gradient(circle at 84% 20%, rgba(195, 245, 60, .09), transparent 26%),
      linear-gradient(180deg, #0C1220 0%, #0A0F1C 100%);
  }

  .faq-item {
    background: rgba(255, 255, 255, .045);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .09);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
  }

  .faq-item.open {
    border-color: rgba(195, 245, 60, .38);
    background: rgba(255, 255, 255, .065);
  }

  .faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: #ECEEF4;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    transition: color .25s ease;
  }

  .faq-question:hover {
    color: var(--kiwi);
  }

  .faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(195, 245, 60, .10);
    color: var(--kiwi);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }

  .faq-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--silver);
    transition: transform .35s ease, color .25s ease;
  }

  .faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--kiwi);
  }

  .faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease;
  }

  .faq-panel-inner {
    padding: 0 19px 20px 60px;
    color: #B4BDCD;
    font-size: 15px;
    line-height: 1.95;
  }

  .faq-panel-inner strong {
    color: var(--kiwi);
    font-weight: 700;
  }

  .site-cta {
    background:
      radial-gradient(circle at 20% 30%, rgba(255, 107, 53, .12), transparent 19%),
      radial-gradient(circle at 82% 66%, rgba(195, 245, 60, .10), transparent 24%),
      #0A0F1C;
  }

  .cta-panel {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 30px;
    background: rgba(255, 255, 255, .035);
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 7vw, 88px) clamp(20px, 5vw, 70px);
    text-align: center;
  }

  .cta-panel::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -90%;
    width: 720px;
    height: 720px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(195, 245, 60, .08), transparent 62%);
    pointer-events: none;
  }

  .cta-title {
    color: #F6F7FB;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.25;
    font-weight: 800;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-copy {
    color: #B6C0CF;
    font-size: 16px;
    max-width: 700px;
    margin: 18px auto 0;
    line-height: 1.9;
  }

  .safe-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    font-size: 13px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
  }

  .safe-note i {
    color: var(--kiwi);
  }

  .site-footer {
    background: #05070D;
    color: #A9B3C4;
    padding: 70px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1.3fr;
    gap: 44px 36px;
    margin-bottom: 54px;
  }

  .footer-grid+.footer-bottom {
    margin-top: 22px;
  }

  @media (max-width: 1199.98px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  }

  .site-footer .brand-name {
    color: #F6F7FB;
  }

  .site-footer p {
    margin: 16px 0 0;
    font-size: 14.5px;
    line-height: 1.9;
    color: #8F9AAF;
    max-width: 420px;
  }

  .footer-title {
    color: #F3F4F6;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    margin: 0 0 16px;
  }

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .footer-links a {
    color: #9AA6BB;
    font-size: 14px;
    line-height: 1.4;
    transition: color .2s ease, padding-left .2s ease;
  }

  .footer-links a:hover {
    color: var(--kiwi);
    padding-left: 4px;
  }

  .footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .footer-contact li {
    display: flex;
    gap: 10px;
    color: #9AA6BB;
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-contact span {
    color: var(--kiwi);
    font-size: 10px;
    margin-top: 5px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    align-items: center;
    justify-content: space-between;
    color: #69768C;
    font-size: 12.5px;
  }

  .footer-bottom .copyright,
  .footer-bottom .domain-note {
    color: #69768C;
  }

  @media (max-width: 1023.98px) {
    .main-nav {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(82vw, 380px);
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 8px;
      background: rgba(7, 11, 21, .97);
      border-left: 1px solid rgba(255, 255, 255, .12);
      padding: 110px 28px 40px;
      transform: translateX(105%);
      transition: transform .35s ease;
      box-shadow: -20px 0 50px rgba(0, 0, 0, .4);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .main-nav.mobile-open {
      transform: translateX(0);
    }

    .nav-list {
      flex-direction: column;
      gap: 8px;
      align-items: stretch;
      width: 100%;
    }

    .nav-link {
      width: 100%;
      text-align: left;
      justify-content: flex-start;
      padding: 13px 16px;
      font-size: 16px;
    }

    .nav-link.active::after {
      display: none;
    }

    .nav-link.active {
      color: var(--kiwi);
      background: rgba(195, 245, 60, .10);
    }

    .nav-toggle {
      display: inline-flex;
    }
  }

  @media (max-width: 767.98px) {
    .header-cta {
      display: none;
    }

    .site-header .header-wrap {
      min-height: 72px;
    }

    .brand-name {
      font-size: 15px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }

    html {
      scroll-behavior: auto;
    }

    .content-card:hover .card-media img {
      transform: none;
    }
  }

/* roulang page: category2 */
:root {
            --kiwigreen: #C3F53C;
            --orange: #FF6B35;
            --bg: #0A0F1C;
            --panel: #111827;
            --panel-soft: #1A2332;
            --text-title: #F3F4F6;
            --text-body: #D1D5DB;
            --text-dim: #9CA3AF;
            --radius-card: 18px;
            --radius-btn: 999px;
            --radius-small: 10px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(195, 245, 60, 0.15);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            background-color: #0A0F1C;
            color: #D1D5DB;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container-custom {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 48px;
        }

        /* ===== Navigation ===== */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 15, 28, 0.5);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
            transition: background 0.35s ease, box-shadow 0.35s ease;
        }

        .main-header.scrolled {
            background: rgba(17, 24, 39, 0.88);
            box-shadow: 0 0.5px 0 rgba(255, 255, 255, 0.1);
        }

        .main-header .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
            gap: 32px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .brand-mark {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, #C3F53C 0%, #8BC926 100%);
            color: #0A0F1C;
            font-weight: 900;
            font-size: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 18px rgba(195, 245, 60, 0.25);
        }

        .brand-word {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .brand-name {
            font-size: 18px;
            font-weight: 800;
            color: #F3F4F6;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .brand-name i {
            color: #C3F53C;
            font-style: normal;
            margin: 0 2px;
        }

        .brand-tag {
            font-size: 10px;
            letter-spacing: 2px;
            color: #9CA3AF;
            font-family: Arial, sans-serif;
            text-transform: uppercase;
        }

        .main-nav .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 6px;
        }

        .nav-link {
            display: block;
            padding: 8px 18px;
            font-size: 15px;
            font-weight: 500;
            color: rgba(243, 244, 246, 0.85);
            border-radius: 999px;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: #C3F53C;
            background: rgba(195, 245, 60, 0.08);
        }

        .nav-link.active {
            color: #0A0F1C;
            background: #C3F53C;
            font-weight: 700;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .header-search {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D1D5DB;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .header-search:hover {
            border-color: rgba(195, 245, 60, 0.5);
            color: #C3F53C;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #C3F53C;
            color: #0A0F1C;
            font-weight: 700;
            font-size: 14px;
            padding: 9px 20px;
            border-radius: 999px;
            border: none;
            transition: all 0.25s ease;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(195, 245, 60, 0.2);
        }

        .cta-btn:hover {
            background: #d8ff5e;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 4px 18px rgba(195, 245, 60, 0.35);
        }

        .hamburger-btn {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.06);
            color: #F3F4F6;
            font-size: 18px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 78px;
            left: 0;
            right: 0;
            background: rgba(17, 24, 39, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 99;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu .mobile-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mobile-menu .mobile-nav-link {
            display: block;
            padding: 12px 16px;
            font-size: 16px;
            color: #D1D5DB;
            border-radius: 12px;
            transition: all 0.25s ease;
        }

        .mobile-menu .mobile-nav-link:hover,
        .mobile-menu .mobile-nav-link.active {
            color: #0A0F1C;
            background: #C3F53C;
            font-weight: 700;
        }

        /* ===== Category Hero ===== */
        .category-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: flex-end;
            background-image: linear-gradient(90deg, rgba(10, 15, 28, 0.92) 0%, rgba(10, 15, 28, 0.6) 50%, rgba(10, 15, 28, 0.3) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding-top: 180px;
            padding-bottom: 72px;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 15, 28, 0.6) 0%, transparent 60%);
            pointer-events: none;
        }

        .category-hero .container-custom {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 14px;
            border: 1px solid rgba(195, 245, 60, 0.35);
            border-radius: 999px;
            background: rgba(195, 245, 60, 0.08);
            color: #C3F53C;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            backdrop-filter: blur(4px);
        }

        .category-hero h1 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 900;
            color: #F3F4F6;
            line-height: 1.2;
            margin: 0 0 20px;
            letter-spacing: -0.5px;
            max-width: 900px;
        }

        .category-hero h1 span {
            color: #C3F53C;
        }

        .category-hero .hero-desc {
            font-size: 17px;
            line-height: 1.9;
            color: rgba(209, 213, 219, 0.9);
            max-width: 680px;
            margin-bottom: 32px;
        }

        .hero-hero-meta {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 720px;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #9CA3AF;
            font-size: 14px;
        }

        .hero-meta-item i {
            color: #C3F53C;
            font-size: 14px;
            width: 18px;
        }

        /* ===== Buttons ===== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #C3F53C;
            color: #0A0F1C;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: 999px;
            transition: all 0.25s ease;
            box-shadow: 0 4px 18px rgba(195, 245, 60, 0.2);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #d8ff5e;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(195, 245, 60, 0.35);
        }

        .btn-primary i {
            transition: transform 0.25s ease;
        }

        .btn-primary:hover i {
            transform: translateX(4px);
        }

        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.06);
            color: #F3F4F6;
            font-weight: 600;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(6px);
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(195, 245, 60, 0.4);
            color: #C3F53C;
        }

        /* ===== Section styles ===== */
        .dark-section {
            padding: 100px 0;
            background-color: #0A0F1C;
        }

        .dark-section-alt {
            padding: 100px 0;
            background-color: rgba(17, 24, 39, 0.6);
            position: relative;
        }

        .section-header {
            max-width: 750px;
            margin-bottom: 56px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #C3F53C;
            text-transform: uppercase;
            margin-bottom: 12px;
            padding: 4px 14px;
            border-radius: 999px;
            background: rgba(195, 245, 60, 0.06);
            border: 1px solid rgba(195, 245, 60, 0.12);
        }

        .section-title {
            font-size: clamp(28px, 3.2vw, 40px);
            font-weight: 800;
            line-height: 1.3;
            color: #F3F4F6;
            margin: 0 0 16px;
            letter-spacing: -0.3px;
        }

        .section-desc {
            font-size: 16px;
            color: #9CA3AF;
            line-height: 1.9;
            margin: 0;
        }

        /* ===== Cards ===== */
        .card-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .glow-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 18px;
            padding: 40px 32px;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(6px);
            overflow: hidden;
        }

        .glow-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(195, 245, 60, 0.4), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glow-card:hover {
            transform: translateY(-6px);
            border-color: rgba(195, 245, 60, 0.2);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(195, 245, 60, 0.08);
        }

        .glow-card:hover::before {
            opacity: 1;
        }

        .glow-card .card-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(195, 245, 60, 0.1);
            border: 1px solid rgba(195, 245, 60, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #C3F53C;
            margin-bottom: 20px;
        }

        .glow-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #F3F4F6;
            margin: 0 0 10px;
            line-height: 1.5;
        }

        .glow-card p {
            font-size: 14px;
            line-height: 1.8;
            color: #9CA3AF;
            margin: 0;
        }

        /* ===== Cover photo cards ===== */
        .story-card {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            height: 420px;
            background: #1A2332;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 420px;
        }

        .story-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .story-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 15, 28, 0.96) 0%, rgba(10, 15, 28, 0.2) 50%, transparent 80%);
            z-index: 1;
        }

        .story-card:hover {
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            transform: translateY(-6px);
            border-color: rgba(195, 245, 60, 0.2);
        }

        .story-card:hover img {
            transform: scale(1.06) rotate(0.5deg);
        }

        .story-card-content {
            position: relative;
            z-index: 2;
            padding: 28px 24px;
        }

        .story-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 400;
            color: #0A0F1C;
            background: #C3F53C;
            border-radius: 999px;
            padding: 3px 12px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .story-tag.orange {
            background: #FF6B35;
            color: #fff;
        }

        .story-card-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: #F3F4F6;
            line-height: 1.4;
            margin: 0 0 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .story-card-content p {
            font-size: 14px;
            color: rgba(209, 213, 219, 0.8);
            line-height: 1.7;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .story-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #C3F53C;
            transition: all 0.25s ease;
        }

        .story-link i {
            transition: transform 0.25s ease;
        }

        .story-link:hover i {
            transform: translateX(4px);
        }

        /* ===== Featured persona section ===== */
        .feature-spotlight {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 48px;
            align-items: center;
            background: linear-gradient(120deg, rgba(17, 24, 39, 0.85) 0%, rgba(26, 35, 50, 0.72) 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            padding: 56px;
            overflow: hidden;
            position: relative;
        }

        .feature-spotlight::before {
            content: close-quote;
            position: absolute;
            right: -60px;
            top: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(195, 245, 60, 0.3) 0%, transparent 70%);
            opacity: 0.5;
            border-radius: 50%;
        }

        .feature-img-wrap {
            position: relative;
            min-height: 400px;
            border-radius: 20px;
            overflow: hidden;
        }

        .feature-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .feature-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 5;
            background: rgba(10, 15, 28, 0.7);
            color: #C3F53C;
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(195, 245, 60, 0.25);
        }

        .feature-title {
            font-size: 28px;
            font-weight: 800;
            color: #F3F4F6;
            line-height: 1.4;
            margin-bottom: 16px;
        }

        .feature-desc {
            color: #9CA3AF;
            font-size: 15px;
            line-height: 2;
            margin-bottom: 24px;
        }

        .feature-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 9px 0;
            color: #D1D5DB;
            font-size: 14px;
            line-height: 1.7;
        }

        .feature-list li i {
            color: #C3F53C;
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* ===== Stats ===== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px 22px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: rgba(195, 245, 60, 0.2);
            background: rgba(195, 245, 60, 0.05);
            transform: translateY(-3px);
        }

        .stat-num {
            font-size: clamp(22px, 2.8vw, 38px);
            font-weight: 900;
            color: #C3F53C;
            line-height: 1.2;
            margin-bottom: 8px;
            font-family: "Inter", Arial, sans-serif;
        }

        .stat-label {
            font-size: 13px;
            color: #9CA3AF;
        }

        /* ===== Timeline ===== */
        .timeline-wrap {
            margin-top: 60px;
            position: relative;
        }

        .timeline-wrap::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: gradient(180deg, rgba(195, 245, 60, 0.5), rgba(255, 255, 255, 0.1));
            background: linear-gradient(180deg, rgba(195, 245, 60, 0.4) 0%, rgba(255, 255, 255, 0.08) 100%);
        }

        .timeline-item {
            position: relative;
            padding-left: 68px;
            margin-bottom: 32px;
        }

        .timeline-dot {
            position: absolute;
            left: 15px;
            top: 24px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #0A0F1C;
            border: 3px solid #C3F53C;
            box-shadow: 0 0 0 4px rgba(195, 245, 60, 0.1);
            z-index: 1;
        }

        .timeline-card {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 16px;
            padding: 24px 28px;
            transition: all 0.3s ease;
        }

        .timeline-card:hover {
            border-color: rgba(195, 245, 60, 0.2);
            background: rgba(195, 245, 60, 0.04);
        }

        .timeline-date {
            font-size: 13px;
            font-weight: 700;
            color: #9CA3AF;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .timeline-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: #E5E7EB;
            margin-bottom: 8px;
        }

        .timeline-card p {
            font-size: 14px;
            color: #9CA3AF;
            margin: 0;
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 14px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .faq-item.active {
            border-color: rgba(195, 245, 60, 0.2);
            background: rgba(195, 245, 60, 0.04);
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
            gap: 16px;
        }

        .faq-q span {
            font-size: 15px;
            color: #D1D5DB;
            font-weight: 600;
            line-height: 1.6;
            flex: 1;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #C3F53C;
            font-size: 13px;
            transition: transform 0.35s ease, background 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: rgba(195, 245, 60, 0.15);
            border-color: rgba(195, 245, 60, 0.4);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
        }

        .faq-item.active .faq-a {
            max-height: 400px;
            padding: 0 24px 20px;
        }

        .faq-a p {
            margin: 0;
            color: #9CA3AF;
            font-size: 14px;
            line-height: 2;
        }

        /* ===== CTA ===== */
        .cta-section {
            position: relative;
            padding: 120px 0;
            background: radial-gradient(ellipse at 70% 20%, rgba(195, 245, 60, 0.1) 0%, transparent 50%), linear-gradient(135deg, #111827 0%, #0A0F1C 100%);
            overflow: hidden;
            text-align: center;
        }

        .cta-inner, .cta-inner-top {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-inner-top h2 {
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 900;
            color: #F3F4F6;
            margin-bottom: 16px;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }

        .cta-inner-top p {
            font-size: 15px;
            color: #9CA3AF;
            line-height: 2;
            margin-bottom: 32px;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .secure-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            color: #9CA3AF;
            font-size: 13px;
            background: rgba(255, 255, 255, 0.04);
            padding: 8px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .secure-note i {
            color: #C3F53C;
        }

        /* ===== Footer ===== */
        .site-footer {
            background-color: #05070d;
            padding: 80px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .site-footer a {
            color: #9CA3AF;
            transition: color 0.3s ease;
        }

        .site-footer a:hover {
            color: #C3F53C;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 0.9fr 0.9fr 1.2fr;
            gap: 40px;
            padding-bottom: 60px;
        }

        .footer-brand {
            margin-bottom: 16px;
        }

        .footer-brand .brand-name {
            font-size: 17px;
        }

        .footer-brand p {
            margin: 0;
            font-size: 14px;
            line-height: 1.9;
            color: #6b7280;
            max-width: 280px;
            margin-top: 16px;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 700;
            color: #D1D5DB;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #9CA3AF;
            font-size: 14px;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-contact li {
            font-size: 14px;
            color: #9CA3AF;
            display: flex;
            gap: 8px;
        }

        .footer-contact li span {
            color: #C3F53C;
            font-size: 10px;
            margin-top: 2px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 24px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #6b7280;
        }

        .copyright {
            font-size: 12px;
            white-space: nowrap;
        }

        .domain-note {
            font-family: "Inter", Arial, sans-serif;
            letter-spacing: 0.5px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1200px) {
            .container-custom {
                padding: 0 36px;
            }
            .footer-grid {
                gap: 24px;
            }
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 991px) {
            .main-nav {
                display: none;
            }
            .header-search, .header-cta {
                display: none;
            }
            .hamburger-btn {
                display: inline-flex;
            }
            .card-grid-3, .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 20px;
            }
            .category-hero {
                min-height: auto;
                padding-top: 130px;
                padding-bottom: 45px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .section-header {
                margin-bottom: 36px;
            }
            .card-grid-3, .card-grid-4, .card-grid-2 {
                grid-template-columns: 1fr;
            }
            .feature-spotlight {
                grid-template-columns: 1fr;
                padding: 0;
                overflow: hidden;
                gap: 0;
            }
            .feature-img-wrap {
                min-height: 260px;
                order: -1;
            }
            .feature-text-block {
                padding: 32px 24px;
            }
            .story-card {
                min-height: 350px;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                padding-bottom: 40px;
            }
            .footer-bottom {
                padding: 18px 0;
                flex-direction: column;
                text-align: center;
                line-height: 24px;
            }
            .container-footer {
                padding: 0 20px;
            }
            .copyright {
                white-space: normal;
            }
        }

        @media (max-width: 520px) {
            .stats-row {
                grid-template-columns: 1fr 1fr;
            }
            .glow-card {
                padding: 24px 20px;
            }
            .timeline-card {
                padding: 18px 20px;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .brand-tag {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }

/* roulang page: category3 */
/* 设计变量与基础复位 */
        :root {
            --bg-dark: #0A0F1C;
            --bg-panel: #111827;
            --kiwi: #C3F53C;
            --kiwi-hover: #d4ff5e;
            --accent: #FF6B35;
            --silver: #9CA3AF;
            --text-light: #F3F4F6;
            --text-body: #D1D5DB;
            --text-weak: #6B7280;
            --border-weak: rgba(255, 255, 255, 0.12);
            --card-bg: rgba(255, 255, 255, 0.04);
            --radius-card: 18px;
            --radius-btn: 999px;
            --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(195, 245, 60, 0.14);
            --transition: all .25s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-body);
            font-family: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", ui-sans-serif, sans-serif;
            line-height: 1.8;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            outline: none;
            border: none;
            background: none;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section {
            padding: 96px 0;
            position: relative;
        }

        .section-kicker {
            color: var(--kiwi);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-kicker::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--kiwi);
            box-shadow: 0 0 8px rgba(195, 245, 60, 0.6);
            flex: none;
        }

        .section-title {
            font-size: clamp(30px, 5vw, 44px);
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-light);
            letter-spacing: -0.01em;
            margin-top: 14px;
        }

        .section-sub {
            font-size: 17px;
            color: var(--silver);
            line-height: 1.8;
            max-width: 46rem;
            margin-top: 14px;
        }

        /* 玻璃导航 */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 15, 28, 0.42);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            padding: 0;
        }

        .main-nav.scrolled {
            background: rgba(17, 24, 39, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(195, 245, 60, 0.08) inset;
            border-bottom-color: rgba(255, 255, 255, 0.06);
        }

        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: none;
        }

        .brand-mark {
            width: 44px;
            height: 44px;
            border-radius: 13px;
            background: linear-gradient(135deg, var(--kiwi) 0%, #a7e034 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111827;
            font-size: 22px;
            font-weight: 900;
            font-family: "PingFang SC", sans-serif;
            box-shadow: 0 0 24px rgba(195, 245, 60, 0.28), 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .brand-word {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .brand-name i {
            font-style: normal;
            color: var(--kiwi);
            font-weight: 900;
        }

        .brand-tag {
            font-size: 10px;
            font-family: 'Inter', Arial, sans-serif;
            letter-spacing: 0.28em;
            color: var(--silver);
            font-weight: 500;
            text-transform: uppercase;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            display: inline-block;
            padding: 8px 16px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 500;
            color: #E5E7EB;
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.08);
        }

        .nav-link.active {
            color: var(--bg-dark);
            background: var(--kiwi);
            font-weight: 600;
            box-shadow: 0 0 20px rgba(195, 245, 60, 0.2);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--kiwi);
            color: #0A0F1C;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            box-shadow: 0 4px 18px rgba(195, 245, 60, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-cta:hover {
            background: var(--kiwi-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(195, 245, 60, 0.35);
            color: #05070d;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-search {
            color: var(--silver);
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: var(--transition);
            cursor: pointer;
        }

        .nav-search:hover {
            color: var(--kiwi);
            border-color: var(--kiwi);
            box-shadow: 0 0 16px rgba(195, 245, 60, 0.2);
        }

        .burger-btn {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: white;
            font-size: 18px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.04);
        }

        /* 页头 Hero — 半条幅版 */
        .category-hero {
            padding-top: 140px;
            padding-bottom: 110px;
            background-color: #0A0F1C;
            background-image: linear-gradient(77deg, rgba(10, 15, 28, 0.97) 20%, rgba(10, 15, 28, 0.65) 80%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 25%;
            position: relative;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, #0A0F1C 0%, transparent 100%);
            z-index: 1;
        }

        .category-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .category-hero .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            border-radius: 900px;
            background: rgba(195, 245, 60, 0.1);
            border: 1px solid rgba(195, 245, 60, 0.35);
            color: var(--kiwi);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            backdrop-filter: blur(4px);
            margin-bottom: 28px;
        }

        .category-hero h1 {
            color: white;
            font-size: clamp(34px, 6vw, 58px);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.015em;
            margin-bottom: 18px;
            word-break: break-word;
        }

        .category-hero h1 span {
            color: var(--kiwi);
        }

        .category-hero p {
            color: #D1D5DB;
            font-size: 18px;
            line-height: 2;
            margin-top: 18px;
            max-width: 620px;
            opacity: .95;
        }

        .btn-group {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .btn-kiwi {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--kiwi);
            color: var(--bg-dark);
            font-weight: 700;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(195, 245, 60, 0.18);
        }

        .btn-kiwi:hover {
            background: var(--kiwi-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(195, 245, 60, 0.35);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .btn-kiwi .fa-arrow-right {
            transition: transform 0.25s ease;
        }

        .btn-kiwi:hover .fa-arrow-right {
            transform: translateX(4px);
        }

        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-weight: 500;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(8px);
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
            transform: translateY(-2px);
        }

        .breadcrumb {
            font-size: 14px;
            color: #B0B7C3;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 24px;
            font-weight: 400;
        }

        .breadcrumb a {
            color: var(--silver);
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--kiwi);
        }

        .breadcrumb i {
            font-size: 12px;
            color: #4A5568;
            margin: 0 8px;
        }

        .breadcrumb .cur {
            color: #E5E7EB;
        }

        /* 网格板块 */
        .content-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .content-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .content-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .culture-card {
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            overflow: hidden;
            transition: all .3s cubic-bezier(.2, .7, .3, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-soft);
        }

        .culture-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(195, 245, 60, 0.16);
            border-color: rgba(195, 245, 60, 0.25);
        }

        .culture-card .cover {
            position: relative;
            border-radius: 22px 22px 0 0;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

        .culture-card .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .culture-card:hover .cover img {
            transform: scale(1.04);
        }

        .card-overlay {
            background: linear-gradient(0deg, rgba(10, 15, 28, 0.8) 0%, transparent 55%);
            position: absolute;
            inset: 0;
        }

        .culture-card .body {
            padding: 26px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .tiny-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(195, 245, 60, 0.12);
            color: var(--kiwi);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 100px;
            border: 1px solid rgba(195, 245, 60, 0.35);
            margin-bottom: 16px;
            width: fit-content;
        }

        .tiny-badge.accent {
            background: rgba(255, 107, 53, 0.12);
            color: #FF8F63;
            border-color: rgba(255, 107, 53, 0.35);
        }

        .culture-card h3 {
            color: var(--text-light);
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
            letter-spacing: 0;
        }

        .culture-card p.desc {
            font-size: 14px;
            color: var(--silver);
            line-height: 1.8;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        .card-meta span {
            font-size: 12px;
            color: var(--silver);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .card-link{
            color: rgba(255,255,255,0.5);
            float: right;
        }

        .card-link:hover {
            color: var(--kiwi);
        }

        .read-more {
            color: var(--kiwi);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .read-more .fa-arrow-right {
            font-size: 13px;
            transition: transform 0.25s ease;
        }

        .read-more:hover .fa-arrow-right {
            transform: translateX(4px);
        }

        /* 「视野高低点」内容 + 特色模块 */
        .feature-block {
            background: linear-gradient(135deg, rgba(195, 245, 60, 0.07) 0%, rgba(17, 24, 39, 0.6) 50%, rgba(255, 107, 53, 0.06) 100%);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 20px;
            padding: 40px;
        }

        .feature-good {
            background: rgba(195, 245, 60, 0.1);
            border-left: 2px solid var(--kiwi);
        }

        /* 数字信息 */
        .brand-number {
            color: var(--kiwi);
            font-weight: 800;
            font-size: 42px; 
            line-height: 1;
            font-family: 'Inter', 'Space Grotesk', sans-serif;
            letter-spacing: -0.02em;
        }

        /* 资讯区 */
        .news-block {
            background: #0E1626;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .news-title {
            color: white;
            font-weight: 800;
            transition: var(--transition);
            font-size: 17px;
        }

        .list-meta {
            background: var(--bg-dark);
        }
        
        .list-meta a {
            color: white;
        }
        .cms-news-title{
            color: white;
        }
        .cms-news-title:hover{ color : var(--kiwi); }

        /* CTA 区 */
        .cta-area {
            padding: 96px 0;
            background: linear-gradient(135deg, #0c1320 0%, rgba(17, 24, 39, 0.8) 55%, #2a2f22 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-area::before {
            content: '';
            position: absolute;
            top: -300px;
            right: -200px;
            width: 620px;
            height: 620px;
            background: radial-gradient(circle, rgba(195, 245, 60, 0.18) 0%, transparent 55%);
            pointer-events: none;
            transform: rotate(10deg);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 0 24px;
        }

        .cta-inner h2 {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            color: white;
            letter-spacing: -0.01em;
            line-height: 1.4;
            margin-bottom: 16px;
        }

        .cta-inner h2 span {
            color: var(--kiwi);
        }

        .cta-inner p {
            color: #9CA3AF;
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 32px;
            max-width: 76%;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .shield-line {
            font-size: 12px;
            color: var(--silver);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 18px;
        }

        .shield-line .fa-shield {
            color: var(--kiwi);
        }

        /* FAQ 手风琴 */
        .faq-wrap {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 0;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: none;
        }

        .faq-item:hover {
            border-color: rgba(195, 245, 60, 0.25);
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-item.is-active {
            border-left: 2px solid var(--kiwi);
            border-color: rgba(195, 245, 60, 0.3);
        }

        .faq-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            padding: 20px 26px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-light);
            gap: 16px;
            transition: var(--transition);
        }

        .faq-btn i {
            color: var(--silver);
            font-size: 14px;
            flex: none;
            transition: transform 0.35s ease;
        }

        .faq-item.is-active .faq-btn i {
            transform: rotate(180deg);
            color: var(--kiwi);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer p {
            padding: 0 28px 24px;
            color: #B8C0CC;
            line-height: 1.85;
            font-size: 15px;
        }

        /* 页脚 */
        .site-footer {
            background: #05070D;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 70px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
            gap: 60px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px 50px 32px;
        }

        .footer-brand p {
            color: #778197;
            font-size: 14px;
            margin-top: 20px;
        }

        .footer-title {
            color: white;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.08em;
            margin-bottom: 22px;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-links a {
            color: var(--silver);
            font-size: 15px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--kiwi);
            transform: translateX(4px);
            display: inline-block;
        }

        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            color: var(--silver);
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-contact span {
            color: var(--kiwi);
            margin-top: 4px;
            font-size: 10px;
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        .copyright {
            color: #6A7282;
            font-size: 13px;
        }

        .domain-note {
            color: #515A6B;
            font-size: 13px;
            font-family: 'Inter', sans-serif;
        }

        /* 端粒：数据框 */
        .data-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
            justify-content: center;
            max-width: 1280px;
            margin: 0 auto;
        }

        .data-item {
            flex: 1;
            min-width: 160px;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .data-item .value {
            font-size: 48px;
            font-weight: 800;
            color: var(--kiwi);
            line-height: 1.1;
        }

        .data-item .label {
            color: var(--silver);
            font-size: 15px;
            margin-top: 10px;
        }

        .rich-border {
            border-top: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav-mobile {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(10, 15, 28, 0.96);
            backdrop-filter: blur(20px);
            z-index: 100;
            padding: 24px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
            list-style: none;
        }

        /* 互动 → .mobile */
        .mobile-anchor { display:none; }

        /* 响应式断点 */
        @media (min-width: 1200px) {
            /* 默认桌面 */
        }

        @media (max-width: 1199px) {
            .content-grid-4 {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .footer-grid {
                gap: 40px;
                grid-template-columns: 1fr 1fr;
            }
            .category-hero h1 {
                font-size: 48px;
            }
        }

        @media (max-width: 990px) {
            .nav-list {
                display: none;
            }
            .nav-sub-list {
                display: none;
            }
            .burger-btn {
                display: flex;
            }
            .mobile-anchor {
                display: none;
            }
            .nav-actions .nav-search {
                display: none;
            }
            .content-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .data-highlights {
                gap: 20px;
            }
            .data-item .value {
                font-size: 34px;
            }
        }

        @media (min-width: 991px) {
            .nav-mobile, .mobile {
                display:none !important;
            }
        }

        @media (max-width: 767px) {
            .nav-wrap {
                padding: 0 20px;
            }
            .video-grid {
                grid-template-columns: 1fr;
            }
            .category-hero-inner {
                padding: 0 20px;
            }
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 70px 0;
            }
            .category-hero {
                padding-top: 120px;
                padding-bottom: 70px;
            }
            .category-hero p {
                font-size: 16px;
                line-height: 1.8;
            }
            .category-hero h1 {
                font-size: 34px;
            }
            .brand-name {
                font-size: 18px;
            }
            .brand-tag {
                font-size: 9px;
            }
            .btn-group {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
            }
            .btn-kiwi, .btn-glass {
                justify-content: center;
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 0 20px 30px;
            }
            .footer-bottom {
                padding: 24px 20px;
                justify-content: center;
                text-align: center;
            }
            .content-grid-4 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .content-grid-3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .content-grid-2 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .faq-btn, .faq-answer p {
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        @media (max-width: 520px) {
            .section {
                padding: 60px 0;
            }
            .section-sub {
                font-size: 15px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .brand-name {
                font-size: 17px;
            }
        }

        /* focus ring */
        a:focus-visible, button:focus-visible {
            outline: 2px solid var(--kiwi);
            outline-offset: 3px;
            text-decoration: none;
        }

        a:focus:not(:focus-visible) {
            outline: none;
        }

        button:focus-visible { outline-offset: 4px; border-radius:8px }

        .search-pop {
            display: none;
            position: absolute;
            right: 20px;
            bottom: -68px;
            width: 280px;
            background: #111b2c;
            border-radius: 12px;
            padding: 10px 12px;
            backdrop-filter: blur(18px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .search-input {
            width: 100%;
            padding: 8px 14px 8px 10px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 14px;
        }

        /* prefers reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        @media(prefers-reduced-motion: no-preference) {
            .category-hero {
                animation: heroZoomIn 10s cubic-bezier(.2,.6,.2,1) both alternate;
            }
            @keyframes heroZoomIn {
                from { background-size: 140%; }
                to { background-size: 110%; }
            }
        }

/* roulang page: category4 */
:root {
            --bg: #0A0F1C;
            --panel: #111827;
            --panel-soft: #1A2332;
            --green: #C3F53C;
            --green-light: #d8ff6e;
            --orange: #FF6B35;
            --silver: #9CA3AF;
            --text-title: #F3F4F6;
            --text-body: #D1D5DB;
            --text-weak: #9CA3AF;
            --border-white: rgba(255, 255, 255, 0.08);
            --card-bg: rgba(255, 255, 255, 0.04);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif; background: var(--bg); color: var(--text-body); line-height: 1.8; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; transition: color .25s ease; }
        img { max-width: 100%; display: block; object-fit: cover; }
        ul, ol { list-style: none; }
        button, input { font-family: inherit; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; width: 100%; }

        .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .3s ease; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: rgba(10, 15, 28, 0.6); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
        .site-header.header-scrolled { background: rgba(17, 24, 39, 0.92); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); border-bottom-color: rgba(195, 245, 60, 0.12); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }

        .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
        .brand-mark { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(195, 245, 60, 0.2), rgba(195, 245, 60, 0.05)); border: 1px solid rgba(195, 245, 60, 0.35); color: var(--green); border-radius: 12px; font-weight: 900; font-size: 20px; box-shadow: 0 4px 16px rgba(195, 245, 60, 0.1); }
        .brand-word { display: flex; flex-direction: column; line-height: 1.2; }
        .brand-name { font-weight: 800; font-size: 18px; color: var(--text-title); letter-spacing: 0.02em; }
        .brand-name i { font-style: normal; color: var(--green); }
        .brand-tag { font-size: 10px; letter-spacing: 0.28em; color: var(--silver); font-family: Arial, sans-serif; }

        .main-nav { display: flex; }
        .nav-list { display: flex; align-items: center; gap: 4px; }
        .nav-link { display: inline-block; padding: 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: rgba(243, 244, 246, 0.8); transition: all .25s ease; }
        .nav-link:hover { color: var(--text-title); background: rgba(255, 255, 255, 0.06); }
        .nav-link.active { color: #0A0F1C; background: var(--green); font-weight: 700; box-shadow: 0 4px 16px rgba(195, 245, 60, 0.25); }

        .header-actions { display: flex; align-items: center; gap: 12px; }
        .search-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border-white); border-radius: 999px; color: var(--text-body); font-size: 14px; cursor: pointer; transition: all .25s ease; }
        .search-btn:hover { color: var(--green); border-color: rgba(195, 245, 60, 0.4); background: rgba(195, 245, 60, 0.08); }
        .header-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #0A0F1C; font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 999px; transition: all .25s ease; border: none; cursor: pointer; }
        .header-cta:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(195, 245, 60, 0.3); }
        .header-cta i { transition: transform .25s ease; }
        .header-cta:hover i { transform: translateX(4px); }

        .mobile-toggle { display: none; width: 44px; height: 44px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-white); border-radius: 12px; color: var(--text-body); justify-content: center; align-items: center; cursor: pointer; font-size: 18px; }
        .mobile-drawer { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw); background: rgba(10, 15, 28, 0.98); backdrop-filter: blur(20px); z-index: 200; padding: 32px 20px; flex-direction: column; border-left: 1px solid rgba(255,255,255,0.08); transform: translateX(100%); transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1); }
        .mobile-drawer.open { transform: translateX(0); }
        .drawer-close { align-self: flex-end; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.06); border: none; color: var(--text-title); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; margin-bottom: 20px; }
        .drawer-nav-list { display: flex; flex-direction: column; gap: 6px; }
        .drawer-nav-list a { padding: 14px 18px; border-radius: 14px; color: var(--text-body); font-weight: 500; font-size: 15px; transition: all .25s ease; }
        .drawer-nav-list a.active { color: #0A0F1C; background: var(--green); font-weight: 700; }
        .drawer-nav-list a:hover { background: rgba(255,255,255,0.08); color: var(--text-title); }
        .drawer-nav-list a.active:hover { background: var(--green-light); } 
        .drawer-footer { margin-top: auto; font-size: 12px; color: var(--text-weak); border-top: 1px solid var(--border-white); padding: 20px 6px 8px; line-height: 1.6; }

        .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; backdrop-filter: blur(2px); }

        @media (max-width: 992px) {
            .main-nav { display: none; }
            .mobile-toggle { display: flex; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 16px; }
            .header-inner { height: 64px; }
            .header-cta { display: none; }
            .brand-name { font-size: 17px; }
            .brand-tag { display: none; }
        }

        .category-banner { position: relative; padding: 160px 0 80px; background: linear-gradient(180deg, rgba(10,15,28,0.3) 0%, var(--bg) 100%); overflow: hidden; }
        .category-banner-bg { position: absolute; inset: 0; z-index: -1; }
        .category-banner-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,15,28,0.96) 15%, rgba(10,15,28,0.65) 55%, rgba(10,15,28,0.4) 100%); }
        .category-banner-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(195,245,60,0.08) 0%, transparent 60%); }
        .category-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
        .category-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--silver); margin-bottom: 24px; flex-wrap: wrap; }
        .category-breadcrumb a:hover { color: var(--green); }
        .category-breadcrumb .sep { color: rgba(255,255,255,0.3); }
        .category-breadcrumb .current { color: var(--text-body); }
        .category-banner-content { max-width: 800px; }
        .banner-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(195,245,60,0.12); border: 1px solid rgba(195,245,60,0.3); color: var(--green); font-size: 12px; font-weight: 600; border-radius: 999px; letter-spacing: 0.08em; margin-bottom: 20px; }
        .category-banner h1 { color: var(--text-title); font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.25; margin-bottom: 20px; letter-spacing: -0.02em; }
        .category-banner h1 .accent { color: var(--green); }
        .category-banner p { font-size: 16px; line-height: 1.9; color: rgba(209, 213, 219, 0.9); max-width: 660px; }

        @media (max-width: 768px) {
            .category-banner { padding: 130px 0 60px; }
            .category-banner-content p { font-size: 15px; }
        }

        .section { padding: 70px 0; }
        .section-alt { background: rgba(255,255,255,0.015); border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); }
        .section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
        .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--green); text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500; margin-bottom: 8px; }
        .section-eyebrow i { font-size: 8px; color: var(--orange); }
        .section-title { color: var(--text-title); font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.3; letter-spacing: -0.01em; }
        .section-desc { color: var(--text-weak); max-width: 720px; margin-top: 12px; font-size: 15px; }

        .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
        .stat-card { background: var(--card-bg); border: 1px solid var(--border-white); border-radius: 20px; padding: 28px 24px; text-align: center; transition: all .3s ease; backdrop-filter: blur(6px); position: relative; overflow: hidden; }
        .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(195,245,60,0.5), transparent); opacity: 0; transition: opacity .3s; }
        .stat-card:hover { transform: translateY(-4px); border-color: rgba(195,245,60,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.25); background: rgba(255,255,255,0.06); }
        .stat-card:hover::before { opacity: 1; }
        .stat-icon { width: 52px; height: 52px; border-radius: 16px; background: rgba(195,245,60,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: var(--green); }
        .stat-number { font-size: 34px; font-weight: 800; color: var(--text-title); line-height: 1.2; margin-bottom: 4px; }
        .stat-label { font-size: 14px; color: var(--text-weak); }

        .content-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
        .tab-item { padding: 8px 20px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-white); color: var(--text-body); font-size: 14px; font-weight: 500; cursor: pointer; transition: all .25s ease; }
        .tab-item:hover { border-color: rgba(195,245,60,0.35); color: var(--text-title); }
        .tab-item.active { background: var(--green); color: #0A0F1C; border-color: var(--green); font-weight: 700; }

        .featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
        .featured-card-lg { grid-column: span 7; position: relative; border-radius: 20px; overflow: hidden; min-height: 440px; }
        .featured-card-lg .card-img { position: absolute; inset: 0; }
        .featured-card-lg .card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,15,28,0.85) 100%); }
        .featured-card-lg .card-img img { width: 100%; height: 100%; }
        .featured-card-lg .card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; }
        .featured-card-sm { grid-column: span 5; position: relative; border-radius: 20px; overflow: hidden; min-height: 440px; }
        .featured-card-sm .card-img { position: absolute; inset: 0; }
        .featured-card-sm .card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,15,28,0.88) 100%); }
        .featured-card-sm .card-img img { width: 100%; height: 100%; }
        .featured-card-sm .card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }

        .card-badge { display: inline-block; padding: 4px 14px; background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.45); color: #ffa07a; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 14px; }
        .card-badge.green { background: rgba(195,245,60,0.12); border-color: rgba(195,245,60,0.3); color: var(--green); }
        .featured-card-lg h3 { color: var(--text-title); font-size: 28px; font-weight: 800; line-height: 1.4; margin-bottom: 10px; }
        .featured-card-sm h3 { color: var(--text-title); font-size: 22px; font-weight: 800; line-height: 1.45; margin-bottom: 10px; }
        .featured-card p { color: rgba(209,213,219,0.8); font-size: 14px; max-height: 3.6em; overflow: hidden; margin-bottom: 14px; }
        .card-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: rgba(156,163,175,0.8); }
        .card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(156,163,175,0.6); }

        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
        .news-card { background: var(--card-bg); border: 1px solid var(--border-white); border-radius: 18px; overflow: hidden; transition: all .3s ease; }
        .news-card:hover { transform: translateY(-6px); border-color: rgba(195,245,60,0.25); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
        .news-card-img { position: relative; height: 164px; overflow: hidden; }
        .news-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,15,28,0.4) 100%); }
        .news-card-img img { width: 100%; height: 100%; transition: transform .6s ease; }
        .news-card:hover .news-card-img img { transform: scale(1.06); }
        .news-card-content { padding: 22px; }
        .news-tag { display: inline-block; background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.25); color: #ffa07a; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 999px; letter-spacing: 0.05em; }
        .news-tag.green { background: rgba(195,245,60,0.1); border-color: rgba(195,245,60,0.22); color: var(--green); }
        .news-card-content h3 { font-size: 17px; color: var(--text-title); font-weight: 700; line-height: 1.5; margin: 12px 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
        .news-card-content h3 a:hover { color: var(--green); }
        .news-card-content p { font-size: 13px; color: var(--text-weak); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-card-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 12px; color: var(--text-weak); }

        .list-panel { background: var(--card-bg); border: 1px solid var(--border-white); border-radius: 20px; overflow: hidden; margin-top: 50px; }
        .list-row { display: flex; align-items: center; padding: 18px 28px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: all .25s ease; gap: 20px; cursor: pointer; }
        .list-row:last-child { border-bottom: none; }
        .list-row:hover { background: rgba(195,245,60,0.04); padding-left: 34px; }
        .list-row-time { font-size: 13px; color: var(--text-weak); font-family: Arial; white-space: nowrap; }
        .list-row-tag { flex-shrink: 0; font-size: 13px; color: var(--orange); background: rgba(255,107,53,0.08); border: 1px solid rgba(255,107,53,0.15); padding: 2px 10px; border-radius: 999px; white-space: nowrap; }
        .list-row-title { flex: 1; color: var(--text-body); font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s; }
        .list-row:hover .list-row-title { color: var(--green); }
        .list-row-arrow { color: var(--silver); font-size: 14px; opacity: 0; transform: translateX(-8px); transition: all .25s ease; }
        .list-row:hover .list-row-arrow { opacity: 1; transform: translateX(0); color: var(--green); }

        @media (max-width: 992px) {
            .featured-card-lg, .featured-card-sm { grid-column: span 12; min-height: 350px; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .news-grid { grid-template-columns: 1fr; }
            .stat-grid { grid-template-columns: 1fr; gap: 12px; }
            .featured-card-lg .card-body { padding: 24px 20px; }
            .featured-card-sm .card-body { padding: 24px 20px; }
            .featured-card-lg h3 { font-size: 22px; }
            .featured-card-sm h3 { font-size: 18px; }
            .section { padding: 50px 0; }
            .list-row { padding: 14px 16px; gap: 12px; flex-wrap: wrap; }
            .list-row-time { font-size: 12px; }
            .list-row-title { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; width: 100%; order: 3; }
            .list-row-tag { order: 1; }
            .list-row-time { order: 2; }
            .list-row-arrow { display: none; }
        }

        .newsletter-section { background: var(--section-bg); border-radius: 20px; overflow: hidden; padding: 50px; margin-top: 70px; position: relative; border: 1px solid rgba(195,245,60,0.12); background: linear-gradient(120deg, rgba(195,245,60,0.04) 0%, rgba(255,107,53,0.03) 100%), var(--bg); }
        .newsletter-flex { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
        .newsletter-title { font-size: 24px; color: var(--text-title); font-weight: 800; line-height: 1.5; }
        .newsletter-desc { color: var(--text-weak); margin-top: 8px; font-size: 15px; }
        .email-form { display: flex; gap: 10px; flex-wrap: wrap; }
        .email-form input[type="email"] { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 12px 22px; color: var(--text-title); font-size: 15px; min-width: 260px; outline: none; transition: all .25s ease; }
        .email-form input[type="email"]:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(195,245,60,0.15); }
        .email-form button { background: var(--green); color: #0A0F1C; border: none; padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .25s ease; display: flex; align-items: center; gap: 8px; }
        .email-form button:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(195,245,60,0.2); }

        .timeline-mini { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; margin-top: 28px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.09); }
        .timeline-mark { font-size: 13px; color: var(--silver); }
        .timeline-mark strong { color: var(--text-title); font-weight: 700; }

        .faq-wrap { max-width: 820px; margin: 46px auto 0; }
        .faq-item { background: var(--card-bg); border: 1px solid var(--border-white); border-radius: 16px; margin-bottom: 12px; overflow: hidden; transition: border-color .3s; }
        .faq-item.active { border-color: rgba(195,245,60,0.35); }
        .faq-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; background: transparent; border: none; color: var(--text-title); font-size: 16px; font-weight: 600; padding: 21px 24px; cursor: pointer; transition: all .25s ease; text-align: left; gap: 16px; }
        .faq-btn:hover { color: var(--green); }
        .faq-item.active .faq-btn { color: var(--green); }
        .faq-icon { flex-shrink: 0; transition: transform .3s; font-size: 16px; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; color: var(--text-body); line-height: 1.85; transition: all .4s ease; }
        .faq-answer p { padding: 0 24px 22px; margin: 0; font-size: 14px; opacity: 0; transform: translateY(-6px); transition: all .35s ease; }
        .faq-item.active .faq-answer p { opacity: 1; transform: translateY(0); }
        .display-none { display: none; }

        .site-footer { background: #05070d; border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 0 0; margin-top: 70px; }
        .footer-grid { display: grid; grid-template-columns: 2.2fr 1.2fr 1.2fr 1.5fr; gap: 40px; padding-bottom: 44px; }
        .site-footer .brand-name { font-size: 18px; }
        .footer-brand p { font-size: 13px; line-height: 1.9; color: var(--text-weak); margin-top: 16px; max-width: 320px; }
        .footer-title { font-size: 15px; color: var(--text-title); font-weight: 700; margin-bottom: 18px; }
        .footer-links { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { font-size: 13px; color: var(--text-weak); transition: all .25s ease; }
        .footer-links a:hover { color: var(--green); padding-left: 4px; }
        .footer-contact { display: flex; flex-direction: column; gap: 12px; }
        .footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-weak); line-height: 1.7; }
        .footer-contact li span { color: var(--green); flex-shrink: 0; font-size: 10px; margin-top: 6px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; background: rgba(0,0,0,0.2); }
        .footer-bottom .copyright { font-size: 12px; color: rgba(156,163,175,0.7); }
        .footer-bottom .domain-note { font-size: 12px; color: rgba(156,163,175,0.5); font-family: Arial, sans-serif; }

        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; row-gap: 24px; }
        }
        @media (max-width: 640px) {
            .site-footer { padding-top: 40px; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { justify-content: center; text-align: center; }
        }
