/* roulang page: index */
:root {
            --bg-dark-1: #10171B;
            --bg-dark-2: #162127;
            --bg-dark-3: #1C282E;
            --bg-dark-4: #223138;
            --paper-1: #F5F1E8;
            --paper-2: #FFFDF8;
            --line-dark: rgba(255, 255, 255, 0.08);
            --line-paper: #E4DCCF;
            --accent: #F4A03C;
            --accent-deep: #C97B21;
            --accent-soft: rgba(244, 160, 60, 0.12);
            --teal-soft: #2FB2A5;
            --teal-soft-dim: rgba(47, 178, 165, 0.15);
            --text-on-dark: #F6F1E9;
            --text-dim-dark: #C1C7CA;
            --text-on-light: #1E2428;
            --text-dim-light: #5F666B;
            --link-underline: #D9822B;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow-card-dark: 0 12px 30px rgba(0, 0, 0, 0.35);
            --shadow-card-light: 0 8px 24px rgba(94, 74, 50, 0.08);
            --font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
            --section-space: 100px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family);
            background: var(--paper-1);
            color: var(--text-on-light);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease, opacity 0.2s ease;
        }

        a:hover {
            color: var(--accent-deep);
        }

        button {
            font-family: var(--font-family);
            border: none;
            background: none;
            cursor: pointer;
        }

        input,
        textarea,
        select {
            font-family: inherit;
        }

        ::selection {
            background: rgba(244, 160, 60, 0.3);
        }

        .container-custom {
            max-width: 1300px;
            padding-left: 24px;
            padding-right: 24px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        .section-padding {
            padding-top: var(--section-space);
            padding-bottom: var(--section-space);
        }

        .section-title-wrap {
            margin-bottom: 48px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .section-title-wrap .title-left {
            max-width: 640px;
        }

        .section-title-kicker {
            font-size: 13px;
            letter-spacing: 2.5px;
            font-weight: 600;
            color: var(--accent-deep);
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .site-section-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            color: var(--text-on-light);
            margin-bottom: 0;
        }

        .site-section-subtitle {
            font-size: 16px;
            color: var(--text-dim-light);
            line-height: 1.8;
            margin-top: 12px;
            max-width: 640px;
        }

        .dark-section {
            background-color: var(--bg-dark-1);
            color: var(--text-on-dark);
        }

        .dark-section .site-section-title {
            color: var(--text-on-dark);
        }

        .dark-section .site-section-subtitle {
            color: var(--text-dim-dark);
        }

        .btn-custom-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: var(--accent);
            color: #1E2428;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 30px;
            border-radius: var(--radius-sm);
            border: 2px solid var(--accent);
            transition: all 0.25s ease;
            line-height: 1.4;
            letter-spacing: 0.2px;
            box-shadow: 0 6px 20px rgba(244, 160, 60, 0.22);
        }

        .btn-custom-primary:hover {
            background-color: #FFB458;
            border-color: #FFB458;
            color: #161C20;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(244, 160, 60, 0.3);
        }

        .btn-custom-primary:active {
            background-color: var(--accent-deep);
            border-color: var(--accent-deep);
            color: #FFE8CC;
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(244, 160, 60, 0.2);
        }

        .btn-custom-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-on-dark);
            font-weight: 600;
            font-size: 15px;
            padding: 14px 30px;
            border-radius: var(--radius-sm);
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            transition: all 0.25s ease;
            line-height: 1.4;
        }

        .btn-custom-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.7);
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        .btn-custom-secondary:active {
            transform: scale(0.98);
        }

        .btn-custom-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: var(--accent);
            color: #1E2428;
            font-weight: 700;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            border: 2px solid var(--accent);
            transition: all 0.25s ease;
        }

        .btn-custom-light:hover {
            background: transparent;
            color: var(--accent);
            border-color: var(--accent);
        }

        .btn-custom-outline-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-on-light);
            font-weight: 600;
            font-size: 14px;
            padding: 11px 24px;
            border-radius: var(--radius-sm);
            border: 1.5px solid #C8BFAF;
            transition: all 0.25s ease;
        }

        .btn-custom-outline-dark:hover {
            border-color: var(--text-on-light);
            background: rgba(0, 0, 0, 0.03);
            color: var(--text-on-light);
        }

        .blog-badge {
            display: inline-flex;
            align-items: center;
            background: var(--teal-soft);
            color: #FFF;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.04em;
        }

        .blog-badge-accent {
            background: var(--accent);
            color: #201A12;
        }

        .video-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 400;
            color: var(--text-dim-dark);
            background: rgba(255, 255, 255, 0.08);
            padding: 4px 10px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-tag i {
            color: var(--accent);
        }

        /* ===== Top InfoBar ===== */
        .top-info-bar {
            background-color: #0B1114;
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .top-info-bar .container-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .top-info-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-info-left i {
            color: var(--accent);
        }

        .top-info-right {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .top-info-right a {
            color: rgba(255, 255, 255, 0.75);
            transition: color 0.2s;
        }

        .top-info-right a:hover {
            color: var(--accent);
        }

        /* ===== Header Nav ===== */
        .main-header {
            background-color: var(--bg-dark-1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            position: relative;
            z-index: 1000;
            transition: box-shadow 0.3s ease, background-color 0.3s ease;
        }

        .main-header.is-scrolled {
            background-color: rgba(16, 23, 27, 0.95);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }

        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .site-logo-mark {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #F4A03C, #D47E1B);
            border-radius: 10px;
            color: #1E2428;
            font-size: 18px;
            flex-shrink: 0;
        }

        .site-logo-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .site-logo-name span {
            color: var(--accent);
        }

        .main-nav-list {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .main-nav-list li a {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            color: var(--text-dim-dark);
            font-size: 15px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.22s ease;
            position: relative;
        }

        .main-nav-list li a i {
            font-size: 13px;
            margin-right: 8px;
            color: rgba(255, 255, 255, 0.35);
            transition: color 0.2s;
        }

        .main-nav-list li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.04);
        }

        .main-nav-list li a:hover i {
            color: var(--accent);
        }

        .main-nav-list li a.active {
            color: var(--text-on-dark);
            font-weight: 700;
        }

        .main-nav-list li a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 3px;
            background: var(--accent);
        }

        .main-nav-list li a.active i {
            color: var(--accent);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-nav-cta {
            background-color: transparent;
            border: 1.5px solid var(--accent);
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            padding: 9px 22px;
            border-radius: 8px;
            transition: all 0.25s ease;
        }

        .btn-nav-cta:hover {
            background-color: var(--accent);
            color: #1E2428;
            box-shadow: 0 6px 20px rgba(244, 160, 60, 0.25);
        }

        .mobile-nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--text-on-dark);
            font-size: 20px;
        }

        .mobile-nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .mobile-menu {
            display: none;
            background: var(--bg-dark-2);
            border-top: 1px solid var(--line-dark);
            padding: 16px 0;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-menu-list li a {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-dim-dark);
            padding: 14px 20px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .mobile-menu-list li a i {
            color: var(--accent);
            width: 18px;
        }

        .mobile-menu-list li a:hover,
        .mobile-menu-list li a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        /* ===== Hero Section ===== */
        .home-hero {
            background: linear-gradient(105deg, rgba(10, 14, 18, 0.92) 20%, rgba(14, 22, 27, 0.6) 58%, rgba(10, 15, 19, 0.45) 100%), url('/assets/images/backpic/back-1.webp') no-repeat center center/cover;
            min-height: 92vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 80px 0 100px;
        }

        .hero-content {
            max-width: 780px;
            position: relative;
            z-index: 2;
        }

        .hero-badge-line {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .hero-badge-line .video-tag {
            background: rgba(16, 23, 27, 0.55);
            border-color: rgba(244, 160, 60, 0.5);
            backdrop-filter: blur(4px);
            color: #EAE6DF;
        }

        .hero-badge-line .video-tag i {
            color: var(--accent);
        }

        .hero-title {
            font-size: clamp(38px, 5.2vw, 62px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            color: #FFFFFF;
            margin-bottom: 24px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
        }

        .hero-title .text-accent-glow {
            color: var(--accent);
            position: relative;
        }

        .hero-subtitle {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.76);
            max-width: 620px;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero-tags-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-tags-row .meta-capsule {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
        }

        .hero-tags-row .meta-capsule i {
            color: var(--teal-soft);
        }

        /* ===== Section Base ===== */
        .dark-section {
            background-color: var(--bg-dark-1);
        }

        .dark-section-secondary {
            background-color: var(--bg-dark-2);
        }

        .paper-section {
            background-color: var(--paper-1);
        }

        .paper-section-light {
            background-color: var(--paper-2);
        }

        .section-header-simple {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 50px;
        }

        /* ===== Horizontal Scroll Cards ===== */
        .content-hs-section {
            overflow: hidden;
            position: relative;
        }

        .hs-scroll-row {
            display: flex;
            gap: 22px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 8px 4px 28px;
            scrollbar-width: none;
            margin-left: -24px;
            margin-right: -24px;
            padding-left: 24px;
            padding-right: 24px;
        }

        .hs-scroll-row::-webkit-scrollbar {
            display: none;
        }

        .hs-card {
            flex: 0 0 240px;
            scroll-snap-align: start;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            background: var(--bg-dark-3);
            border: 1px solid rgba(255, 255, 255, 0.07);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .hs-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
            border-color: rgba(244, 160, 60, 0.55);
        }

        .hs-card-media {
            aspect-ratio: 2 / 3;
            width: 100%;
            object-fit: cover;
            position: relative;
            background: linear-gradient(150deg, #243238, #10171B);
        }

        .hs-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hs-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
        }

        .hs-card-body {
            padding: 18px 16px;
            background: var(--bg-dark-3);
            position: relative;
            z-index: 2;
            margin-top: -24px;
        }

        .hs-card-title {
            color: var(--text-on-dark);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hs-card-desc {
            color: var(--text-dim-dark);
            font-size: 13px;
            line-height: 1.6;
            opacity: 0.85;
        }

        .hs-card-link {
            display: inline-block;
            margin-top: 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
        }

        /* ===== Hot Recommendation 热播推荐 ===== */
        .hot-zone {
            padding: 80px 0;
        }

        .hot-grid {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 40px;
            align-items: stretch;
        }

        .hot-focus-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-dark-3);
            border: 1px solid rgba(255, 255, 255, 0.07);
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
        }

        .hot-focus-media {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }

        .hot-focus-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hot-focus-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bg-dark-3) 0%, transparent 60%);
        }

        .hot-focus-label {
            position: absolute;
            left: 24px;
            bottom: -1px;
            z-index: 2;
            background: var(--accent);
            color: #201A12;
            padding: 7px 16px;
            border-radius: 8px 8px 0 0;
            font-size: 13px;
            font-weight: 700;
        }

        .hot-focus-body {
            padding: 32px 28px 28px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .hot-focus-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 12px;
        }

        .hot-focus-text {
            color: var(--text-dim-dark);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .hot-list-wrap {
            background: var(--bg-dark-2);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
        }

        .hot-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 22px;
        }

        .hot-list-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            color: var(--text-on-dark);
        }

        .hot-list-header a {
            font-size: 14px;
            color: var(--teal-soft);
        }

        .hot-list-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.2s;
            border-radius: 8px;
        }

        .hot-list-item:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .hot-list-item:last-child {
            border-bottom: 0;
        }

        .hot-num {
            font-size: 15px;
            font-weight: 700;
            color: var(--accent);
            min-width: 30px;
            font-family: 'Georgia', serif;
        }

        .hot-item-thumb {
            width: 48px;
            height: 68px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-dark-4);
        }

        .hot-item-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hot-item-info {
            flex-grow: 1;
            min-width: 0;
        }

        .hot-item-title {
            color: var(--text-on-dark);
            font-size: 15px;
            font-weight: 600;
            padding: 0;
            margin: 0 0 4px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hot-item-meta {
            font-size: 12px;
            color: var(--text-dim-dark);
            opacity: 0.6;
            display: flex;
            gap: 10px;
        }

        .hot-item-arrow {
            color: var(--text-dim-dark);
            opacity: 0.5;
            transition: all 0.2s;
        }

        .hot-list-item:hover .hot-item-arrow {
            color: var(--accent);
            opacity: 1;
            transform: translateX(3px);
        }

        /* ===== Curated Mix Section 片单分区 ===== */
        .curated-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.9fr 0.7fr;
            grid-template-rows: auto auto;
            gap: 26px;
            align-items: stretch;
        }

        .curated-card {
            border-radius: var(--radius-lg);
            position: relative;
            overflow: hidden;
            min-height: 380px;
            background: var(--bg-dark-3);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .curated-card-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .curated-card-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .curated-card:hover .curated-card-bg img {
            transform: scale(1.04);
        }

        .curated-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(8, 12, 15, 0.95) 15%, rgba(8, 12, 15, 0.4) 50%, rgba(8, 12, 15, 0.15) 100%);
            z-index: 1;
        }

        .curated-card-content {
            position: relative;
            z-index: 2;
            padding: 30px;
        }

        .curated-badge {
            font-size: 12px;
            display: inline-block;
            background: var(--teal-soft);
            color: #FFF;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 30px;
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }

        .curated-badge-amber {
            background: var(--accent);
            color: #241708;
        }

        .curated-title {
            color: #FFFFFF;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .curated-desc {
            color: rgba(255, 255, 255, 0.72);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .curated-meta {
            display: flex;
            gap: 20px;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 18px;
        }

        .curated-link {
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .curated-link:hover {
            gap: 10px;
        }

        .curated-card-main {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
            min-height: 520px;
        }

        .curated-card-side {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
        }

        .curated-card-side-second {
            grid-column: 3 / 4;
            grid-row: 1 / 3;
            min-height: 400px;
        }

        .curated-card-tall {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
        }

        /* ===== CTA Showcase ===== */
        .cta-showcase {
            background: linear-gradient(120deg, rgba(10, 15, 18, 0.88), rgba(16, 23, 27, 0.78)), url('/assets/images/backpic/back-2.webp') no-repeat center center/cover;
            padding: 100px 0;
            position: relative;
        }

        .cta-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .cta-content {
            max-width: 560px;
        }

        .cta-label {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--accent);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .cta-title {
            color: #FFFFFF;
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .cta-desc {
            color: rgba(255, 255, 255, 0.72);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .cta-actions {
            max-width: 320px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            backdrop-filter: blur(8px);
        }

        .cta-actions .action-note {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.62);
            line-height: 1.6;
            margin-bottom: 4px;
        }

        .cta-actions .btn-custom-primary {
            width: 100%;
        }

        .cta-actions .care-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            width: 100%;
        }

        /* ===== Billboard Cards ===== */
        .billboard-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--line-paper);
            background: var(--paper-2);
            box-shadow: var(--shadow-card-light);
        }

        .billboard-card {
            padding: 50px 36px;
            transition: background 0.2s;
        }

        .billboard-card:hover {
            background: #FFF8F0;
        }

        .billboard-card+.billboard-card {
            border-left: 1px solid var(--line-paper);
        }

        .billboard-icon i {
            color: var(--accent);
            margin-bottom: 10px;
        }

        .billboard-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin: 20px 0 14px;
            color: var(--text-on-light);
        }

        .billboard-card .billboard-desc {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-dim-light);
        }

        .billboard-link {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-deep);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-color: rgba(217, 130, 43, 0.4);
        }

        .billboard-link:hover {
            gap: 12px;
        }

        /* ===== Info Cards (最新信息) ===== */
        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 26px;
        }

        .info-card-item {
            background: var(--paper-2);
            border: 1px solid var(--line-paper);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: box-shadow 0.25s, transform 0.25s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .info-card-item:hover {
            box-shadow: var(--shadow-card-light);
            transform: translateY(-3px);
        }

        .info-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .info-cat-badge {
            font-size: 12px;
            padding: 5px 14px;
            border-radius: 30px;
            background: var(--teal-soft-dim);
            color: #21776E;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .info-date {
            font-size: 14px;
            color: var(--text-dim-light);
            font-weight: 400;
        }

        .info-card-item h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-on-light);
        }

        .info-card-item h3 a {
            transition: color 0.2s;
        }

        .info-card-item h3 a:hover {
            color: var(--accent-deep);
        }

        .info-card-summary {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-dim-light);
            flex-grow: 1;
        }

        .info-card-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
        }

        .info-card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-deep);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .info-card-link:hover {
            gap: 10px;
        }

        .info-list-view-all {
            text-align: center;
            margin-top: 40px;
        }

        /* Empty state */

        /* ===== Modern Showcase / Features ===== */
        .showcase-row {
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .showcase-media {
            flex: 1;
            position: relative;
        }

        .showcase-media img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card-light);
            border: 1px solid var(--line-paper);
        }

        .showcase-content {
            flex: 1;
        }

        .showcase-content h2 {
            font-size: 34px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 18px;
            letter-spacing: -0.4px;
            color: var(--text-on-light);
        }

        .showcase-content p {
            font-size: 17px;
            line-height: 2;
            color: var(--text-dim-light);
            margin-bottom: 24px;
        }

        .showcase-list {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
        }

        .showcase-list li {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 8px 0;
            font-size: 16px;
            color: var(--text-on-light);
        }

        .showcase-list li i {
            color: var(--teal-soft);
            margin-top: 6px;
            font-size: 15px;
        }

        .showcase-media-floating {
            position: absolute;
            bottom: -24px;
            right: -20px;
            width: 200px;
            border-radius: 16px;
            border: 4px solid var(--paper-2);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
        }

        /* ===== FAQ Section ===== */
        .faq-grid {
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 60px;
            align-items: flex-start;
        }

        .faq-category-list {
            position: sticky;
            top: 100px;
        }

        .faq-category-list h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-on-light);
        }

        .faq-cat-link {
            display: block;
            padding: 10px 16px;
            border-radius: 8px;
            color: var(--text-dim-light);
            border-left: 3px solid transparent;
            font-size: 15px;
            transition: all 0.2s;
        }

        .faq-cat-link.active {
            background: var(--accent-soft);
            color: var(--accent-deep);
            font-weight: 600;
            border-left-color: var(--accent);
        }

        .faq-cat-link:hover {
            background: var(--accent-soft);
            color: var(--accent-deep);
        }

        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .faq-item {
            background: var(--paper-2);
            border: 1px solid var(--line-paper);
            border-radius: var(--radius-md);
            overflow: hidden;
            padding: 0;
            transition: box-shadow 0.2s;
        }

        .faq-item.expanded {
            box-shadow: var(--shadow-card-light);
            border-color: #d8c5a8;
        }

        .faq-button {
            width: 100%;
            padding: 22px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            text-align: left;
            background: transparent;
            font-size: 17px;
            font-weight: 600;
            color: var(--text-on-light);
            cursor: pointer;
        }

        .faq-button:hover {
            color: var(--accent-deep);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--accent-soft);
            color: var(--accent-deep);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .faq-item.expanded .faq-icon {
            background: var(--accent);
            color: #1E2428;
        }

        .faq-answer {
            padding: 0 28px 24px;
            font-size: 15px;
            line-height: 1.9;
            color: var(--text-dim-light);
            display: none;
        }

        .faq-item.expanded .faq-answer span {
            display: block;
            border-top: 1px solid var(--line-paper);
            padding-top: 18px;
            margin-top: 0;
        }

        /* ===== Bottom CTA ===== */
        .bottom-cta-section {
            background: var(--bg-dark-2);
            padding: 90px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .bottom-cta-inner {
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .bottom-cta-inner h2 {
            color: #FFFFFF;
            font-size: 40px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .bottom-cta-inner p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .bottom-cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== Footer ===== */
        .site-footer {
            background-color: #0B1114;
            color: rgba(255, 255, 255, 0.75);
            padding: 80px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 56px;
            padding-bottom: 60px;
        }

        .footer-brand-text {
            font-size: 22px;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .footer-brand-text span {
            color: var(--accent);
        }

        .footer-desc {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.55);
            max-width: 300px;
        }

        .footer-link-title {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links li a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
            transition: all 0.2s;
        }

        .footer-links li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-contact-info {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-contact-info i {
            color: var(--accent);
            margin-right: 8px;
            width: 16px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 24px 0;
        }

        .footer-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .footer-copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-meta-links {
            display: flex;
            gap: 20px;
        }

        .footer-meta-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-meta-links a:hover {
            color: var(--accent);
        }

        /* ===== Empty State 空状态 ===== */
        /* ===== Feature chips  ===== */

        /* === RESPONSIVE === */
        @media (max-width: 1199.98px) {
            :root {
                --section-space: 85px;
            }

            .curated-grid {
                grid-template-columns: 1.1fr 0.9fr;
            }

            .curated-card-main {
                grid-column: 1 / 2;
                grid-row: 1 / 3;
            }

            .curated-card-side {
                grid-column: 2 / 3;
                grid-row: 1 / 2;
            }

            .curated-card-tall {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
            }

            .curated-card-side-second {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1.2fr 1fr;
                gap: 36px;
            }
        }

        @media (max-width: 991.98px) {
            .main-nav-list {
                display: none;
            }

            .mobile-nav-toggle {
                display: flex;
            }

            .btn-nav-cta {
                display: none;
            }

            .nav-actions {
                gap: 8px;
            }

            .mobile-menu {
                display: none;
            }

            .mobile-menu.open {
                display: block;
            }

            .hot-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .showcase-row {
                flex-direction: column;
                gap: 40px;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .faq-category-list {
                position: static;
            }

            .cta-title {
                font-size: 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767.98px) {
            :root {
                --section-space: 62px;
            }

            .top-info-bar {
                display: none;
            }

            .nav-wrapper {
                height: 64px;
            }

            .site-logo-name {
                font-size: 18px;
            }

            .site-logo-mark {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .home-hero {
                min-height: 90vh;
                padding: 48px 0 80px;
                background-size: cover;
            }

            .hero-title {
                font-size: 38px;
            }

            .cta-inner {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-actions {
                max-width: 100%;
            }

            .billboard-cards {
                grid-template-columns: 1fr;
                row-gap: 0;
            }

            .billboard-card+.billboard-card {
                border-left: none;
                border-top: 1px solid var(--line-paper);
            }

            .info-cards-grid {
                grid-template-columns: 1fr;
            }

            .curated-grid {
                grid-template-columns: 1fr;
            }

            .curated-card-main {
                grid-column: 1;
                grid-row: auto;
            }

            .curated-card-side,
            .curated-card-tall {
                grid-column: 1;
                grid-row: auto;
            }

            .curated-card-main {
                min-height: auto;
            }

            .curated-card {
                min-height: 340px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom-inner {
                flex-direction: column;
                text-align: center;
            }

            .footer-meta-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .section-title-wrap {
                margin-bottom: 36px;
            }

            .site-section-title {
                font-size: 28px;
            }

            .section-title-kicker {
                letter-spacing: 1.5px;
                font-size: 12px;
            }
        }

        @media (max-width: 575.98px) {
            .container-custom {
                padding-left: 18px;
                padding-right: 18px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn-custom-primary,
            .hero-actions .btn-custom-secondary {
                width: 100%;
            }

            .btn-custom-secondary {
                padding: 13px 24px;
            }

            .faq-item .faq-button {
                padding: 18px 20px;
            }

            .faq-item .faq-answer {
                padding: 6px 20px 20px;
            }

            .hot-list-wrap {
                padding: 18px;
            }

            .hs-scroll-row {
                gap: 14px;
            }
        }

/* roulang page: article */
:root {
            --bg-dark-1: #10171b;
            --bg-dark-2: #172127;
            --bg-dark-3: #202c32;
            --paper-1: #f3efe5;
            --paper-2: #fffdf8;
            --paper-soft: #e9e2d3;
            --line-dark: rgba(255, 255, 255, 0.09);
            --line-paper: #ddd4c4;
            --accent: #f4a03c;
            --accent-deep: #c9771f;
            --teal-soft: #2eb3a2;
            --text-on-dark: #f6f0e7;
            --text-dim-dark: #bcc3c5;
            --text-on-light: #1e2428;
            --text-dim-light: #5c6368;
            --heading-dark: #0e1316;
            --shadow-deep: 0 22px 48px rgba(10, 15, 18, 0.22);
            --shadow-soft: 0 18px 50px rgba(83, 65, 38, 0.10);
            --radius-large: 24px;
            --radius-card: 16px;
            --radius-btn: 8px;
            --container: 1320px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--paper-1);
            color: var(--text-on-light);
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--accent-deep);
            text-decoration: none;
            transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
        }

        a:hover {
            color: var(--accent-deep);
            text-decoration: none;
        }

        p {
            margin-top: 0;
        }

        .container-custom {
            width: 100%;
            max-width: var(--container);
            margin-left: auto;
            margin-right: auto;
            padding-left: 28px;
            padding-right: 28px;
        }

        .topbar {
            background: #070a0c;
            color: rgba(255, 255, 255, 0.58);
            font-size: 13px;
            letter-spacing: .02em;
            min-height: 36px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .topbar .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .topbar-left,
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 22px;
            min-width: 0;
        }

        .topbar a {
            color: rgba(255, 255, 255, 0.68);
        }

        .topbar a:hover {
            color: var(--accent);
        }

        .topbar-divider {
            width: 1px;
            height: 14px;
            background: rgba(255, 255, 255, 0.18);
        }

        .topbar-icon {
            color: var(--accent);
            margin-right: 6px;
        }

        .site-navbar {
            position: sticky;
            top: 0;
            z-index: 1080;
            background: rgba(14, 20, 24, 0.96);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line-dark);
            box-shadow: 0 8px 28px rgba(8, 12, 14, 0.16);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            min-height: 84px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: linear-gradient(145deg, #f6a841, #d67e1b);
            color: #10171b;
            font-size: 20px;
            box-shadow: 0 6px 18px rgba(244, 160, 60, 0.24);
        }

        .brand-name {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .brand-name em {
            font-style: normal;
            color: var(--accent);
            display: block;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: .16em;
            margin-top: 1px;
        }

        .main-nav-menu {
            display: flex;
            align-items: center;
            margin-left: auto;
        }

        .main-nav-list {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.66);
            font-size: 15px;
            font-weight: 500;
            border-radius: 999px;
            padding: 10px 16px;
            border: 1px solid transparent;
            line-height: 1.4;
        }

        .main-nav-list a i {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.42);
            transition: color .22s ease;
        }

        .main-nav-list a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.07);
        }

        .main-nav-list a:hover i {
            color: var(--accent);
        }

        .main-nav-list a.active {
            color: var(--accent);
            background: rgba(244, 160, 60, 0.10);
            border-color: rgba(244, 160, 60, 0.28);
        }

        .main-nav-list a.active i {
            color: var(--accent);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 22px;
        }

        .nav-toggle-btn {
            display: none;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-btn);
            padding: 9px 13px;
            font-size: 14px;
            cursor: pointer;
        }

        .nav-toggle-btn:hover {
            background: rgba(255, 255, 255, 0.13);
        }

        .btn-jc {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 0;
            font-weight: 700;
            border-radius: var(--radius-btn);
            white-space: nowrap;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
        }

        .btn-jc i {
            font-size: 14px;
        }

        .btn-jc-accent {
            background: var(--accent);
            color: #1b1207;
            padding: 11px 22px;
            font-size: 15px;
            box-shadow: 0 6px 20px rgba(244, 160, 60, 0.20);
        }

        .btn-jc-accent:hover {
            background: #ffb04f;
            color: #16100a;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(244, 160, 60, 0.28);
        }

        .btn-jc-accent:active {
            transform: translateY(0);
            background: var(--accent-deep);
            box-shadow: 0 4px 12px rgba(244, 160, 60, 0.24);
        }

        .btn-jc-ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: rgba(255, 255, 255, 0.85);
            padding: 11px 22px;
            font-size: 15px;
        }

        .btn-jc-ghost:hover {
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.55);
            transform: translateY(-2px);
        }

        .btn-jc-ghost:hover i {
            transform: translateX(3px);
        }

        .btn-jc-ghost i {
            transition: transform .22s ease;
        }

        .btn-jc-ghost-light {
            border-color: #b5a177;
            color: var(--accent-deep);
        }

        .btn-jc-ghost-light:hover {
            background: rgba(201, 119, 31, 0.08);
            border-color: var(--accent-deep);
        }

        .btn-jc-plain {
            background: rgba(18, 25, 29, 0.04);
            color: var(--text-on-light);
            padding: 12px 22px;
        }

        .btn-jc-plain:hover {
            background: rgba(18, 25, 29, 0.08);
            transform: translateY(-1px);
        }

        .btn-jc-sm {
            padding: 9px 17px;
            font-size: 14px;
        }

        .btn-jc-lg {
            padding: 14px 28px;
            font-size: 16px;
            border-radius: 10px;
        }

        /* Article page top */
        .article-top {
            position: relative;
            background:
                linear-gradient(92deg, rgba(10, 14, 17, 0.88), rgba(13, 19, 22, 0.55)),
                url('/assets/images/backpic/back-2.webp') center / cover;
            background-color: #0e1418;
            color: #fff;
            padding: 112px 0 170px;
        }

        .article-top::after {
            content: "";
            pointer-events: none;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 140px;
            background: linear-gradient(to bottom, transparent, rgba(243, 239, 229, 1));
        }

        .article-top-content {
            position: relative;
            z-index: 2;
            max-width: 980px;
        }

        .article-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.64);
            margin-bottom: 24px;
        }

        .article-breadcrumb a {
            color: rgba(255, 255, 255, 0.78);
            border-bottom: 1px solid rgba(255, 255, 255, 0.26);
            padding-bottom: 2px;
        }

        .article-breadcrumb a:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        .article-breadcrumb i {
            color: var(--accent);
            font-size: 11px;
        }

        .article-category-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(244, 160, 60, 0.14);
            border: 1px solid rgba(244, 160, 60, 0.34);
            color: #ffc276;
            border-radius: 999px;
            padding: 5px 13px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .02em;
            margin-bottom: 18px;
        }

        .article-category-chip i {
            font-size: 12px;
        }

        .article-top h1 {
            font-size: clamp(30px, 5vw, 50px);
            font-weight: 800;
            line-height: 1.22;
            letter-spacing: -0.02em;
            margin: 0 0 20px;
            color: #fff;
            max-width: 18em;
            text-wrap: balance;
        }

        .article-top-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 24px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 14px;
        }

        .article-top-meta .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .article-top-meta i {
            color: var(--accent);
        }

        /* Paper content sheet */
        .article-body-area {
            background: var(--paper-1);
            padding: 0 0 90px;
        }

        .article-sheet {
            position: relative;
            z-index: 5;
            max-width: 900px;
            margin: -78px auto 0;
            background: var(--paper-2);
            border-radius: var(--radius-large);
            border: 1px solid rgba(220, 210, 191, 0.8);
            box-shadow: var(--shadow-soft);
            padding: clamp(28px, 5vw, 68px);
        }

        .article-sheet-inner {
            max-width: 780px;
            margin: 0 auto;
        }

        .article-content {
            color: #262a2d;
            font-size: 17px;
            line-height: 1.9;
            letter-spacing: 0.005em;
        }

        .article-content p {
            margin: 0 0 1.3em;
        }

        .article-content h3 {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.4;
            margin: 2em 0 0.8em;
            color: #181f23;
            padding-left: 13px;
            border-left: 4px solid var(--accent);
        }

        .article-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 1.7em 0 0.7em;
            color: #1e2428;
        }

        .article-content ul,
        .article-content ol {
            margin: 0 0 1.4em;
            padding-left: 1.6em;
        }

        .article-content li {
            margin-bottom: 0.5em;
        }

        .article-content a {
            color: var(--accent-deep);
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: rgba(201, 119, 31, 0.24);
        }

        .article-content a:hover {
            color: var(--accent-deep);
            text-decoration-color: var(--accent-deep);
        }

        .article-content img {
            border-radius: var(--radius-card);
            margin: 2em 0;
            border: 1px solid var(--line-paper);
        }

        .article-content blockquote {
            background: var(--paper-1);
            border-left: 4px solid var(--accent);
            border-radius: 0 16px 16px 0;
            padding: 22px 26px;
            margin: 2em 0;
            color: #41484c;
        }

        .article-content blockquote p {
            margin: 0;
        }

        .article-toolbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            border-top: 1px solid var(--line-paper);
            margin-top: 48px;
            padding-top: 26px;
        }

        .toolbar-tip {
            color: var(--text-dim-light);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .toolbar-tip i {
            color: var(--teal-soft);
        }

        .toolbar-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .toolbar-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--text-dim-light);
            border: 1px solid var(--line-paper);
            background: rgba(0, 0, 0, 0.02);
            padding: 7px 12px;
            border-radius: 999px;
            font-size: 13px;
        }

        .toolbar-link:hover {
            color: var(--accent-deep);
            border-color: var(--accent-deep);
            background: rgba(244, 160, 60, 0.05);
        }

        .article-empty {
            padding: 28px 0 12px;
        }

        .empty-inner {
            text-align: center;
            padding: 48px 24px;
            background: var(--paper-1);
            border: 1px dashed #cdbfa9;
            border-radius: var(--radius-large);
        }

        .empty-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: rgba(244, 160, 60, 0.1);
            color: var(--accent-deep);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 18px;
        }

        .empty-inner h3 {
            font-size: 22px;
            margin: 0 0 10px;
            color: var(--heading-dark);
        }

        .empty-inner p {
            font-size: 16px;
            color: var(--text-dim-light);
            max-width: 480px;
            margin: 0 auto 24px;
        }

        /* Continue cards */
        .article-continue {
            background: var(--paper-1);
            padding: 0 0 96px;
        }

        .continue-header {
            display: flex;
            flex-wrap: wrap;
            align-items: end;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 30px;
        }

        .continue-header h2 {
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 800;
            margin: 0;
            color: #171d21;
            letter-spacing: -0.01em;
        }

        .continue-header h2 span {
            color: var(--accent-deep);
        }

        .continue-sub {
            color: var(--text-dim-light);
            font-size: 15px;
            max-width: 480px;
        }

        .continue-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .continue-card {
            position: relative;
            border-radius: var(--radius-large);
            padding: 34px 30px;
            border: 1px solid var(--line-paper);
            background: var(--paper-2);
            box-shadow: 0 8px 30px rgba(89, 75, 50, 0.07);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
            overflow: hidden;
        }

        .continue-card::before {
            content: "";
            position: absolute;
            right: -30px;
            top: -30px;
            width: 120px;
            height: 120px;
            background: rgba(244, 160, 60, 0.08);
            border-radius: 50%;
        }

        .continue-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 52px rgba(75, 58, 31, 0.13);
            border-color: rgba(201, 119, 31, 0.28);
        }

        .continue-icon {
            display: inline-flex;
            width: 48px;
            height: 48px;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            font-size: 20px;
            color: #fff;
            background: linear-gradient(145deg, var(--accent), var(--accent-deep));
            box-shadow: 0 10px 22px rgba(244, 160, 60, 0.18);
            margin-bottom: 20px;
        }

        .continue-icon.alt {
            background: linear-gradient(145deg, var(--teal-soft), #279782);
            box-shadow: 0 10px 22px rgba(46, 179, 162, 0.18);
        }

        .continue-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: #181e22;
            margin: 0 0 10px;
        }

        .continue-card p {
            color: var(--text-dim-light);
            font-size: 15px;
            line-height: 1.75;
            margin: 0 0 22px;
            max-width: 42ch;
        }

        .continue-card .btn-jc {
            font-size: 14px;
            padding: 10px 19px;
        }

        /* Bottom CTA */
        .article-bottom-cta {
            background:
                linear-gradient(90deg, rgba(11, 15, 18, 0.92), rgba(18, 24, 28, 0.72)),
                url('/assets/images/backpic/back-1.webp') center / cover;
            background-color: #10171b;
            padding: 96px 0;
            color: #fff;
        }

        .bottom-cta-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 38px;
            max-width: 1100px;
            margin: 0 auto;
            text-align: left;
        }

        .bottom-cta-copy {
            flex: 1 1 420px;
        }

        .bottom-cta-copy h2 {
            font-size: clamp(24px, 3vw, 36px);
            line-height: 1.28;
            font-weight: 800;
            margin: 0 0 14px;
            color: #fff;
        }

        .bottom-cta-copy h2 em {
            color: var(--accent);
            font-style: normal;
        }

        .bottom-cta-copy p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.64);
            max-width: 560px;
            margin: 0;
        }

        .bottom-cta-btns {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* Footer */
        .site-footer {
            background: #0b1014;
            color: rgba(255, 255, 255, 0.52);
            padding-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2.2fr 1.2fr 1.2fr 1.4fr;
            gap: 44px;
            padding-bottom: 54px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .footer-brand-text {
            color: #fff;
            font-size: 23px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .footer-brand-text span {
            color: var(--accent);
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.55);
            font-size: 15px;
            line-height: 1.8;
            max-width: 30em;
            margin: 0;
        }

        .footer-link-title {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .04em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(244, 160, 60, 0.28);
            display: inline-block;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.58);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a i {
            font-size: 11px;
            color: var(--accent);
            opacity: 0;
            transform: translateX(-4px);
            transition: opacity .22s ease, transform .22s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(2px);
        }

        .footer-links a:hover i {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links li span {
            font-size: 14px;
        }

        .footer-contact-info {
            display: grid;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.42);
        }

        .footer-bottom-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0 32px;
            gap: 12px;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-meta-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-meta-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            border-bottom: 1px solid transparent;
        }

        .footer-meta-links a:hover {
            color: var(--accent);
            border-color: rgba(244, 160, 60, 0.35);
        }

        /* Custom anchor focus */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(244, 160, 60, 0.65);
            outline-offset: 3px;
            border-radius: 4px;
        }

        section {
            scroll-margin-top: 90px;
        }

        @media (max-width: 1199.98px) {
            .header-inner {
                gap: 22px;
            }

            .main-nav-list a {
                padding: 10px 12px;
            }

            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr 1fr;
                gap: 34px;
            }
        }

        @media (max-width: 991.98px) {
            .container-custom {
                padding-left: 20px;
                padding-right: 20px;
            }

            .topbar-right span:not(.topbar-divider) {
                display: none;
            }

            .header-inner {
                min-height: 74px;
            }

            .nav-toggle-btn {
                display: inline-flex;
                margin-left: auto;
            }

            .main-nav-menu {
                position: fixed;
                top: 74px;
                left: 0;
                right: 0;
                max-height: calc(100vh - 74px);
                overflow-y: auto;
                background: #0d1317;
                border-bottom: 1px solid var(--line-dark);
                box-shadow: var(--shadow-deep);
                padding: 18px 20px 28px;
                flex-direction: column;
                align-items: flex-start;
                transform: translateY(-16px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: transform .26s ease, opacity .26s ease, visibility .26s ease;
            }

            .main-nav-menu.is-open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .main-nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                width: 100%;
            }

            .main-nav-list a {
                width: 100%;
                justify-content: flex-start;
                padding: 13px 15px;
                border-radius: 12px;
                font-size: 16px;
            }

            .header-actions {
                margin-left: 0;
                display: none;
            }

            .header-actions .header-cta-mobile {
                display: none;
            }

            .article-bottom-cta {
                padding: 70px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }

            .footer-desc {
                max-width: 36em;
            }
        }

        @media (max-width: 767.98px) {
            body {
                font-size: 15px;
            }

            .topbar-left span.topbar-domain-note {
                display: none;
            }

            .topbar .container-custom {
                justify-content: center;
            }

            .brand-name {
                font-size: 19px;
            }

            .brand-name em {
                font-size: 12px;
            }

            .article-top {
                padding: 78px 0 150px;
            }

            .article-sheet {
                margin-top: -54px;
                border-radius: 18px;
                padding: 28px 22px 38px;
            }

            .article-content {
                font-size: 16px;
                line-height: 1.84;
            }

            .article-toolbar {
                align-items: flex-start;
            }

            .continue-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .continue-card {
                padding: 28px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                padding-bottom: 38px;
            }

            .footer-bottom-inner {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .bottom-cta-inner {
                text-align: center;
                justify-content: center;
            }

            .bottom-cta-btns {
                justify-content: center;
                width: 100%;
            }

            .bottom-cta-btns .btn-jc {
                flex: 1 1 200px;
            }
        }

        @media (max-width: 575.98px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .header-actions .header-cta-desktop {
                display: none;
            }

            .main-nav-menu {
                top: 70px;
            }

            .article-top h1 {
                font-size: 30px;
            }

            .bottom-cta-btns {
                flex-direction: column;
            }

            .bottom-cta-btns .btn-jc {
                width: 100%;
                flex: 1 1 auto;
            }
        }

/* roulang page: category1 */
:root {
            --bg-dark-1: #0d1519;
            --bg-dark-2: #121d22;
            --bg-dark-3: #182328;
            --paper-1: #f5f1e8;
            --paper-2: #fffdf8;
            --line-dark: rgba(255, 255, 255, 0.08);
            --line-paper: #e3dbcc;
            --accent: #f4a03c;
            --accent-deep: #c97b21;
            --teal-soft: #2fb2a5;
            --text-on-dark: #f6f1e9;
            --text-dim-dark: #c1c7ca;
            --text-on-light: #1e2428;
            --text-dim-light: #5f666b;
            --link-underline: #d9822b;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow-card: 0 18px 42px rgba(0, 0, 0, 0.18);
            --shadow-paper: 0 12px 30px rgba(90, 60, 20, 0.08);
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            background: var(--bg-dark-1);
            color: var(--text-on-dark);
            -webkit-font-smoothing: antialiased;
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        select,
        textarea {
            font: inherit;
        }

        h1,
        h2,
        h3,
        h4 {
            margin: 0;
            line-height: 1.3;
            color: inherit;
            font-weight: 700;
        }

        p {
            margin-top: 0;
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .container-custom {
            width: min(1270px, calc(100% - 42px));
            margin: 0 auto;
        }

        section {
            scroll-margin-top: 112px;
        }

        .section-head {
            margin-bottom: 44px;
        }

        .section-head .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--accent-deep);
            margin-bottom: 12px;
        }

        .section-head .eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--accent);
            border-radius: 10px;
        }

        .section-head h2 {
            font-size: clamp(26px, 3vw, 38px);
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }

        .section-head p {
            color: var(--text-dim-light);
            max-width: 720px;
            font-size: 16px;
        }

        .section-dark .section-head h2 {
            color: var(--text-on-dark);
        }

        .section-dark .section-head p,
        .section-dark p.lead-muted {
            color: var(--text-dim-dark);
        }

        /* ===== buttons / links ===== */
        .btn-main,
        .btn-outline-main,
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 0;
            font-weight: 700;
            font-size: 15px;
            line-height: 1;
            padding: 15px 22px;
            border-radius: var(--radius-sm);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-main {
            background-color: var(--accent);
            color: #1c2326;
            box-shadow: 0 10px 24px rgba(244, 160, 60, 0.18);
        }

        .btn-main:hover {
            background-color: #ffaf4d;
            color: #10171b;
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(244, 160, 60, 0.24);
        }

        .btn-outline-main {
            background: transparent;
            border: 1px solid rgba(244, 160, 60, 0.6);
            color: var(--accent);
        }

        .btn-outline-main:hover {
            border-color: var(--accent);
            background: rgba(244, 160, 60, 0.08);
            transform: translateY(-1px);
        }

        .btn-outline-light {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: var(--text-on-dark);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.11);
            border-color: rgba(255, 255, 255, 0.55);
            transform: translateY(-1px);
        }

        .btn-main:focus-visible,
        .btn-outline-main:focus-visible,
        .btn-outline-light:focus-visible,
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        .btn-main:active,
        .btn-outline-main:active,
        .btn-outline-light:active {
            transform: translateY(1px);
            box-shadow: none;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--accent-deep);
            font-weight: 700;
            border-bottom: 1px solid rgba(201, 123, 33, 0.3);
            padding-bottom: 2px;
            transition: color 0.2s, border-color 0.2s, gap 0.2s;
        }

        .text-link i {
            font-size: 13px;
            transition: transform 0.2s;
        }

        .text-link:hover {
            color: #1e2428;
            border-color: var(--accent);
            gap: 9px;
        }

        .section-dark .text-link,
        .dark-card .text-link {
            color: var(--accent);
            border-color: rgba(244, 160, 60, 0.38);
        }

        .section-dark .text-link:hover,
        .dark-card .text-link:hover {
            color: #fff4e2;
            border-color: var(--accent);
        }

        /* ===== top tick / header ===== */
        .top-tick {
            background: #070b0e;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            height: 36px;
            color: rgba(255, 255, 255, 0.56);
            font-size: 13px;
        }

        .top-tick-inner {
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .tick-left {
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 0.03em;
        }

        .tick-tip a {
            margin-left: 4px;
            color: rgba(255, 255, 255, 0.85);
            border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
            transition: color 0.2s, border-color 0.2s;
        }

        .tick-tip a:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        .main-nav {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(13, 21, 25, 0.92);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--line-dark);
        }

        .main-nav-inner {
            display: flex;
            align-items: center;
            gap: 30px;
            min-height: 76px;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 28px;
            font-weight: 800;
            color: var(--text-on-dark);
            letter-spacing: -0.05em;
            line-height: 1;
            padding-right: 6px;
        }

        .brand-logo .logo-mark {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(145deg, var(--accent), #c9761e);
            color: #111619;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex: 0 0 auto;
        }

        .brand-logo span.split {
            color: rgba(255, 255, 255, 0.82);
            font-weight: 700;
        }

        .main-mobile-collapse {
            flex: 1;
            display: flex;
            align-items: center;
        }

        .main-nav-list {
            display: flex;
            align-items: center;
            gap: 4px;
            margin: 0;
        }

        .main-nav-list li a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 16px;
            color: rgba(255, 255, 255, 0.68);
            font-weight: 500;
            font-size: 15px;
            border-radius: 10px;
            position: relative;
            transition: color 0.2s, background 0.2s;
        }

        .main-nav-list li a i {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.42);
        }

        .main-nav-list li a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        .main-nav-list li a.active {
            background: rgba(244, 160, 60, 0.13);
            color: #fff3dc;
        }

        .main-nav-list li a.active i {
            color: var(--accent);
        }

        .main-nav-list li a.active::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 7px;
            height: 2px;
            background: var(--accent);
            border-radius: 20px;
        }

        .nav-side-cta {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-soft-link {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            padding-bottom: 3px;
            transition: color 0.2s, border-color 0.2s;
        }

        .nav-soft-link:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        .nav-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
            padding: 8px 15px;
            border: 1px solid rgba(244, 160, 60, 0.4);
            border-radius: 999px;
        }

        .nav-btn:hover {
            background: rgba(244, 160, 60, 0.12);
            border-color: var(--accent);
        }

        .nav-toggler {
            display: none;
            margin-left: auto;
            width: 46px;
            height: 46px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 12px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            color: #fff;
            padding: 0;
        }

        .nav-toggler span {
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 6px;
        }

        @media (max-width: 991.98px) {
            .nav-toggler {
                display: inline-flex;
            }

            .nav-side-cta .nav-soft-link {
                display: none;
            }

            .main-mobile-collapse {
                flex-basis: 100%;
                display: none;
                flex-direction: column;
                align-items: stretch;
                margin-top: 12px;
                background: var(--bg-dark-2);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 16px;
                padding: 14px;
            }

            .main-mobile-collapse.show {
                display: flex;
            }

            .main-nav-list {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
            }

            .main-nav-list li a {
                width: 100%;
                border-radius: 10px;
                padding-top: 13px;
                padding-bottom: 13px;
            }

            .main-nav-list li a.active::after {
                content: none;
            }

            .main-nav-inner {
                flex-wrap: wrap;
                gap: 10px;
                padding-top: 12px;
                padding-bottom: 12px;
            }

            .nav-btn {
                padding: 12px 17px;
            }
        }

        @media (min-width: 992px) {
            .main-mobile-collapse.collapse {
                display: flex !important;
                height: auto !important;
            }
        }

        /* ============ category hero ============ */
        .category-hero {
            position: relative;
            padding: 80px 0 96px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 18%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .category-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(74deg, rgba(8, 14, 17, 0.98) 0%, rgba(9, 15, 18, 0.92) 47%, rgba(10, 17, 21, 0.68) 100%);
        }

        .category-hero::after {
            content: "";
            position: absolute;
            right: -180px;
            bottom: -220px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244, 160, 60, 0.22), transparent 70%);
            pointer-events: none;
        }

        .category-hero-inner {
            position: relative;
            z-index: 2;
        }

        .cat-breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
        }

        .cat-breadcrumb a {
            color: rgba(255, 255, 255, 0.62);
            transition: color 0.2s;
        }

        .cat-breadcrumb a:hover {
            color: var(--accent);
        }

        .cat-breadcrumb i {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.35);
        }

        .cat-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
            gap: 64px;
            align-items: center;
        }

        .category-hero-copy .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            background: rgba(244, 160, 60, 0.13);
            border: 1px solid rgba(244, 160, 60, 0.23);
            padding: 7px 13px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 22px;
            letter-spacing: 0.04em;
        }

        .category-h1 {
            font-size: clamp(42px, 6vw, 78px);
            line-height: 1.08;
            letter-spacing: -0.05em;
            color: #fffaf0;
            margin-bottom: 26px;
        }

        .category-summary {
            color: rgba(255, 255, 255, 0.76);
            font-size: 17px;
            line-height: 1.9;
            max-width: 56ch;
            margin-bottom: 18px;
        }

        .category-summary strong {
            color: #fff3da;
        }

        .hero-heat-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 24px 0 28px;
        }

        .meta-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.045);
            border-radius: 50px;
            padding: 7px 13px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
        }

        .meta-pill i {
            color: var(--teal-soft);
            width: 14px;
            font-size: 12px;
        }

        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .category-hero-side {
            position: relative;
        }

        .focus-preview {
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(18, 29, 34, 0.78);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .focus-preview::after {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle at 60% 40%, rgba(47, 178, 165, 0.14), transparent 75%);
            right: -40px;
            top: -40px;
            pointer-events: none;
        }

        .focus-preview-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--teal-soft);
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .focus-preview-label::before {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--teal-soft);
            border-radius: 50%;
        }

        .focus-preview .mini-thumb {
            aspect-ratio: 16 / 10;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 22px;
        }

        .focus-preview .mini-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .focus-preview h2 {
            color: #fff;
            font-size: 22px;
            margin-bottom: 12px;
        }

        .focus-preview p {
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .preview-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .preview-meta-row .lighter-link {
            color: var(--accent);
            font-size: 14px;
            font-weight: 700;
        }

        .preview-meta-row .lighter-link:hover {
            color: #ffc97a;
        }

        @media (max-width: 991.98px) {
            .cat-hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .category-hero {
                padding: 60px 0 58px;
            }

            .category-hero-side {
                max-width: 600px;
            }
        }

        @media (max-width: 575px) {
            .category-hero {
                padding-top: 46px;
                padding-bottom: 42px;
            }

            .category-h1 {
                font-size: 42px;
            }

            .cta-row .btn-main,
            .cta-row .btn-outline-light {
                width: 100%;
            }
        }

        /* ============ path section ============ */
        .path-section {
            background: var(--paper-1);
            color: var(--text-on-light);
            padding: 96px 0 96px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .path-grid {
            display: grid;
            gap: 36px;
        }

        .path-item {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 40px;
            background: var(--paper-2);
            border: 1px solid var(--line-paper);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-paper);
            align-items: center;
            position: relative;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .path-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 44px rgba(91, 61, 22, 0.12);
            border-color: rgba(244, 160, 60, 0.42);
        }

        .path-number {
            position: absolute;
            top: 10px;
            right: 24px;
            font-size: 78px;
            line-height: 1;
            font-weight: 800;
            color: rgba(201, 123, 33, 0.12);
            letter-spacing: -0.08em;
            pointer-events: none;
        }

        .path-text {
            position: relative;
        }

        .path-text .step-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.13em;
            color: var(--teal-soft);
            background: rgba(47, 178, 165, 0.1);
            border: 1px solid rgba(47, 178, 165, 0.24);
            border-radius: 4px;
            padding: 4px 9px;
            margin-bottom: 14px;
        }

        .path-text h3 {
            font-size: 26px;
            margin-bottom: 16px;
            letter-spacing: -0.03em;
        }

        .path-text p {
            color: var(--text-dim-light);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .path-media {
            aspect-ratio: 16 / 10;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #beb8a9;
            position: relative;
        }

        .path-media::after {
            content: "";
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: var(--radius-md);
            box-shadow: inset 0 0 50px rgba(0, 0, 0, 0);
        }

        .path-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .path-item:hover .path-media img {
            transform: scale(1.025);
        }

        .path-item:nth-of-type(even) .path-text {
            order: 1;
        }

        .path-item:nth-of-type(even) .path-media {
            order: 0;
        }

        @media (max-width: 899px) {
            .path-item {
                grid-template-columns: 1fr;
                padding: 26px;
                gap: 24px;
            }

            .path-item:nth-of-type(even) .path-text,
            .path-item:nth-of-type(even) .path-media {
                order: 0;
            }
        }

        /* ============ feature / dark section ============ */
        .feature-section {
            background: var(--bg-dark-1);
            color: var(--text-on-dark);
            padding: 96px 0 96px;
            position: relative;
        }

        .feature-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.png');
            background-size: cover;
            background-position: center;
            opacity: 0.14;
            pointer-events: none;
        }

        .feature-wrapper {
            position: relative;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
            gap: 24px;
            align-items: stretch;
        }

        .focus-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-dark-3);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            flex-direction: column;
            min-height: 100%;
            box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .focus-card:hover {
            transform: translateY(-5px);
            border-color: rgba(244, 160, 60, 0.55);
        }

        .focus-card-img {
            aspect-ratio: 21 / 11;
            overflow: hidden;
            position: relative;
        }

        .focus-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .focus-card:hover .focus-card-img img {
            transform: scale(1.04);
        }

        .focus-card-body {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .content-badge {
            display: inline-flex;
            align-self: flex-start;
            padding: 6px 14px;
            background: rgba(244, 160, 60, 0.14);
            border: 1px solid rgba(244, 160, 60, 0.3);
            color: #ffc478;
            font-size: 12px;
            font-weight: 800;
            border-radius: 999px;
            letter-spacing: 0.04em;
            margin-bottom: 16px;
        }

        .focus-card h3 {
            font-size: 25px;
            margin-bottom: 14px;
            line-height: 1.5;
        }

        .focus-card p {
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.85;
            font-size: 15px;
            margin-bottom: 22px;
        }

        .focus-card .card-footer-link {
            margin-top: auto;
        }

        .mini-list-card {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .side-mini-item {
            background: var(--bg-dark-2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 14px;
            display: grid;
            grid-template-columns: 82px 1fr auto;
            gap: 15px;
            align-items: center;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
        }

        .side-mini-item:hover {
            border-color: rgba(244, 160, 60, 0.5);
            background: var(--bg-dark-3);
            transform: translateX(-3px);
        }

        .side-mini-thumb {
            width: 82px;
            border-radius: 9px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
        }

        .side-mini-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .side-mini-body .mini-label {
            font-size: 12px;
            color: var(--teal-soft);
            margin-bottom: 6px;
            display: block;
        }

        .side-mini-body h3 {
            font-size: 15px;
            line-height: 1.55;
            color: #fff;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .side-mini-body span.time {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.42);
        }

        .side-mini-arrow {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.62);
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }

        .side-mini-item:hover .side-mini-arrow {
            background: var(--accent);
            border-color: var(--accent);
            color: #10171b;
            transform: rotate(-45deg);
        }

        @media (max-width: 991.98px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575px) {
            .side-mini-item {
                grid-template-columns: 72px 1fr auto;
                padding: 12px;
            }

            .side-mini-thumb {
                width: 72px;
            }
        }

        /* ============ preference / filter ============ */
        .preference-section {
            background: linear-gradient(160deg, #efe7d8, #faf5ec 55%, #f2ecdf);
            padding: 96px 0 84px;
            color: var(--text-on-light);
        }

        .pref-panel {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 44px;
            background: rgba(255, 253, 248, 0.92);
            border: 1px solid rgba(176, 153, 118, 0.23);
            border-radius: 26px;
            padding: 50px 46px;
            box-shadow: 0 24px 70px rgba(70, 45, 15, 0.08);
            position: relative;
            overflow: hidden;
        }

        .pref-panel::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(var(--accent), var(--teal-soft));
        }

        .pref-heading h2 {
            font-size: clamp(26px, 3vw, 37px);
            letter-spacing: -0.03em;
        }

        .pref-heading p {
            color: var(--text-dim-light);
            margin-top: 18px;
            font-size: 15px;
            line-height: 1.8;
        }

        .pref-form {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .pref-group-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dim-light);
            letter-spacing: 0.06em;
            display: block;
            margin-bottom: 14px;
        }

        .pref-choices {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .pref-choice input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .pref-choice span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 16px;
            border-radius: 999px;
            background: transparent;
            border: 1px solid var(--line-paper);
            color: var(--text-dim-light);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
        }

        .pref-choice input:checked + span {
            background: rgba(244, 160, 60, 0.15);
            border-color: var(--accent);
            color: var(--accent-deep);
            transform: translateY(-1px);
        }

        .pref-choice span i {
            font-size: 13px;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .pref-choice input:checked + span i {
            opacity: 1;
        }

        .pref-submit {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .pref-note {
            font-size: 13px;
            color: var(--text-dim-light);
            margin: 0;
        }

        @media (max-width: 991.98px) {
            .pref-panel {
                grid-template-columns: 1fr;
                padding: 38px 26px;
                gap: 30px;
            }
        }

        /* ============ FAQ section ============ */
        .faq-section {
            background: var(--paper-1);
            color: var(--text-on-light);
            padding: 96px 0 96px;
        }

        .faq-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
            gap: 60px;
        }

        .faq-intro .faq-symbol {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1c2326;
            background: linear-gradient(145deg, var(--accent), #d9892e);
            font-size: 22px;
            margin-bottom: 28px;
        }

        .faq-intro h2 {
            font-size: clamp(26px, 3vw, 38px);
            margin-bottom: 22px;
        }

        .faq-intro p {
            color: var(--text-dim-light);
            margin-bottom: 28px;
        }

        .faq-intro .contact-soft {
            background: rgba(47, 178, 165, 0.1);
            border-left: 3px solid var(--teal-soft);
            border-radius: 10px;
            padding: 16px 18px;
            font-size: 14px;
            color: #396d68;
        }

        .faq-accordion .accordion-item {
            border: 1px solid var(--line-paper);
            background: transparent;
            border-radius: 14px !important;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(90, 60, 20, 0.02);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: rgba(244, 160, 60, 0.45);
            box-shadow: 0 12px 26px rgba(108, 75, 28, 0.08);
        }

        .faq-accordion .accordion-header {
            margin: 0;
        }

        .faq-accordion .accordion-button {
            background: var(--paper-2);
            border: 0;
            color: var(--text-on-light);
            font-weight: 700;
            font-size: 16px;
            padding: 20px 22px;
            padding-right: 54px;
            border-radius: 14px !important;
            position: relative;
            box-shadow: none;
            letter-spacing: -0.01em;
            transition: color 0.2s;
        }

        .faq-accordion .accordion-button:hover {
            background: #fff;
            color: var(--accent-deep);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: #fff9ec;
            color: var(--accent-deep);
            box-shadow: none;
        }

        .faq-accordion .accordion-button::after {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\2b";
            position: absolute;
            right: 22px;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            font-size: 15px;
            color: var(--accent-deep);
            transition: transform 0.2s, content 0.2s;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            content: "\f068";
            transform: translateY(-50%) rotate(0);
        }

        .faq-accordion .accordion-collapse {
            background: var(--paper-2);
        }

        .faq-accordion .accordion-body {
            background: var(--paper-2);
            padding: 4px 24px 24px 24px;
            color: var(--text-dim-light);
            font-size: 15px;
            line-height: 1.85;
            border-top: 1px solid rgba(221, 211, 194, 0.5);
        }

        .faq-accordion .accordion-body p {
            margin-bottom: 10px;
        }

        .faq-accordion .accordion-body p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 991.98px) {
            .faq-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .faq-intro {
                max-width: 720px;
            }
        }

        /* ============ final CTA / closing ============ */
        .closing-section {
            background: var(--paper-2);
            color: var(--text-on-light);
            padding: 70px 0 100px;
        }

        .closing-box {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 35%;
            color: #fff;
            padding: 86px 72px;
            min-height: 310px;
            display: flex;
            align-items: center;
            box-shadow: 0 28px 70px rgba(17, 20, 18, 0.25);
        }

        .closing-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(86deg, rgba(14, 22, 26, 0.98), rgba(17, 29, 34, 0.87), rgba(29, 57, 65, 0.43));
        }

        .closing-inner {
            position: relative;
            z-index: 3;
            max-width: 670px;
        }

        .closing-inner .eyebrow {
            color: var(--accent);
            font-weight: 800;
            font-size: 13px;
            letter-spacing: 0.12em;
            margin-bottom: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .closing-inner .eyebrow::before {
            content: "";
            width: 26px;
            height: 2px;
            background: var(--accent);
            border-radius: 10px;
        }

        .closing-inner h2 {
            font-size: clamp(28px, 3.5vw, 44px);
            line-height: 1.25;
            color: #fff9ed;
            margin-bottom: 18px;
        }

        .closing-inner p {
            color: rgba(255, 255, 255, 0.78);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 26px;
        }

        .closing-inner .closing-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        @media (max-width: 767.98px) {
            .closing-box {
                padding: 48px 24px;
            }

            .closing-inner .closing-actions .btn-main,
            .closing-inner .closing-actions .btn-outline-light {
                width: 100%;
            }
        }

        /* ============ footer ============ */
        .site-footer {
            background: #090e11;
            color: rgba(255, 255, 255, 0.68);
            padding-top: 72px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
            gap: 56px;
            padding-bottom: 52px;
        }

        .footer-brand-text {
            font-size: 30px;
            font-weight: 800;
            letter-spacing: -0.05em;
            color: #fff;
            line-height: 1;
        }

        .footer-brand-text span {
            color: #f2a244;
        }

        .footer-desc {
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.52);
            line-height: 1.8;
            font-size: 14px;
            max-width: 34ch;
        }

        .footer-link-title {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 18px;
            letter-spacing: 0.02em;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            transition: color 0.2s, padding-left 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-contact-info {
            display: grid;
            gap: 9px;
        }

        .footer-contact-info div {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.45);
            font-size: 13px;
        }

        .footer-contact-info div i {
            width: 16px;
            color: var(--teal-soft);
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            background: #070d0f;
        }

        .footer-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.42);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-meta-links {
            display: flex;
            gap: 18px;
        }

        .footer-meta-links a {
            color: rgba(255, 255, 255, 0.48);
            border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
            transition: color 0.2s, border-color 0.2s;
        }

        .footer-meta-links a:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        @media (max-width: 991.98px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 575.98px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .footer-bottom-inner {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .footer-meta-links {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .container-custom {
                width: min(1270px, calc(100% - 34px));
            }

            .top-tick-inner .tick-tip {
                display: none;
            }

            .top-tick-inner {
                justify-content: center;
            }
        }

/* roulang page: category2 */
:root {
    --bg-dark-1:#0F171B;
    --bg-dark-2:#172329;
    --bg-dark-3:#1C2A30;
    --paper-1:#F5F1E8;
    --paper-2:#FFFDF8;
    --line-dark:rgba(255,255,255,.08);
    --line-paper:#E4DCCF;
    --accent:#F4A03C;
    --accent-deep:#C97B21;
    --teal-soft:#2FB2A5;
    --text-on-dark:#F6F1E9;
    --text-dim-dark:#C1C7CA;
    --text-on-light:#1E2428;
    --text-dim-light:#5F666B;
    --radius-large:24px;
    --radius-card:16px;
    --radius-btn:9px;
    --shadow-solid:0 18px 46px rgba(0,0,0,.28);
    --shadow-warm:0 16px 36px rgba(88,62,34,.12);
    --ease:cubic-bezier(.4,0,.2,1);
}

*,
*::before,
*::after {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
    scroll-padding-top:96px;
}

body {
    margin:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
    font-size:16px;
    line-height:1.8;
    color:var(--text-on-dark);
    background:var(--bg-dark-1);
    -webkit-font-smoothing:antialiased;
}

body.menu-lock {
    overflow:hidden;
}

a {
    color:inherit;
    text-decoration:none;
    transition:color .22s var(--ease);
}

a:hover {
    color:var(--accent);
}

img {
    max-width:100%;
    display:block;
}

ul,
ol {
    margin:0;
    padding:0;
    list-style:none;
}

button,
input,
select {
    font-family:inherit;
}

.container-custom {
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 28px;
}

/* ===== 顶部细信息条 ===== */
.top-info-bar {
    background:#091014;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.top-info-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:36px;
    color:rgba(255,255,255,.55);
    font-size:13px;
    letter-spacing:.01em;
}

.info-left {
    display:flex;
    align-items:center;
    gap:10px;
}

.info-left .dot {
    width:6px;
    height:6px;
    border-radius:99px;
    background:var(--teal-soft);
}

.info-right {
    display:flex;
    align-items:center;
    gap:20px;
}

.info-right a {
    color:rgba(255,255,255,.65);
    display:inline-flex;
    align-items:center;
    gap:6px;
    border-bottom:1px solid transparent;
}

.info-right a:hover {
    color:#fff;
    border-color:var(--accent);
}

/* ===== Header ===== */
.site-header {
    position:sticky;
    top:0;
    z-index:1080;
    background:rgba(15,23,27,.92);
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line-dark);
}

.header-inner {
    display:flex;
    align-items:center;
    min-height:78px;
    gap:24px;
}

.brand-logo {
    display:inline-flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
    color:var(--text-on-dark);
    font-weight:800;
    font-size:22px;
    line-height:1.2;
    letter-spacing:-.01em;
}

.brand-logo .brand-marker {
    width:9px;
    height:34px;
    border-radius:6px;
    background:var(--accent);
}

.brand-logo .brand-light {
    color:var(--accent);
}

.brand-logo:hover {
    color:#fff;
}

/* 导航 */
.main-nav {
    margin-left:14px;
    margin-right:auto;
}

.main-nav-list {
    display:flex;
    align-items:center;
    gap:4px;
}

.main-nav-list a {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:10px;
    color:rgba(255,255,255,.72);
    font-size:15px;
    font-weight:500;
    transition:background .22s var(--ease),color .22s var(--ease);
}

.main-nav-list a i {
    color:rgba(255,255,255,.4);
    font-size:14px;
    transition:color .22s var(--ease);
}

.main-nav-list a:hover {
    color:#fff;
    background:rgba(255,255,255,.06);
}

.main-nav-list a:hover i {
    color:var(--accent);
}

.main-nav-list a.active,
.main-nav-list a[aria-current="page"] {
    color:var(--text-on-dark);
    background:rgba(244,160,60,.12);
}

.main-nav-list a.active i,
.main-nav-list a[aria-current="page"] i {
    color:var(--accent);
}

.main-nav-list a.active::after {
    content:"";
    display:block;
    width:18px;
    height:3px;
    margin:0 auto;
    border-radius:99px;
    background:var(--accent);
}

.header-cta {
    flex-shrink:0;
}

/* 汉堡按钮 */
.nav-toggle {
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    width:46px;
    height:46px;
    margin-left:auto;
    padding:0;
    border:1px solid var(--line-dark);
    border-radius:12px;
    background:transparent;
    cursor:pointer;
    gap:5px;
    transition:background .2s;
}

.nav-toggle:hover {
    background:rgba(255,255,255,.05);
}

.nav-toggle .bar {
    width:19px;
    height:2px;
    background:#fff;
    border-radius:99px;
    transition:transform .25s var(--ease),opacity .2s;
}

.nav-toggle.is-open .bar:nth-child(1) {
    transform:translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(2) {
    opacity:0;
}

.nav-toggle.is-open .bar:nth-child(3) {
    transform:translateY(-7px) rotate(-45deg);
}

/* 按钮 */
.btn-amber,
.btn-outline,
.btn-ghost {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border-radius:var(--radius-btn);
    font-weight:600;
    line-height:1.2;
    border:1px solid transparent;
    transition:transform .22s var(--ease),box-shadow .22s var(--ease),background .22s var(--ease),border-color .22s var(--ease),color .22s var(--ease);
    text-align:center;
}

.btn-amber {
    padding:11px 22px;
    background:var(--accent);
    border-color:var(--accent);
    color:#20160A;
}

.btn-amber:hover {
    color:#20160A;
    background:#FFB65A;
    border-color:#FFB65A;
    transform:translateY(-2px);
    box-shadow:0 12px 26px rgba(201,123,33,.25);
}

.btn-amber:active {
    transform:translateY(0);
    background:var(--accent-deep);
    border-color:var(--accent-deep);
}

.btn-outline {
    padding:11px 22px;
    background:rgba(255,255,255,.02);
    border-color:rgba(255,255,255,.28);
    color:var(--text-on-dark);
}

.btn-outline:hover {
    border-color:var(--accent);
    color:var(--accent);
    background:rgba(244,160,60,.06);
    transform:translateY(-2px);
}

.btn-ghost {
    padding:9px 16px;
    background:rgba(255,255,255,.03);
    border-color:transparent;
    color:inherit;
    border-radius:9px;
}

.btn-ghost:hover {
    background:rgba(255,255,255,.08);
    color:var(--accent);
    transform:translateY(-1px);
}

.btn-large {
    padding:15px 32px;
    font-size:16px;
}

.btn-sm {
    padding:8px 15px;
    font-size:13px;
}

button:focus,
a:focus,
input:focus {
    outline:2px solid var(--accent);
    outline-offset:3px;
}

/* ===== 分类首屏 ===== */
.category-banner {
    position:relative;
    min-height:590px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    border-bottom:1px solid var(--line-dark);
}

.category-banner-photo {
    position:absolute;
    inset:0;
    background-image:url('/assets/images/backpic/back-2.webp');
    background-size:cover;
    background-position:center 30%;
}

.category-banner-photo::after {
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(100deg, rgba(9,14,17,.94) 8%, rgba(15,23,27,.68) 54%, rgba(15,23,27,.42)),
        linear-gradient(0deg, rgba(9,14,17,.92) 0%, transparent 35%);
}

.category-banner-content {
    position:relative;
    z-index:2;
    width:100%;
    padding-top:120px;
    padding-bottom:68px;
}

.category-banner-grid {
    display:grid;
    grid-template-columns:minmax(0,1fr) 390px;
    gap:64px;
    align-items:end;
}

.breadcrumb-loc {
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    font-size:14px;
    color:rgba(255,255,255,.48);
    margin-bottom:20px;
}

.breadcrumb-loc a {
    color:rgba(255,255,255,.68);
    transition:color .2s;
}

.breadcrumb-loc a:hover {
    color:var(--accent);
}

.breadcrumb-loc .sep {
    color:rgba(255,255,255,.3);
}

.category-page-title {
    max-width:16ch;
    margin-bottom:18px;
    font-size:clamp(46px, 6vw, 76px);
    line-height:1.08;
    font-weight:800;
    letter-spacing:-.02em;
}

.category-page-title .title-accent {
    color:var(--accent);
}

.category-lede {
    max-width:60ch;
    font-size:17px;
    line-height:1.9;
    color:var(--text-dim-dark);
    margin-bottom:26px;
}

.hero-tags {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tag-chip {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    padding:8px 14px;
    border-radius:99px;
    font-size:13px;
    color:rgba(255,255,255,.78);
}

.tag-chip i {
    color:var(--teal-soft);
    font-size:12px;
}

/* 首屏检索面板 */
.explore-panel {
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.1);
    border-radius:var(--radius-large);
    padding:26px;
    box-shadow:var(--shadow-solid);
}

.explore-panel-title {
    font-size:16px;
    font-weight:700;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:10px;
}

.explore-panel-title i {
    color:var(--accent);
}

.filter-label {
    font-size:12px;
    letter-spacing:.08em;
    color:rgba(255,255,255,.44);
    margin:14px 0 8px;
}

.filter-label:first-of-type {
    margin-top:0;
}

.pill-row {
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}

.pill-choice {
    position:relative;
    cursor:pointer;
}

.pill-choice input {
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.pill-choice span {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    border-radius:99px;
    border:1px solid rgba(255,255,255,.16);
    color:rgba(255,255,255,.66);
    font-size:13px;
    transition:all .2s var(--ease);
    user-select:none;
}

.pill-choice span i {
    font-size:11px;
}

.pill-choice input:checked + span {
    color:#20160A;
    background:var(--accent);
    border-color:var(--accent);
    font-weight:600;
}

.panel-action {
    margin-top:20px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

/* ===== Section ===== */
.section-space {
    padding:96px 0;
}

.section-space-sm {
    padding:70px 0;
}

.eyebrow {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    letter-spacing:.1em;
    color:var(--accent);
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:10px;
}

.eyebrow::before {
    content:"";
    width:24px;
    height:2px;
    background:var(--accent);
    border-radius:99px;
}

.section-heading {
    font-size:clamp(28px, 4vw, 44px);
    line-height:1.22;
    font-weight:800;
    letter-spacing:-.02em;
    color:var(--text-on-dark);
    margin-bottom:14px;
}

.section-heading-light {
    color:var(--text-on-light);
}

.section-note {
    max-width:62ch;
    color:var(--text-dim-dark);
    font-size:16px;
    line-height:1.9;
}

.section-note-light {
    color:var(--text-dim-light);
}

.section-head-row {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:28px;
    flex-wrap:wrap;
    margin-bottom:44px;
}

/* ===== 步骤区 ===== */
.flow-section {
    background:var(--bg-dark-2);
    border-bottom:1px solid var(--line-dark);
}

.step-rail {
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
    counter-reset:step;
}

.step-card {
    position:relative;
    padding:26px 24px 24px;
    border:1px solid var(--line-dark);
    border-radius:var(--radius-card);
    background:var(--bg-dark-3);
    transition:border-color .25s var(--ease),transform .25s var(--ease),background .25s var(--ease);
}

.step-card::before {
    content:"";
    position:absolute;
    left:0;
    top:28px;
    bottom:28px;
    width:3px;
    background:linear-gradient(180deg,var(--accent),var(--teal-soft));
    border-radius:99px;
    opacity:.85;
}

.step-card:hover {
    border-color:rgba(244,160,60,.32);
    transform:translateY(-5px);
    background:#1E2C34;
}

.step-number {
    font-size:13px;
    font-weight:700;
    color:var(--accent);
    font-style:normal;
    letter-spacing:.1em;
    margin-bottom:16px;
}

.step-icon {
    display:inline-flex;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    background:rgba(244,160,60,.14);
    color:var(--accent);
    border-radius:12px;
    margin-bottom:18px;
    font-size:18px;
}

.step-title {
    font-size:18px;
    font-weight:700;
    line-height:1.45;
    color:var(--text-on-dark);
    margin-bottom:10px;
}

.step-desc {
    font-size:14px;
    line-height:1.85;
    color:var(--text-dim-dark);
    margin-bottom:0;
}

/* ===== 图片分区 ===== */
.picture-split {
    background:var(--bg-dark-1);
    border-bottom:1px solid var(--line-dark);
}

.picture-split-grid {
    display:grid;
    grid-template-columns:minmax(0,1.28fr) minmax(0,1fr);
    gap:52px;
    align-items:center;
}

.picture-main-copy {
    order:1;
}

.picture-side-card {
    order:2;
    position:relative;
}

.picture-body {
    color:var(--text-dim-dark);
    font-size:16px;
    line-height:1.9;
    margin:16px 0 24px;
}

.picture-body strong {
    color:var(--text-on-dark);
    font-weight:600;
}

.check-list {
    display:grid;
    gap:12px;
    margin:28px 0;
}

.check-list li {
    display:flex;
    gap:14px;
    align-items:flex-start;
    color:rgba(255,255,255,.8);
    font-size:15px;
    line-height:1.7;
}

.check-list li i {
    margin-top:4px;
    color:var(--teal-soft);
    font-size:15px;
}

.picture-poster {
    position:relative;
    border-radius:26px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 32px 68px rgba(0,0,0,.42);
}

.picture-poster img {
    width:100%;
    height:440px;
    object-fit:cover;
}

.picture-poster::after {
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:55%;
    background:linear-gradient(180deg,transparent,rgba(9,14,17,.92));
}

.poster-caption {
    position:absolute;
    left:24px;
    right:24px;
    bottom:20px;
    z-index:2;
    color:#fff;
}

.poster-caption small {
    color:var(--accent);
    font-size:12px;
    letter-spacing:.1em;
}

.poster-caption h3 {
    font-size:21px;
    font-weight:700;
    margin-top:8px;
    margin-bottom:4px;
}

.poster-caption p {
    font-size:13px;
    color:rgba(255,255,255,.66);
    margin:0;
}

/* ===== 浅色检索区 ===== */
.light-pick-section {
    background:var(--paper-1);
    color:var(--text-on-light);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.light-card-grid {
    display:grid;
    grid-template-columns:0.9fr 1.1fr 0.9fr;
    gap:24px;
}

.light-card {
    background:var(--paper-2);
    border:1px solid var(--line-paper);
    border-radius:20px;
    padding:30px 28px;
    box-shadow:var(--shadow-warm);
}

.light-card.wide-card {
    background:#201A12;
    color:var(--paper-1);
    border-color:#3A2E20;
}

.card-no {
    font-size:15px;
    font-weight:800;
    color:var(--accent-deep);
    letter-spacing:.06em;
}

.wide-card .card-no {
    color:var(--accent);
}

.light-card-title {
    font-size:20px;
    font-weight:700;
    margin:16px 0 10px;
    line-height:1.4;
}

.light-card-text {
    font-size:14px;
    color:var(--text-dim-light);
    line-height:1.85;
    margin-bottom:20px;
}

.wide-card .light-card-text {
    color:rgba(255,255,255,.62);
}

.mini-index {
    display:flex;
    flex-direction:column;
    gap:10px;
}

.mini-index li {
    font-size:13px;
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding-bottom:10px;
    border-bottom:1px dashed rgba(255,255,255,.12);
    color:rgba(255,255,255,.72);
}

.mini-index li span:last-child {
    color:#fff;
    font-weight:600;
}

/* ===== 右侧推荐 ===== */
.curated-section {
    background:var(--bg-dark-1);
}

.curated-grid {
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:18px;
}

.curate-main {
    grid-column:span 7;
    min-height:340px;
    position:relative;
    border-radius:22px;
    overflow:hidden;
    padding:30px;
    display:flex;
    align-items:flex-end;
    border:1px solid var(--line-dark);
}

.curate-main img {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.curate-main::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(200deg,transparent 28%,rgba(10,16,20,.94) 82%);
}

.curate-content {
    position:relative;
    z-index:2;
}

.curate-tag {
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:12px;
    color:var(--accent);
    background:rgba(0,0,0,.32);
    padding:6px 12px;
    border-radius:99px;
    margin-bottom:12px;
    border:1px solid rgba(244,160,60,.2);
}

.curate-title {
    font-size:26px;
    color:#fff;
    font-weight:750;
    line-height:1.3;
    max-width:20ch;
    margin-bottom:8px;
}

.curate-desc {
    color:rgba(255,255,255,.68);
    font-size:14px;
    max-width:46ch;
}

.curate-sub {
    grid-column:span 3;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:18px;
    padding:28px 10px 10px;
}

.sub-card {
    background:var(--bg-dark-3);
    border:1px solid var(--line-dark);
    border-radius:16px;
    padding:18px;
}

.sub-card small {
    color:var(--teal-soft);
    font-size:12px;
}

.sub-card h3 {
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin:7px 0;
}

.sub-card p {
    color:var(--text-dim-dark);
    font-size:13px;
    line-height:1.7;
    margin:0;
}

.index-side {
    grid-column:span 2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:16px;
    border:1px solid var(--line-dark);
    border-radius:20px;
    padding:22px 17px;
    background:rgba(255,255,255,.025);
}

.index-num {
    color:rgba(255,255,255,.28);
    font-size:24px;
    font-style:italic;
    font-weight:500;
    line-height:1;
}

.index-side .entry-title {
    font-size:14px;
    color:var(--text-on-dark);
    font-weight:600;
    line-height:1.5;
    margin:8px 0 2px;
}

.index-side .entry-meta {
    font-size:12px;
    color:var(--text-dim-dark);
}

.index-side .entry-meta i {
    color:var(--accent);
    margin-right:4px;
}

/* ===== FAQ ===== */
.faq-compact {
    background:var(--bg-dark-2);
    border-bottom:1px solid var(--line-dark);
}

.faq-grid {
    display:grid;
    grid-template-columns:0.38fr 1fr;
    gap:46px;
}

.faq-intro h2 {
    color:var(--text-on-dark);
}

.faq-intro p {
    color:var(--text-dim-dark);
    margin-top:14px;
    font-size:15px;
}

.faq-list {
    display:flex;
    flex-direction:column;
    gap:14px;
}

.faq-item {
    background:var(--bg-dark-3);
    border:1px solid var(--line-dark);
    border-radius:16px;
    overflow:hidden;
    transition:border-color .2s var(--ease);
}

.faq-item:hover {
    border-color:rgba(244,160,60,.2);
}

.faq-button {
    display:flex;
    justify-content:space-between;
    gap:20px;
    width:100%;
    padding:19px 22px;
    text-align:left;
    background:none;
    border:0;
    color:var(--text-on-dark);
    font-size:16px;
    font-weight:600;
    line-height:1.5;
    cursor:pointer;
}

.faq-button .fa-plus {
    color:var(--accent);
    transition:transform .28s var(--ease);
    font-size:14px;
}

.faq-button[aria-expanded="true"] .fa-plus {
    transform:rotate(45deg);
}

.faq-answer {
    padding:0 22px 20px;
    color:var(--text-dim-dark);
    font-size:14px;
    line-height:1.85;
}

/* ===== CTA band ===== */
.cta-band {
    position:relative;
    min-height:330px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background-color:#131B20;
}

.cta-photo {
    position:absolute;
    inset:0;
    background-image:url('/assets/images/backpic/back-3.png');
    background-size:cover;
    background-position:center;
}

.cta-photo::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(85deg,rgba(9,14,17,.96) 20%,rgba(9,14,17,.55) 78%,rgba(244,160,60,.12));
}

.cta-inner-content {
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:44px;
    width:100%;
    flex-wrap:wrap;
    padding:70px 0;
}

.cta-heading {
    font-size:clamp(28px,4vw,42px);
    line-height:1.32;
    font-weight:800;
    color:#fff;
    max-width:26ch;
    letter-spacing:-.02em;
}

.cta-heading i {
    color:var(--accent);
    font-style:normal;
}

.cta-description {
    color:rgba(255,255,255,.6);
    max-width:75ch;
    margin-top:10px;
    line-height:1.85;
}

.cta-actions {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

/* ===== Footer ===== */
.site-footer {
    background:#0B1114;
    border-top:1px solid rgba(255,255,255,.06);
    padding-top:72px;
    color:rgba(255,255,255,.72);
}

.footer-grid {
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.1fr;
    gap:44px;
    padding-bottom:50px;
}

.footer-brand-text {
    font-size:26px;
    font-weight:800;
    color:#fff;
    letter-spacing:-.01em;
}

.footer-brand-text span {
    color:var(--accent);
}

.footer-desc {
    font-size:14px;
    line-height:1.85;
    color:rgba(255,255,255,.5);
    max-width:34ch;
    margin-top:16px;
}

.footer-link-title {
    font-size:15px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.footer-links {
    display:grid;
    gap:10px;
}

.footer-links a {
    color:rgba(255,255,255,.56);
    font-size:14px;
    transition:color .2s,padding-left .2s;
    padding-left:0;
}

.footer-links a:hover {
    color:var(--accent);
    padding-left:5px;
}

.footer-contact-info {
    display:grid;
    gap:10px;
    margin-top:16px;
    font-size:14px;
    color:rgba(255,255,255,.48);
}

.footer-contact-info i {
    color:var(--accent);
    width:18px;
}

.footer-bottom {
    border-top:1px solid rgba(255,255,255,.07);
    padding:22px 0;
}

.footer-bottom-inner {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.footer-copyright {
    font-size:13px;
    color:rgba(255,255,255,.42);
}

.footer-meta-links {
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.footer-meta-links a {
    font-size:13px;
    color:rgba(255,255,255,.46);
}

.footer-meta-links a:hover {
    color:var(--accent);
}

/* ===== 响应式 ===== */
@media (max-width:1199.98px) {
    .category-banner-grid {
        grid-template-columns:1fr 350px;
        gap:38px;
    }

    .step-rail {
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .light-card-grid {
        grid-template-columns:1fr 1fr;
    }

    .curated-grid {
        grid-template-columns:repeat(6,1fr);
    }

    .curate-main {
        grid-column:span 4;
    }

    .curate-sub {
        grid-column:span 2;
    }

    .index-side {
        grid-column:span 6;
        flex-direction:row;
        align-items:center;
        gap:20px;
    }
}

@media (max-width:991.98px) {
    .header-inner {
        flex-wrap:wrap;
        min-height:70px;
        gap:10px;
        padding-top:8px;
        padding-bottom:8px;
    }

    .main-nav {
        order:4;
        width:100%;
        max-height:0;
        overflow:hidden;
        transition:max-height .3s var(--ease);
        margin-left:0;
        background:var(--bg-dark-2);
        border-radius:0 0 16px 16px;
    }

    .main-nav.is-open {
        max-height:520px;
        border-bottom:1px solid var(--line-dark);
    }

    .main-nav-list {
        flex-direction:column;
        padding:12px 6px;
        gap:2px;
    }

    .main-nav-list a {
        width:100%;
        border-radius:10px;
        font-size:16px;
        padding:12px 16px;
    }

    .main-nav-list a.active::after {
        display:none;
    }

    .nav-toggle {
        display:flex;
        order:3;
    }

    .header-cta {
        display:none;
    }

    .category-banner {
        min-height:620px;
        align-items:flex-end;
    }

    .category-banner-content {
        padding-top:110px;
        padding-bottom:50px;
    }

    .category-banner-grid {
        grid-template-columns:1fr;
        gap:42px;
        align-items:start;
    }

    .explore-panel {
        max-width:540px;
    }

    .section-space {
        padding:74px 0;
    }

    .picture-split-grid {
        grid-template-columns:1fr;
        gap:34px;
    }

    .picture-main-copy {
        order:2;
    }

    .picture-side-card {
        order:1;
    }

    .curated-grid {
        grid-template-columns:1fr 1fr;
    }

    .curate-main {
        grid-column:1 / -1;
        min-height:380px;
    }

    .curate-sub {
        grid-column:span 2;
    }

    .index-side {
        grid-column:1 / -1;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:space-between;
    }

    .faq-grid {
        grid-template-columns:1fr;
    }

    .cta-inner-content {
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-grid {
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:767.98px) {
    .top-info-bar {
        display:none;
    }

    .container-custom {
        padding:0 16px;
    }

    .brand-logo {
        font-size:19px;
    }

    .brand-logo .brand-marker {
        height:28px;
    }

    .main-nav.is-open {
        max-height:76vh;
        overflow-y:auto;
    }

    .category-banner {
        min-height:auto;
        padding-bottom:0;
    }

    .category-banner-content {
        padding:92px 16px 42px;
    }

    .category-page-title {
        font-size:44px;
        margin-bottom:14px;
    }

    .category-lede {
        font-size:15px;
        line-height:1.8;
    }

    .hero-tags {
        gap:8px;
    }

    .tag-chip {
        font-size:12px;
        padding:7px 11px;
    }

    .explore-panel {
        padding:20px;
        border-radius:18px;
    }

    .section-space {
        padding:58px 0;
    }

    .section-space-sm {
        padding:48px 0;
    }

    .section-heading {
        font-size:30px;
    }

    .step-rail {
        grid-template-columns:1fr;
    }

    .step-card {
        padding:22px 18px;
    }

    .light-card-grid {
        grid-template-columns:1fr;
    }

    .light-card {
        padding:24px 20px;
    }

    .picture-poster img {
        height:340px;
    }

    .poster-caption h3 {
        font-size:19px;
    }

    .curated-grid {
        grid-template-columns:1fr;
    }

    .curate-main {
        grid-column:auto;
        min-height:320px;
        padding:22px;
    }

    .curate-sub {
        grid-column:auto;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:14px;
    }

    .index-side {
        grid-column:auto;
    }

    .faq-list {
        gap:10px;
    }

    .faq-button {
        padding:16px 16px;
        font-size:15px;
    }

    .faq-answer {
        padding:0 16px 17px;
    }

    .cta-inner-content {
        padding:52px 0;
        gap:22px;
    }

    .cta-heading {
        font-size:30px;
    }

    .cta-actions .btn-amber,
    .cta-actions .btn-outline {
        width:100%;
    }

    .footer-grid {
        grid-template-columns:1fr;
        gap:34px;
    }

    .footer-bottom-inner {
        flex-direction:column;
    }
}

@media (max-width:520px) {
    .brand-logo {
        font-size:17px;
    }

    .brand-logo .brand-marker {
        width:7px;
        height:24px;
    }

    .header-cta {
        display:none;
    }

    .category-page-title {
        font-size:36px;
    }

    .section-heading {
        font-size:26px;
    }

    .curate-sub {
        grid-template-columns:1fr;
    }

    .sub-card {
        padding:15px;
    }

    .footer-grid {
        gap:26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto;
    }
}
