/* roulang page: index */
:root {
            --pri: #14213D;
            --pri-deep: #0B1322;
            --gold: #C9A24B;
            --gold-light: #E3C878;
            --bg: #F5F2EB;
            --card: #FFFFFF;
            --sec-bg: #EEE9E1;
            --text: #20242E;
            --muted: #5B6472;
            --weak: #8A93A5;
            --line: #E3DFD6;
            --danger: #CE3B3B;
            --success: #2F7D5C;
            --info: #3B6BA5;
            --radius: 10px;
            --radius-sm: 6px;
            --shadow: 0 2px 6px rgba(20,33,61,0.06);
            --shadow-hover: 0 12px 32px rgba(20,33,61,0.12);
            --ease: cubic-bezier(0.33, 0, 0.2, 1);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s var(--ease);
        }

        a:hover {
            color: var(--gold);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            background: none;
            outline: none;
        }

        .container {
            max-width: 1200px;
            padding-left: 24px;
            padding-right: 24px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .container {
                max-width: 720px;
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        @media (max-width: 767px) {
            .container {
                max-width: 100%;
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ===== Buttons ===== */
        .btn-gold,
        .btn-outline-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 24px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s var(--ease);
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--pri);
            border: 1px solid var(--gold);
        }

        .btn-gold:hover {
            background: #d8b45f;
            border-color: #d8b45f;
            color: var(--pri);
            box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
        }

        .btn-gold:active {
            transform: translateY(1px);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
        }

        .btn-outline-gold:hover {
            background: var(--gold);
            color: var(--pri);
        }

        .btn-lg {
            height: 48px;
            padding: 0 32px;
            font-size: 16px;
        }

        .btn-sm {
            height: 36px;
            padding: 0 18px;
            font-size: 14px;
        }

        .btn-disabled,
        .btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* ===== Header Top ===== */
        .site-header {
            position: relative;
            z-index: 1030;
        }

        .header-top {
            background: var(--pri);
            height: 64px;
            display: flex;
            align-items: center;
        }

        .header-top .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .brand-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-text {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .header-search {
            flex: 1;
            max-width: 260px;
            margin-left: 40px;
            transition: max-width 0.3s var(--ease);
        }

        .header-search:focus-within {
            max-width: 300px;
        }

        .search-form {
            position: relative;
        }

        .search-form i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--weak);
            font-size: 14px;
        }

        .search-form input {
            width: 100%;
            height: 36px;
            background: #1F2C45;
            border: 1px solid #2A3A57;
            border-radius: var(--radius-sm);
            padding-left: 38px;
            padding-right: 14px;
            color: #F7F7FA;
            font-size: 14px;
            transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
        }

        .search-form input::placeholder {
            color: #7a8395;
        }

        .search-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .search-toggle {
            color: var(--gold-light);
            font-size: 18px;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            display: none;
            align-items: center;
            justify-content: center;
            transition: background 0.25s var(--ease);
        }

        .search-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .btn-login {
            height: 34px;
            padding: 0 20px;
            border-radius: var(--radius-sm);
            background: var(--gold);
            color: var(--pri);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.25s var(--ease);
        }

        .btn-login:hover {
            background: var(--gold-light);
            color: var(--pri);
            box-shadow: 0 4px 12px rgba(201, 162, 75, 0.3);
        }

        /* ===== Channel Nav ===== */
        .channel-nav {
            background: #FFFFFF;
            border-bottom: 1px solid var(--line);
            position: sticky;
            top: 0;
            z-index: 1020;
            box-shadow: 0 2px 8px rgba(20, 33, 61, 0.04);
        }

        .channel-scroll {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 10px;
            padding-bottom: 10px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            white-space: nowrap;
        }

        .channel-scroll::-webkit-scrollbar {
            display: none;
        }

        .channel-pill {
            display: inline-flex;
            align-items: center;
            height: 32px;
            padding: 0 18px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            background: transparent;
            transition: all 0.25s var(--ease);
            flex-shrink: 0;
        }

        .channel-pill:hover {
            background: #F0EDE6;
            color: var(--pri);
        }

        .channel-pill.active {
            background: var(--gold);
            color: var(--pri);
            font-weight: 600;
        }

        /* ===== Mobile Search Overlay ===== */
        .mobile-search-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1090;
            background: var(--pri);
            padding: 16px;
        }

        .mobile-search-overlay .search-form input {
            height: 44px;
            font-size: 15px;
        }

        .mobile-search-overlay .close-search {
            position: absolute;
            right: 16px;
            top: 16px;
            color: #fff;
            font-size: 18px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            background: linear-gradient(100deg, var(--pri) 0%, var(--pri-deep) 50%, rgba(11, 19, 34, 0.25) 100%), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
            min-height: 560px;
            display: flex;
            align-items: center;
            padding: 80px 0 60px;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.05);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.96);
            color: var(--pri);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .hero-badge .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--danger);
            animation: pulse 1.4s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(206, 59, 59, 0.6);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(206, 59, 59, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(206, 59, 59, 0);
            }
        }

        .hero-content h1 {
            font-size: 34px;
            line-height: 44px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #FFFFFF;
            margin-bottom: 16px;
            animation: slideIn 0.6s var(--ease) both;
        }

        .hero-sub {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 32px;
            max-width: 560px;
            animation: slideIn 0.6s 0.1s var(--ease) both;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            animation: slideIn 0.6s 0.15s var(--ease) both;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(12px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-scroll-down {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.35);
            font-size: 18px;
            animation: bounce 2s infinite;
            z-index: 2;
        }

        @keyframes bounce {
            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(8px);
            }
            60% {
                transform: translateX(-50%) translateY(4px);
            }
        }

        /* ===== Countdown ===== */
        .countdown-section {
            background: var(--pri);
            padding: 72px 0;
            border-top: 1px solid var(--gold);
        }

        .countdown-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .countdown-header h2 {
            font-size: 26px;
            font-weight: 600;
            color: #FFFFFF;
            margin: 0;
        }

        .next-time {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.06);
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(201, 162, 75, 0.4);
        }

        .next-time i {
            color: var(--gold);
        }

        .countdown-grid {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 20px;
            flex-wrap: nowrap;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            padding: 28px 24px;
            min-width: 160px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .countdown-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .count-num {
            font-family: "Inter", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
            font-size: 56px;
            font-weight: 700;
            color: #FFFFFF;
            line-height: 1;
            letter-spacing: -1px;
            transition: color 0.3s var(--ease);
        }

        .count-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 12px;
            letter-spacing: 0.06em;
        }

        .count-sep {
            font-size: 40px;
            color: var(--gold);
            font-weight: 300;
            align-self: center;
            padding-bottom: 30px;
        }

        .countdown-footer {
            text-align: center;
            margin-top: 32px;
        }

        .gold-link {
            color: var(--gold);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s var(--ease);
        }

        .gold-link:hover {
            color: var(--gold-light);
            border-bottom-color: var(--gold-light);
        }

        /* ===== Section Common ===== */
        .section-block {
            padding: 96px 0;
        }

        .section-block.white-bg {
            background: #FFFFFF;
        }

        .section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .section-head h2 {
            font-size: 26px;
            line-height: 36px;
            font-weight: 600;
            margin: 0;
            padding-left: 14px;
            border-left: 3px solid var(--gold);
            color: var(--text);
        }

        .section-more {
            font-size: 14px;
            color: var(--weak);
            transition: color 0.25s var(--ease);
        }

        .section-more:hover {
            color: var(--gold);
        }

        /* ===== Highlights ===== */
        .highlights-list .highlight-item {
            display: flex;
            align-items: center;
            gap: 32px;
            padding: 28px 0;
            border-bottom: 1px solid var(--line);
            transition: background 0.25s var(--ease);
        }

        .highlights-list .highlight-item:first-child {
            border-top: 1px solid var(--line);
        }

        .highlight-num {
            font-size: 30px;
            font-weight: 700;
            color: rgba(201, 162, 75, 0.5);
            min-width: 60px;
            font-family: "Inter", sans-serif;
        }

        .highlight-body {
            flex: 1;
        }

        .highlight-body h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 6px;
            color: var(--text);
        }

        .highlight-body p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin: 0;
        }

        .highlight-arrow {
            color: var(--weak);
            font-size: 18px;
            transition: all 0.25s var(--ease);
        }

        .highlight-item:hover .highlight-arrow {
            color: var(--gold);
            transform: translateX(4px);
        }

        /* ===== Subscribe ===== */
        .subscribe-section {
            background: var(--card);
            padding: 96px 0;
        }

        .subscribe-wrap {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .subscribe-left {
            flex: 1;
            min-width: 300px;
        }

        .subscribe-left h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text);
        }

        .subscribe-left .desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .subscribe-form input {
            flex: 1;
            min-width: 220px;
            height: 44px;
            border: 1px solid #D8D2C8;
            border-radius: var(--radius-sm);
            padding: 0 14px;
            font-size: 14px;
            color: var(--text);
            background: #fff;
            transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
        }

        .subscribe-form input::placeholder {
            color: #A8AFBC;
        }

        .subscribe-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
        }

        .subscribe-success {
            display: none;
            align-items: center;
            gap: 10px;
            background: rgba(47, 125, 92, 0.08);
            border: 1px solid rgba(47, 125, 92, 0.25);
            color: var(--success);
            font-size: 14px;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            margin-top: 16px;
        }

        .subscribe-success.show {
            display: flex;
        }

        .subscribe-right {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qr-placeholder {
            width: 200px;
            height: 200px;
            border: 2px dashed #D8D2C8;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--weak);
            font-size: 14px;
            background: #FAF8F3;
        }

        .qr-tip {
            font-size: 13px;
            color: var(--weak);
            margin-top: 12px;
        }

        /* ===== Entry Cards ===== */
        .entry-section {
            padding: 96px 0;
            background: var(--bg);
        }

        .entry-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .entry-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 40px 32px;
            transition: all 0.25s var(--ease);
            display: flex;
            flex-direction: column;
        }

        .entry-card:hover {
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .entry-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(201, 162, 75, 0.12);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }

        .entry-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text);
        }

        .entry-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 24px;
            flex: 1;
        }

        .entry-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-size: 14px;
            font-weight: 600;
            transition: gap 0.25s var(--ease);
        }

        .entry-link:hover {
            gap: 12px;
            color: var(--gold);
        }

        /* ===== News Cards ===== */
        .news-section {
            padding: 96px 0;
            background: #fff;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .news-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.25s var(--ease);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--gold);
        }

        .news-thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            display: block;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s var(--ease);
        }

        .news-card:hover .news-thumb img {
            transform: scale(1.03);
        }

        .news-cat {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--gold);
            color: var(--pri);
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 999px;
            z-index: 2;
        }

        .news-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-body h3 {
            font-size: 16px;
            line-height: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .news-body h3 a {
            color: var(--text);
            transition: color 0.25s var(--ease);
        }

        .news-body h3 a:hover {
            color: var(--gold);
        }

        .news-body p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 16px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid #F0EDE6;
            font-size: 13px;
            color: var(--weak);
        }

        .news-meta a {
            color: var(--gold);
            font-weight: 500;
            transition: color 0.25s var(--ease);
        }

        .news-meta a:hover {
            color: var(--gold);
        }

        .empty-tip {
            text-align: center;
            color: var(--weak);
            font-size: 14px;
            padding: 40px 0;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 96px 0;
            background: var(--bg);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--line);
            border-radius: 0 !important;
        }

        .accordion-button {
            background: transparent;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            padding: 20px 4px;
            box-shadow: none !important;
            border: none;
            position: relative;
        }

        .accordion-button::after {
            content: '+';
            background: none;
            font-size: 22px;
            font-weight: 300;
            color: var(--gold);
            width: auto;
            height: auto;
            transition: transform 0.3s var(--ease);
            line-height: 1;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
        }

        .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--pri);
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-body {
            padding: 4px 4px 20px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--pri);
            padding: 72px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .cta-section h2 {
            font-size: 28px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .cta-section p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 28px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0E1726;
            color: rgba(255, 255, 255, 0.7);
            padding: 64px 0 0;
        }

        .footer-top {
            border-top: 1px solid var(--gold);
            padding-top: 56px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
        }

        .footer-brand {
            font-size: 22px;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-brand svg {
            flex-shrink: 0;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 0;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 18px;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            transition: color 0.25s var(--ease);
        }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            text-align: center;
        }

        /* ===== Responsive ===== */
        @media (max-width: 991px) {
            .hero {
                min-height: 480px;
                padding: 64px 0 48px;
            }

            .hero-content h1 {
                font-size: 30px;
                line-height: 40px;
            }

            .countdown-grid {
                gap: 12px;
            }

            .countdown-item {
                min-width: 130px;
                padding: 20px 16px;
            }

            .count-num {
                font-size: 42px;
            }

            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 767px) {
            .header-top {
                height: 56px;
            }

            .header-search {
                display: none;
            }

            .search-toggle {
                display: flex;
            }

            .brand-text {
                font-size: 18px;
            }

            .btn-login {
                height: 30px;
                padding: 0 14px;
                font-size: 13px;
            }

            .hero {
                min-height: auto;
                padding: 56px 0 72px;
            }

            .hero-content h1 {
                font-size: 26px;
                line-height: 36px;
            }

            .hero-sub {
                font-size: 15px;
                line-height: 1.6;
            }

            .hero-actions .btn-gold,
            .hero-actions .btn-outline-gold {
                height: 40px;
                padding: 0 18px;
                font-size: 14px;
            }

            .section-block,
            .subscribe-section,
            .entry-section,
            .news-section,
            .faq-section {
                padding: 56px 0;
            }

            .countdown-section {
                padding: 48px 0;
            }

            .countdown-grid {
                gap: 8px;
            }

            .countdown-item {
                min-width: auto;
                min-width: 0;
                flex: 1;
                padding: 16px 8px;
                border-radius: 8px;
            }

            .count-num {
                font-size: 28px;
            }

            .count-label {
                font-size: 12px;
                margin-top: 8px;
            }

            .count-sep {
                font-size: 22px;
                padding-bottom: 30px;
            }

            .countdown-header h2 {
                font-size: 20px;
            }

            .next-time {
                font-size: 13px;
                padding: 4px 10px;
            }

            .highlight-item {
                gap: 16px;
                padding: 20px 0;
            }

            .highlight-num {
                font-size: 24px;
                min-width: 40px;
            }

            .highlight-body h3 {
                font-size: 16px;
            }

            .highlight-body p {
                font-size: 13px;
                line-height: 1.5;
            }

            .subscribe-wrap {
                gap: 40px;
            }

            .subscribe-left {
                min-width: 100%;
            }

            .subscribe-right {
                width: 100%;
            }

            .qr-placeholder {
                width: 180px;
                height: 180px;
            }

            .entry-cards {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .entry-card {
                padding: 28px 24px;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .news-body {
                padding: 16px;
            }

            .section-head h2 {
                font-size: 22px;
            }

            .cta-section {
                padding: 48px 0;
            }

            .cta-section h2 {
                font-size: 22px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                font-size: 12px;
                padding: 16px 0;
            }
        }

        @media (min-width: 1200px) {
            .news-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }

            html {
                scroll-behavior: auto;
            }

            .hero-content h1,
            .hero-sub,
            .hero-actions {
                opacity: 1;
                transform: none;
            }
        }

/* roulang page: category1 */
:root {
  --pri: #14213D;
  --pri-deep: #0B1322;
  --gold: #C9A24B;
  --gold-light: #E3C878;
  --bg: #F5F2EB;
  --bg-sub: #EEE9E1;
  --card: #FFFFFF;
  --text: #20242E;
  --muted: #5B6472;
  --weak: #8A93A5;
  --line: #E3DFD6;
  --shadow: 0 2px 6px rgba(20,33,61,0.06);
  --shadow-lg: 0 12px 32px rgba(20,33,61,0.12);
  --radius: 10px;
  --radius-sm: 6px;
  --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  --font-num: "Inter", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; padding-left: 24px; padding-right: 24px; }

.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all .25s cubic-bezier(0.33,0,0.2,1);
}
.btn-gold { background: var(--gold); color: var(--pri); }
.btn-gold:hover { background: #dbb65f; color: var(--pri); box-shadow: 0 6px 20px rgba(201,162,75,0.3); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--pri); }
.btn-lg { height: 48px; padding: 0 32px; }

.site-header { position: relative; z-index: 1030; }
.header-top { background: var(--pri); height: 64px; }
.header-top .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { display: flex; align-items: center; }
.brand-text {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-search { width: 260px; transition: width .3s ease; }
.search-form { position: relative; }
.search-form i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; color: rgba(255,255,255,0.55); pointer-events: none; }
.search-form input {
  width: 100%;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #1F2C45;
  border: 1px solid #2A3854;
  color: var(--card);
  font-size: 14px;
  padding: 0 14px 0 38px;
  transition: all .25s;
}
.search-form input::placeholder { color: rgba(255,255,255,0.4); }
.search-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); outline: none; background: #17223A; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--pri);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all .25s;
}
.btn-login:hover { background: var(--gold-light); color: var(--pri); box-shadow: 0 4px 12px rgba(201,162,75,0.25); }
.search-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #2A3854;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}
.search-toggle:hover { border-color: var(--gold); color: var(--gold); }

.channel-nav {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.channel-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.channel-scroll::-webkit-scrollbar { display: none; }
.channel-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all .25s;
}
.channel-pill:hover { background: #F0EDE6; color: var(--text); }
.channel-pill.active {
  background: var(--gold);
  color: var(--pri);
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(201,162,75,0.25);
}

.category-hero {
  position: relative;
  background: linear-gradient(100deg, rgba(20,33,61,0.96) 0%, rgba(11,19,34,0.85) 50%, rgba(11,19,34,0.6) 100%), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  color: var(--card);
  padding: 72px 0;
}
.category-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.18); pointer-events: none; }
.category-hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(201,162,75,0.15);
  border: 1px solid rgba(201,162,75,0.4);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.category-hero h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  color: var(--card);
}
.category-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0;
}

.stats-bar { background: var(--card); border-bottom: 1px solid var(--line); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 8px 0; }
.stat-num { font-family: var(--font-num); font-size: 32px; font-weight: 700; color: var(--pri); line-height: 1.2; }
.stat-label { font-size: 13px; color: var(--weak); margin-top: 4px; }

.section-block { padding: 72px 0; }
.section-light { background: var(--bg); }
.section-white { background: var(--card); border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.section-head .bar { width: 3px; height: 22px; background: var(--gold); border-radius: 2px; }
.section-head h2 { font-size: 26px; font-weight: 600; line-height: 1.4; margin: 0; color: var(--text); letter-spacing: -0.3px; }
.section-head .sub { font-size: 14px; color: var(--weak); margin-left: auto; }

.feature-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; align-items: stretch; }
.feature-main { grid-row: span 2; }
.card-custom {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s cubic-bezier(0.33,0,0.2,1), box-shadow .25s;
}
.card-custom:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card-media { overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(0.33,0,0.2,1); }
.card-custom:hover .card-media img { transform: scale(1.03); }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  background: rgba(201,162,75,0.08);
  margin-bottom: 12px;
}
.card-body h3 { font-size: 17px; font-weight: 600; line-height: 1.5; margin: 0 0 10px; color: var(--text); }
.card-body p { font-size: 14px; line-height: 1.8; color: var(--muted); margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pri);
  transition: color .2s;
}
.card-link i { font-size: 12px; transition: transform .2s; }
.card-link:hover { color: var(--gold); }
.card-link:hover i { transform: translateX(4px); }

.feature-main .card-media { height: 300px; }
.feature-side { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 28px; }
.side-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.side-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.side-card .card-media { height: 110px; }
.side-card .card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.side-card .card-body h3 { font-size: 15px; margin-bottom: 6px; }
.side-card .card-body p { font-size: 13px; line-height: 1.6; }

.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}
.check-list li i { color: var(--gold); font-size: 14px; margin-top: 5px; }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.coverage-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.coverage-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.coverage-list { list-style: none; padding: 0; margin: 0; }
.coverage-list li { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.coverage-list li:last-child { border-bottom: none; }
.coverage-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,162,75,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.coverage-info h4 { font-size: 16px; font-weight: 600; margin: 0 0 4px; color: var(--text); }
.coverage-info p { font-size: 14px; color: var(--muted); margin: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-item {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.step-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pri);
  color: var(--gold-light);
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-item h4 { font-size: 16px; font-weight: 600; margin: 0 0 8px; color: var(--text); }
.step-item p { font-size: 13px; line-height: 1.7; color: var(--muted); margin: 0; }

.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 20px; font-weight: 400; color: var(--gold); transition: transform .25s; flex-shrink: 0; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 20px; font-size: 14px; line-height: 1.8; color: var(--muted); }

.cta-section {
  position: relative;
  background: linear-gradient(110deg, rgba(20,33,61,0.97) 0%, rgba(11,19,34,0.88) 60%, rgba(11,19,34,0.75) 100%), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: var(--card);
}
.cta-section h2 { font-size: 28px; font-weight: 700; margin: 0 0 16px; }
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.site-footer {
  background: #0E1726;
  color: rgba(255,255,255,0.58);
  padding: 56px 0 0;
  border-top: 1px solid var(--gold);
  font-size: 14px;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.footer-desc { font-size: 14px; line-height: 1.8; margin: 0; max-width: 300px; }
.footer-col h4 { font-size: 15px; font-weight: 600; color: var(--card); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.58); text-decoration: none; transition: color .2s; font-size: 14px; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 991px) {
  .feature-layout { grid-template-columns: 1fr; }
  .feature-main { grid-row: auto; }
  .feature-main .card-media { height: 260px; }
  .feature-side { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr; gap: 28px; }
  .coverage-img img { height: 280px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .header-search { display: none; }
  .search-toggle { display: inline-flex; }
  .brand-text { font-size: 19px; }
  .channel-scroll { gap: 6px; }
  .channel-pill { padding: 0 14px; font-size: 13px; }
  .category-hero { padding: 56px 0; }
  .category-hero h1 { font-size: 28px; }
  .category-hero p { font-size: 15px; }
  .section-block { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 26px; }
  .feature-side { grid-template-columns: 1fr; }
  .side-card .card-media { height: 160px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 56px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 240px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .search-open .header-search {
    display: block;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--pri);
    padding: 12px 16px;
    z-index: 1050;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* roulang page: article */
/* ===== 设计变量 ===== */
        :root {
            --pri: #14213D;
            --pri-dark: #0B1322;
            --pri-light: #1F2C45;
            --gold: #C9A24B;
            --gold-light: #E3C878;
            --bg: #F5F2EB;
            --bg-secondary: #EEE9E1;
            --white: #FFFFFF;
            --text: #20242E;
            --muted: #5B6472;
            --weak: #8A93A5;
            --line: #E3DFD6;
            --danger: #CE3B3B;
            --success: #2F7D5C;
            --radius: 10px;
            --radius-sm: 6px;
            --shadow-sm: 0 2px 6px rgba(20, 33, 61, 0.06);
            --shadow-hover: 0 12px 32px rgba(20, 33, 61, 0.12);
            --transition: 0.25s cubic-bezier(0.33, 0, 0.2, 1);
            --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
            --bs-primary: var(--pri);
            --bs-link-color: var(--pri);
            --bs-link-hover-color: var(--gold);
            --bs-body-font-family: var(--font-main);
        }

        /* ===== Reset & Base ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }
        ul,
        ol {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* ===== 头部 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: 0 2px 12px rgba(20, 33, 61, 0.10);
        }
        .header-top {
            background: var(--pri);
        }
        .header-top .container {
            min-height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-text {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: var(--gold-light);
            letter-spacing: 0.02em;
        }
        .brand-icon {
            display: flex;
            align-items: center;
        }
        .header-search {
            width: 260px;
            transition: width 0.3s var(--transition);
        }
        .search-form {
            position: relative;
            height: 36px;
        }
        .search-form .fa-search {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--weak);
            font-size: 14px;
            pointer-events: none;
        }
        .search-form input {
            width: 100%;
            height: 100%;
            padding: 0 14px 0 34px;
            background: var(--pri-light);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-sm);
            color: var(--white);
            font-size: 14px;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .search-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .search-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-login {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 34px;
            padding: 0 18px;
            background: var(--gold);
            color: var(--pri);
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            border: 1px solid var(--gold);
        }
        .btn-login:hover {
            background: var(--gold-light);
            border-color: var(--gold-light);
            box-shadow: 0 4px 12px rgba(201, 162, 75, 0.3);
            transform: translateY(-1px);
        }
        .btn-login:active {
            transform: translateY(1px);
        }
        .search-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 18px;
            padding: 6px;
        }

        /* === 移动端搜索 === */
        .mobile-search {
            display: none;
            padding: 0 16px 12px;
            background: var(--pri);
        }
        .mobile-search.open {
            display: block;
        }
        .mobile-search-form {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--pri-light);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-sm);
            padding: 0 12px;
            height: 38px;
        }
        .mobile-search-form i {
            color: var(--weak);
            font-size: 14px;
        }
        .mobile-search-form input {
            flex: 1;
            background: none;
            border: none;
            outline: none;
            color: var(--white);
            font-size: 14px;
        }
        .mobile-search-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .mobile-search-form button {
            background: none;
            border: none;
            color: var(--weak);
            font-size: 16px;
            padding: 4px;
        }

        /* === 频道导航 === */
        .channel-nav {
            background: var(--white);
            border-bottom: 1px solid var(--line);
        }
        .channel-scroll {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 24px;
            min-height: 48px;
            align-items: center;
        }
        .channel-scroll::-webkit-scrollbar {
            display: none;
        }
        .channel-pill {
            display: inline-flex;
            align-items: center;
            height: 32px;
            padding: 0 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            background: transparent;
            border: 1px solid transparent;
            white-space: nowrap;
            transition: all var(--transition);
        }
        .channel-pill:hover {
            background: var(--bg);
            color: var(--pri);
        }
        .channel-pill.active {
            background: var(--gold);
            color: var(--pri);
            font-weight: 600;
            border-color: var(--gold);
        }

        /* === 文章页头 === */
        .article-page-header {
            background: var(--bg);
            border-bottom: 1px solid var(--line);
            padding: 30px 0;
        }
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--weak);
            flex-wrap: wrap;
        }
        .breadcrumb-nav a {
            color: var(--muted);
            transition: color 0.25s;
        }
        .breadcrumb-nav a:hover {
            color: var(--gold);
        }
        .breadcrumb-sep {
            color: var(--line);
        }
        .article-header-tag {
            display: inline-flex;
            align-items: center;
            height: 24px;
            padding: 0 12px;
            background: var(--white);
            border: 1px solid var(--gold);
            border-radius: 999px;
            color: var(--gold);
            font-size: 12px;
            font-weight: 500;
            margin-top: 14px;
        }

        /* === 文章主体 === */
        .article-main {
            padding: 48px 0 32px;
        }
        .article-body {
            max-width: 780px;
            margin: 0 auto;
        }
        .article-title {
            font-size: 30px;
            line-height: 1.4;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text);
            margin-bottom: 16px;
        }
        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: var(--weak);
            padding-bottom: 20px;
            border-bottom: 1px solid var(--line);
            margin-bottom: 28px;
        }
        .meta-dot {
            color: var(--line);
        }

        /* === 正文 === */
        .article-content {
            font-size: 16px;
            line-height: 1.85;
            color: #45536B;
        }
        .article-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            margin: 36px 0 16px;
            padding-left: 12px;
            border-left: 3px solid var(--gold);
        }
        .article-content h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text);
            margin: 28px 0 12px;
        }
        .article-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin: 22px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .article-content img {
            border-radius: 8px;
            margin: 16px 0;
        }
        .article-content blockquote {
            background: var(--bg);
            border-left: 3px solid var(--gold);
            padding: 16px 20px;
            margin: 20px 0;
            border-radius: 0 6px 6px 0;
            color: var(--muted);
            font-size: 15px;
        }
        .article-content a {
            color: var(--pri);
            border-bottom: 1px solid var(--gold);
            transition: color 0.25s;
        }
        .article-content a:hover {
            color: var(--gold);
        }
        .article-content ul {
            margin: 0 0 20px;
            padding-left: 24px;
        }
        .article-content ol {
            margin: 0 0 20px;
            padding-left: 24px;
        }
        .article-content ul li {
            list-style: disc;
            margin-bottom: 8px;
        }
        .article-content ol li {
            list-style: decimal;
            margin-bottom: 8px;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 14px;
        }
        .article-content th,
        .article-content td {
            border: 1px solid var(--line);
            padding: 10px 12px;
            text-align: left;
        }
        .article-content th {
            background: var(--bg);
            font-weight: 600;
        }

        /* === 文章未找到 === */
        .article-not-found {
            padding: 60px 0;
            text-align: center;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
        }
        .article-not-found p {
            font-size: 18px;
            color: var(--weak);
            margin-bottom: 20px;
        }
        .btn-back-home {
            display: inline-flex;
            align-items: center;
            height: 44px;
            padding: 0 24px;
            background: var(--pri);
            color: var(--white);
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition);
        }
        .btn-back-home:hover {
            background: var(--pri-light);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }

        /* === 标签 === */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid var(--line);
        }
        .tag {
            display: inline-flex;
            align-items: center;
            height: 28px;
            padding: 0 14px;
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: 999px;
            font-size: 13px;
            color: var(--muted);
            transition: all var(--transition);
        }
        .tag:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* === 上一篇 / 下一篇 === */
        .prev-next {
            padding: 32px 0;
        }
        .prev-next-grid {
            max-width: 780px;
            margin: 0 auto;
        }
        .pn-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 20px 24px;
            transition: all 0.3s var(--transition);
        }
        .pn-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .pn-label {
            font-size: 13px;
            color: var(--weak);
            margin-bottom: 6px;
        }
        .pn-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
        }
        .pn-prev .pn-label::before {
            content: "← ";
            color: var(--gold);
        }
        .pn-next .pn-label::after {
            content: " →";
            color: var(--gold);
        }
        .pn-next .pn-card {
            text-align: right;
        }

        /* === 相关推荐 === */
        .related-section {
            padding: 56px 0 72px;
            background: var(--white);
            border-top: 1px solid var(--line);
        }
        .section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            max-width: 1140px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 24px;
        }
        .section-head h2 {
            font-size: 26px;
            font-weight: 600;
            position: relative;
            padding-left: 16px;
            color: var(--text);
        }
        .section-head h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 20px;
            background: var(--gold);
            border-radius: 2px;
        }
        .section-more {
            font-size: 14px;
            color: var(--muted);
            transition: color 0.25s;
        }
        .section-more:hover {
            color: var(--gold);
        }
        .related-grid {
            max-width: 1140px;
            margin: 0 auto;
        }
        .related-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s var(--transition);
        }
        .related-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--gold);
        }
        .card-img {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: var(--bg);
        }
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .related-card:hover .card-img img {
            transform: scale(1.03);
        }
        .card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .card-cat {
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            height: 22px;
            padding: 0 10px;
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 999px;
            font-size: 12px;
            margin-bottom: 10px;
        }
        .card-title {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.45;
            color: var(--text);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-summary {
            font-size: 13px;
            line-height: 1.6;
            color: var(--weak);
            margin-bottom: 14px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-date {
            font-size: 13px;
            color: var(--weak);
        }

        /* === CTA === */
        .article-cta {
            position: relative;
            padding: 64px 0;
            background: var(--pri);
            background-size: cover;
            background-position: center;
        }
        .article-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(20, 33, 61, 0.86);
        }
        .article-cta .container {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .article-cta h2 {
            font-size: 28px;
            color: var(--white);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .article-cta p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            margin-bottom: 28px;
        }
        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary,
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            cursor: pointer;
        }
        .btn-primary {
            background: var(--gold);
            color: var(--pri);
            border: 1px solid var(--gold);
        }
        .btn-primary:hover {
            background: var(--gold-light);
            border-color: var(--gold-light);
            box-shadow: 0 6px 18px rgba(201, 162, 75, 0.35);
            transform: translateY(-1px);
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
        }
        .btn-outline:hover {
            background: var(--gold);
            color: var(--pri);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(201, 162, 75, 0.25);
        }

        /* === 返回列表 === */
        .back-list {
            padding: 32px 0 56px;
            text-align: center;
        }
        .btn-back-list {
            display: inline-flex;
            align-items: center;
            height: 42px;
            padding: 0 26px;
            border: 1px solid var(--line);
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--muted);
            background: var(--white);
            transition: all var(--transition);
        }
        .btn-back-list:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }

        /* === 页脚 === */
        .site-footer {
            background: var(--pri-dark);
            color: rgba(255, 255, 255, 0.7);
            border-top: 2px solid var(--gold);
            padding: 64px 0 0;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 14px;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.58);
            max-width: 260px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 16px;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.58);
            transition: color 0.25s;
        }
        .footer-col ul li a:hover {
            color: var(--gold);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 18px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }

        /* === 响应式 === */
        @media (max-width: 1199px) {
            .related-grid {
                max-width: 960px;
            }
            .section-head {
                max-width: 960px;
            }
        }
        @media (max-width: 991px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }
            .header-top .container {
                min-height: 56px;
            }
            .header-search {
                display: none;
            }
            .search-toggle {
                display: block;
            }
            .brand-text {
                font-size: 18px;
            }
            .btn-login {
                height: 30px;
                padding: 0 14px;
                font-size: 13px;
            }
            .channel-scroll {
                padding: 8px 16px;
            }
            .article-page-header {
                padding: 20px 0;
            }
            .article-body {
                max-width: 100%;
            }
            .article-title {
                font-size: 22px;
                line-height: 1.5;
            }
            .article-content {
                font-size: 15px;
            }
            .article-content h2 {
                font-size: 20px;
            }
            .prev-next-grid {
                width: 100%;
            }
            .related-section {
                padding: 40px 0 56px;
            }
            .section-head {
                padding: 0 16px;
                margin-bottom: 20px;
            }
            .section-head h2 {
                font-size: 22px;
            }
            .article-cta {
                padding: 48px 0;
            }
            .article-cta h2 {
                font-size: 22px;
            }
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            .cta-actions a {
                width: 100%;
                max-width: 280px;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .back-list {
                padding: 24px 0 40px;
            }
        }
        @media (max-width: 520px) {
            .article-main {
                padding: 32px 0 24px;
            }
            .article-meta {
                gap: 4px;
                font-size: 12px;
            }
            .article-content p {
                margin-bottom: 16px;
            }
            .pn-card {
                padding: 16px 18px;
            }
            .card-body {
                padding: 16px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
            html {
                scroll-behavior: auto;
            }
        }

/* roulang page: category3 */
:root {
            --pri: #14213D;
            --pri-dark: #0B1322;
            --gold: #C9A24B;
            --gold-light: #E3C878;
            --bg: #F5F2EB;
            --card-bg: #FFFFFF;
            --section-tint: #EEE9E1;
            --text: #20242E;
            --muted: #5B6472;
            --light-muted: #8A93A5;
            --border: #E3DFD6;
            --success: #2F7D5C;
            --info: #3B6BA5;
            --danger: #CE3B3B;
            --radius: 10px;
            --radius-sm: 6px;
            --shadow: 0 2px 6px rgba(20,33,61,0.06);
            --shadow-hover: 0 12px 32px rgba(20,33,61,0.12);
            --ease: cubic-bezier(0.33, 0, 0.2, 1) 0.25s;
            --container-w: 1200px;
        }
        
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            margin: 0;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            font-size: 15px;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--ease);
        }
        
        a:hover {
            color: var(--gold);
        }
        
        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }
        
        .container {
            max-width: var(--container-w);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        
        .site-header {
            width: 100%;
        }
        
        .header-top {
            background: var(--pri);
            height: 64px;
            display: flex;
            align-items: center;
        }
        
        .header-top .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
        }
        
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        
        .brand-icon {
            display: flex;
            align-items: center;
        }
        
        .brand-text {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #E3C878 0%, #C9A24B 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            white-space: nowrap;
        }
        
        .header-search {
            flex: 1;
            max-width: 320px;
            margin: 0 auto;
        }
        
        .search-form {
            display: flex;
            align-items: center;
            background: #1F2C45;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-sm);
            height: 36px;
            padding: 0 12px;
            transition: all 0.3s var(--ease);
            overflow: hidden;
        }
        
        .search-form:focus-within {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
        }
        
        .search-form i {
            color: rgba(255, 255, 255, 0.55);
            font-size: 14px;
            margin-right: 8px;
        }
        
        .search-form input {
            width: 100%;
            background: transparent;
            border: 0;
            outline: 0;
            color: #fff;
            font-size: 14px;
        }
        
        .search-form input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .search-toggle {
            display: none;
            background: transparent;
            border: 0;
            color: rgba(255, 255, 255, 0.75);
            font-size: 18px;
            padding: 6px;
            cursor: pointer;
        }
        
        .search-toggle:focus-visible {
            outline: 2px solid var(--gold);
            border-radius: 4px;
        }
        
        .btn-login {
            display: inline-flex;
            align-items: center;
            height: 34px;
            background: var(--gold);
            color: var(--pri);
            border-radius: var(--radius-sm);
            padding: 0 16px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.25s var(--ease);
        }
        
        .btn-login:hover {
            background: var(--gold-light);
            color: var(--pri-dark);
            box-shadow: 0 4px 14px rgba(201, 162, 75, 0.35);
        }
        
        .channel-nav {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1020;
        }
        
        .channel-scroll {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-top: 6px;
            padding-bottom: 6px;
            white-space: nowrap;
        }
        
        .channel-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .channel-pill {
            display: inline-flex;
            align-items: center;
            height: 34px;
            padding: 0 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            background: transparent;
            transition: all 0.25s var(--ease);
            flex-shrink: 0;
        }
        
        .channel-pill:hover {
            background: #F0EDE7;
            color: var(--pri);
        }
        
        .channel-pill.active {
            background: var(--gold);
            color: var(--pri);
            font-weight: 600;
        }
        
        .channel-pill:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: -1px;
        }
        
        .page-banner {
            position: relative;
            background: linear-gradient(100deg, #14213D 0%, #0B1322 70%, rgba(11, 19, 34, 0.7) 100%), url('/assets/images/backpic/back-1.png') center / cover no-repeat;
            padding: 72px 0 56px;
            color: #fff;
            overflow: hidden;
        }
        
        .page-banner::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.08);
            pointer-events: none;
        }
        
        .page-banner .container {
            position: relative;
            z-index: 1;
        }
        
        .page-banner .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }
        
        .page-banner .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .page-banner .breadcrumb-custom a:hover {
            color: var(--gold-light);
        }
        
        .page-banner .breadcrumb-custom .sep {
            opacity: 0.5;
        }
        
        .page-banner h1 {
            font-size: 34px;
            line-height: 1.3;
            font-weight: 700;
            margin: 0 0 16px;
            letter-spacing: -0.5px;
            color: #fff;
        }
        
        .page-banner .banner-desc {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.78);
            max-width: 640px;
            margin: 0;
        }
        
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold);
            color: var(--pri);
            border-radius: 999px;
            height: 28px;
            padding: 0 14px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .banner-badge .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--danger);
            position: relative;
        }
        
        .banner-badge .live-dot::after {
            content: "";
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: rgba(206, 59, 59, 0.4);
            animation: pulse 1.4s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            70% {
                transform: scale(1.8);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 0;
            }
        }
        
        .section-block {
            padding: 80px 0;
        }
        
        .section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            gap: 16px;
        }
        
        .section-head h2 {
            font-size: 26px;
            line-height: 1.4;
            font-weight: 600;
            margin: 0;
            padding-left: 14px;
            border-left: 3px solid var(--gold);
            letter-spacing: -0.3px;
        }
        
        .section-head .section-more {
            font-size: 14px;
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color var(--ease);
        }
        
        .section-head .section-more:hover {
            color: var(--gold);
        }
        
        .replay-entry-list {
            display: grid;
            gap: 20px;
        }
        
        .replay-entry-btn {
            display: flex !important;
            width: 100%;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 0;
            overflow: hidden;
            cursor: pointer;
            text-align: left;
            transition: all 0.3s var(--ease);
            align-items: stretch;
        }
        
        .replay-entry-btn:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        
        .replay-entry-btn:hover .replay-title {
            color: var(--pri);
        }
        
        .replay-thumb {
            width: 240px;
            min-height: 130px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            border-radius: 0;
            background: var(--pri);
        }
        
        .replay-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            transition: transform 0.4s var(--ease);
        }
        
        .replay-entry-btn:hover .replay-thumb img {
            transform: scale(1.05);
        }
        
        .play-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            background: rgba(20, 33, 61, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            backdrop-filter: blur(4px);
            transition: background 0.3s var(--ease);
        }
        
        .replay-entry-btn:hover .play-badge {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--pri);
        }
        
        .duration-tag {
            position: absolute;
            right: 8px;
            bottom: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 999px;
            letter-spacing: 0.02em;
        }
        
        .replay-info {
            flex: 1;
            padding: 20px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
        }
        
        .replay-cat {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            color: var(--gold);
            border: 1px solid rgba(201, 162, 75, 0.5);
            border-radius: 999px;
            padding: 2px 10px;
            width: fit-content;
            background: rgba(201, 162, 75, 0.06);
        }
        
        .replay-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            transition: color var(--ease);
        }
        
        .replay-meta {
            font-size: 13px;
            color: var(--light-muted);
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .replay-meta i {
            margin-right: 4px;
            font-size: 12px;
        }
        
        .replay-body {
            padding: 20px 24px;
            background: #FAF8F4;
            border-top: 1px solid var(--border);
            font-size: 14px;
            line-height: 1.8;
            color: var(--muted);
        }
        
        .replay-body p {
            margin-bottom: 12px;
        }
        
        .replay-body p:last-child {
            margin-bottom: 0;
        }
        
        .accordion-item {
            border: 0;
            background: transparent;
            margin-bottom: 16px;
        }
        
        .accordion-header {
            margin-bottom: 0;
        }
        
        .accordion-button {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius) !important;
            padding: 0;
            box-shadow: none;
            transition: all 0.3s var(--ease);
            overflow: hidden;
        }
        
        .accordion-button:not(.collapsed) {
            background: #fff;
            border-color: var(--gold);
            box-shadow: 0 8px 24px rgba(20, 33, 61, 0.08);
            color: var(--pri);
        }
        
        .accordion-button.collapsed {
            background: #fff;
            border-color: var(--border);
            color: var(--text);
        }
        
        .accordion-button:hover {
            border-color: var(--gold);
        }
        
        .accordion-button:focus-visible {
            box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
            border-color: var(--gold);
        }
        
        .accordion-button::after {
            display: none;
        }
        
        .accordion-body {
            padding: 0;
            background: transparent;
            border: 1px solid var(--border);
            border-top: 0;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-top: -16px;
            padding-top: 36px;
        }
        
        .replay-body {
            padding: 20px 24px;
            background: #FAF8F4;
            border-top: 1px solid var(--border);
            border-radius: 0 0 var(--radius) var(--radius);
            font-size: 14px;
            line-height: 1.8;
            color: var(--muted);
        }
        
        .btn-primary-milano {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 44px;
            padding: 0 24px;
            background: var(--gold);
            color: var(--pri);
            border: 0;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s var(--ease);
            cursor: pointer;
        }
        
        .btn-primary-milano:hover {
            background: var(--gold-light);
            color: var(--pri-dark);
            box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
        }
        
        .btn-primary-milano:active {
            transform: translateY(1px);
        }
        
        .btn-primary-milano:focus-visible {
            outline: 2px solid var(--pri);
            outline-offset: 2px;
        }
        
        .btn-outline-milano {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 44px;
            padding: 0 24px;
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s var(--ease);
            cursor: pointer;
        }
        
        .btn-outline-milano:hover {
            background: var(--gold);
            color: var(--pri);
            box-shadow: 0 6px 16px rgba(201, 162, 75, 0.25);
        }
        
        .btn-outline-milano:focus-visible {
            outline: 2px solid var(--pri);
            outline-offset: 2px;
        }
        
        .btn-lg {
            height: 48px;
            padding: 0 32px;
            font-size: 16px;
        }
        
        .entry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .entry-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 28px;
            text-align: center;
            transition: all 0.3s var(--ease);
            display: block;
        }
        
        .entry-card:hover {
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .entry-card .entry-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(201, 162, 75, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: var(--gold);
        }
        
        .entry-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--pri);
        }
        
        .entry-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 18px;
        }
        
        .entry-card .entry-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .featured-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s var(--ease);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .featured-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--gold);
        }
        
        .featured-card .thumb {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: var(--pri);
        }
        
        .featured-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s var(--ease);
        }
        
        .featured-card:hover .thumb img {
            transform: scale(1.04);
        }
        
        .featured-card .thumb .play-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            background: rgba(20, 33, 61, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 15px;
            backdrop-filter: blur(3px);
            transition: background 0.3s;
        }
        
        .featured-card:hover .thumb .play-badge {
            background: var(--gold);
            color: var(--pri);
        }
        
        .featured-card .card-body {
            padding: 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        
        .featured-card .card-tag {
            display: inline-flex;
            width: fit-content;
            font-size: 12px;
            color: var(--gold);
            border: 1px solid rgba(201, 162, 75, 0.5);
            border-radius: 999px;
            padding: 2px 10px;
            margin-bottom: 10px;
            background: rgba(201, 162, 75, 0.06);
        }
        
        .featured-card .card-title {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.5;
            color: var(--text);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .featured-card .card-excerpt {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .featured-card .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            font-size: 13px;
            color: var(--light-muted);
            margin-top: auto;
        }
        
        .featured-card .card-meta .read-more {
            color: var(--gold);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        
        .watch-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            counter-reset: step;
        }
        
        .step-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 28px;
            position: relative;
            transition: all 0.3s var(--ease);
        }
        
        .step-item:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-hover);
        }
        
        .step-item .step-num {
            font-size: 36px;
            font-weight: 700;
            color: rgba(201, 162, 75, 0.3);
            line-height: 1;
            margin-bottom: 16px;
        }
        
        .step-item h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--pri);
        }
        
        .step-item p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
        }
        
        .cta-section {
            background: linear-gradient(120deg, #14213D 0%, #0B1322 100%);
            border-top: 1px solid var(--gold);
            border-bottom: 1px solid var(--gold);
            padding: 64px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.png') center / cover no-repeat;
            opacity: 0.08;
            pointer-events: none;
        }
        
        .cta-inner {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
            max-width: 620px;
            margin: 0 auto;
        }
        
        .cta-inner h2 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 14px;
            color: #fff;
        }
        
        .cta-inner p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 28px;
        }
        
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        
        .faq-wrap {
            max-width: 760px;
            margin: 0 auto;
        }
        
        .faq-list .accordion-item {
            background: transparent;
            border: 0;
            border-bottom: 1px solid var(--border);
            border-radius: 0;
            margin-bottom: 0;
            padding: 6px 0;
        }
        
        .faq-list .accordion-button {
            background: transparent;
            border: 0;
            border-radius: 0 !important;
            padding: 16px 40px 16px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            box-shadow: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            width: 100%;
            position: relative;
            text-align: left;
        }
        
        .faq-list .accordion-button:hover {
            border-color: transparent;
            color: var(--pri);
        }
        
        .faq-list .accordion-button::after {
            display: none;
        }
        
        .faq-list .accordion-button .plus-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--gold);
            font-weight: 400;
            transition: transform 0.3s var(--ease);
            margin-left: auto;
        }
        
        .faq-list .accordion-button:not(.collapsed) .plus-icon {
            transform: rotate(45deg);
        }
        
        .faq-list .accordion-collapse {
            border: 0;
        }
        
        .faq-list .accordion-body {
            background: transparent;
            border: 0;
            padding: 0 0 20px;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }
        
        .site-footer {
            background: #0E1726;
            color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid var(--gold);
            padding-top: 56px;
            font-size: 14px;
        }
        
        .site-footer .container {}
        
        .footer-top {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 14px;
        }
        
        .footer-desc {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.55);
            margin: 0;
            max-width: 260px;
        }
        
        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 18px;
            margin-top: 4px;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            transition: color 0.25s;
        }
        
        .footer-col ul li a:hover {
            color: var(--gold-light);
        }
        
        .footer-bottom {
            padding: 24px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
            text-align: center;
        }
        
        @media (max-width: 991.98px) {
            .section-block {
                padding: 64px 0;
            }
            
            .entry-grid,
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .watch-steps {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        
        @media (max-width: 767.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            
            .header-top {
                height: 58px;
            }
            
            .header-search {
                display: none;
                position: absolute;
                top: 64px;
                left: 16px;
                right: 16px;
                z-index: 1100;
                max-width: none;
            }
            
            .header-search.open {
                display: block;
            }
            
            .search-toggle {
                display: block;
            }
            
            .brand-text {
                font-size: 20px;
            }
            
            .page-banner {
                padding: 48px 0 40px;
            }
            
            .page-banner h1 {
                font-size: 28px;
            }
            
            .page-banner .banner-desc {
                font-size: 14px;
                line-height: 1.7;
            }
            
            .section-block {
                padding: 56px 0;
            }
            
            .section-head {
                margin-bottom: 28px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .section-head h2 {
                font-size: 22px;
            }
            
            .replay-thumb {
                width: 130px;
                min-height: 84px;
            }
            
            .replay-info {
                padding: 14px 16px;
                gap: 4px;
            }
            
            .replay-title {
                font-size: 15px;
                line-height: 1.4;
            }
            
            .replay-meta {
                font-size: 12px;
                gap: 6px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .replay-duration-mobile {
                display: inline-flex;
                align-items: center;
                gap: 4px;
            }
            
            .accordion-body {
                margin-top: -14px;
                padding-top: 30px;
            }
            
            .entry-grid,
            .featured-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .watch-steps {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .step-item {
                padding: 22px 20px;
            }
            
            .cta-section {
                padding: 48px 0;
            }
            
            .cta-inner h2 {
                font-size: 22px;
            }
            
            .cta-inner p {
                font-size: 14px;
            }
            
            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            
            .footer-bottom {
                padding: 20px 0;
                font-size: 12px;
            }
            
            .btn-primary-milano,
            .btn-outline-milano {
                height: 40px;
                font-size: 14px;
                padding: 0 20px;
            }
            
            .btn-lg {
                height: 44px;
                padding: 0 24px;
                font-size: 15px;
                width: 100%;
            }
            
            .cta-btns {
                flex-direction: column;
                width: 100%;
            }
            
            .cta-btns .btn-lg {
                width: 100%;
            }
        }
        
        @media (max-width: 575.98px) {
            .replay-thumb {
                width: 108px;
                min-height: 72px;
            }
            
            .play-badge {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            
            .replay-info {
                padding: 12px 12px;
            }
            
            .replay-title {
                font-size: 14px;
            }
            
            .replay-meta {
                font-size: 11px;
            }
            
            .replay-body {
                padding: 16px;
                font-size: 13px;
            }
            
            .replay-entry-btn {
                align-items: flex-start;
            }
            
            .replay-thumb {
                min-width: 108px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        @media (min-width: 768px) and (max-width: 991.98px) {
            .replay-thumb {
                width: 180px;
                min-height: 105px;
            }
        }
        
        @media (min-width: 992px) {
            .header-search {
                max-width: 300px;
            }
            
            .search-form:focus-within {
                max-width: 340px;
            }
        }
        
        .header-search-panel {
            display: none;
            position: absolute;
            top: 64px;
            left: 0;
            right: 0;
            background: var(--pri);
            padding: 16px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
            z-index: 1090;
        }
        
        .header-search-panel.open {
            display: block;
        }
        
        @media (min-width: 768px) {
            .header-search-panel {
                display: none !important;
            }
        }

/* roulang page: category2 */
:root {
            --pri: #14213D;
            --pri-dark: #0B1322;
            --pri-soft: #1F2C45;
            --gold: #C9A24B;
            --gold-light: #E3C878;
            --gold-soft: rgba(201, 162, 75, 0.12);
            --bg: #F5F2EB;
            --bg-soft: #EEE9E1;
            --card-bg: #FFFFFF;
            --text: #20242E;
            --text-main: #45536B;
            --muted: #5B6472;
            --weak: #8A93A5;
            --line: #E3DFD6;
            --line-strong: #D8D2C8;
            --danger: #CE3B3B;
            --success: #2F7D5C;
            --info: #3B6BA5;
            --radius: 10px;
            --radius-sm: 6px;
            --shadow-default: 0 2px 6px rgba(20, 33, 61, 0.06);
            --shadow-hover: 0 12px 32px rgba(20, 33, 61, 0.12);
            --ease: cubic-bezier(0.33, 0, 0.2, 1);
            --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
            --font-num: "Inter", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
            --bs-link-color: #14213D;
            --bs-link-hover-color: #C9A24B;
            --bs-btn-border-radius: 6px;
            --bs-btn-border-radius-lg: 10px;
        }
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-cn);
            font-size: 15px;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
            word-break: break-word;
            -webkit-font-smoothing: antialiased;
        }
        img {
            display: block;
            max-width: 100%;
        }
        a {
            color: var(--pri);
            text-decoration: none;
            transition: color var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
        }
        a:hover {
            color: var(--gold);
        }
        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }
        input {
            font-family: inherit;
            border: none;
            outline: none;
        }
        ::selection {
            background: rgba(201, 162, 75, 0.3);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .section {
            padding: 76px 0;
        }
        @media (max-width: 767px) {
            .section {
                padding: 52px 0;
            }
        }
        .section-head {
            max-width: 760px;
            margin-bottom: 30px;
        }
        .section-head h2 {
            font-size: 26px;
            line-height: 1.4;
            font-weight: 600;
            padding-left: 14px;
            border-left: 3px solid var(--gold);
            margin-bottom: 10px;
            color: var(--text);
        }
        .section-sub {
            font-size: 14px;
            line-height: 1.7;
            color: var(--muted);
            margin: 0;
        }

        .site-header {
            position: relative;
            z-index: 1030;
        }
        .header-top {
            background: var(--pri);
            color: #fff;
        }
        .header-top .container {
            display: flex;
            align-items: center;
            height: 64px;
            gap: 24px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-icon {
            display: flex;
            align-items: center;
        }
        .brand-text {
            font-size: 22px;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
            background: linear-gradient(135deg, #E3C878, #C9A24B);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #E3C878;
        }
        .header-search {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            min-width: 0;
        }
        .search-form {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-form i {
            position: absolute;
            left: 14px;
            font-size: 14px;
            color: var(--weak);
            pointer-events: none;
        }
        .search-form input {
            width: 260px;
            height: 36px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: var(--pri-soft);
            color: #F7F7FA;
            padding: 0 14px 0 38px;
            font-size: 14px;
            transition: width 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
        }
        .search-form input::placeholder {
            color: #A8AFBC;
        }
        .search-form input:focus {
            width: 300px;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .search-toggle {
            display: none;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            font-size: 15px;
            transition: border-color var(--ease), background var(--ease);
        }
        .search-toggle:hover {
            border-color: var(--gold);
        }
        .btn-login {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 34px;
            padding: 0 18px;
            border-radius: var(--radius-sm);
            background: var(--gold);
            color: var(--pri);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.25s var(--ease);
        }
        .btn-login:hover {
            background: #D8B266;
            color: var(--pri-dark);
            box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
            transform: translateY(-1px);
        }
        .channel-nav {
            background: #fff;
            border-bottom: 1px solid var(--line);
            position: sticky;
            top: 0;
            z-index: 1020;
            transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
        }
        .channel-nav.is-scrolled {
            box-shadow: 0 4px 14px rgba(20, 33, 61, 0.08);
            border-bottom-color: transparent;
        }
        .channel-scroll {
            display: flex;
            align-items: center;
            gap: 8px;
            height: 48px;
            overflow-x: auto;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .channel-scroll::-webkit-scrollbar {
            display: none;
        }
        .channel-pill {
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            height: 32px;
            padding: 0 14px;
            border-radius: 999px;
            font-size: 14px;
            color: var(--muted);
            font-weight: 500;
            transition: all 0.25s var(--ease);
        }
        .channel-pill:hover {
            background: var(--bg-soft);
            color: var(--text);
        }
        .channel-pill.active {
            background: var(--gold);
            color: var(--pri);
            font-weight: 600;
        }

        .mobile-search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
            background: rgba(11, 19, 34, 0.96);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .mobile-search-overlay.open {
            display: flex;
        }
        .mobile-search-overlay .search-box {
            width: 100%;
            max-width: 520px;
            display: flex;
            gap: 12px;
        }
        .mobile-search-overlay input {
            flex: 1;
            height: 48px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: var(--pri-soft);
            color: #fff;
            padding: 0 16px;
            font-size: 15px;
        }
        .mobile-search-overlay input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
        }
        .mobile-search-overlay button {
            height: 48px;
            padding: 0 22px;
            border-radius: var(--radius-sm);
            background: var(--gold);
            color: var(--pri);
            font-weight: 600;
            font-size: 15px;
            transition: background 0.25s var(--ease);
        }
        .mobile-search-overlay button:hover {
            background: var(--gold-light);
        }

        .category-hero {
            position: relative;
            overflow: hidden;
            background: var(--bg);
            border-bottom: 1px solid var(--line);
            padding: 64px 0 72px;
        }
        .hero-decor {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .hero-decor img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.12;
            transform: scale(1.03);
        }
        .hero-decor::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--bg) 0%, rgba(245, 242, 235, 0.06) 100%);
        }
        .category-hero .container {
            position: relative;
            z-index: 1;
        }
        .cat-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--pri);
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 6px 14px;
            margin-bottom: 18px;
            box-shadow: 0 1px 4px rgba(20, 33, 61, 0.04);
        }
        .cat-eyebrow .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.16);
        }
        .category-hero h1 {
            font-size: 34px;
            line-height: 1.35;
            font-weight: 700;
            color: var(--pri);
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        .category-hero .lead {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-main);
            max-width: 660px;
            margin: 0;
        }

        .entry-section {
            background: var(--bg);
        }
        .entry-list {
            display: flex;
            flex-direction: column;
            background: transparent;
        }
        .entry-row {
            display: grid;
            grid-template-columns: 44px minmax(0, 1fr) auto 40px;
            gap: 16px;
            align-items: center;
            padding: 22px 8px;
            border-bottom: 1px dashed var(--line-strong);
            transition: background 0.25s var(--ease);
        }
        .entry-row:hover {
            background: rgba(201, 162, 75, 0.08);
        }
        .entry-row:last-child {
            border-bottom: 0;
        }
        .entry-index {
            font-family: var(--font-num);
            font-size: 30px;
            font-weight: 700;
            color: rgba(201, 162, 75, 0.45);
            line-height: 1;
        }
        .entry-title h3 {
            font-size: 17px;
            line-height: 1.4;
            font-weight: 600;
            color: var(--text);
            margin: 0 0 4px;
        }
        .entry-desc {
            font-size: 14px;
            line-height: 1.55;
            color: var(--muted);
            margin: 0;
        }
        .entry-meta {
            font-size: 13px;
            color: var(--weak);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .entry-meta .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 0 3px rgba(47, 125, 92, 0.12);
        }
        .entry-arrow {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            border-radius: 50%;
            color: var(--muted);
            font-size: 13px;
            transition: all 0.25s var(--ease);
        }
        .entry-row:hover .entry-arrow {
            border-color: var(--gold);
            background: var(--gold);
            color: var(--pri);
        }

        .scene-section {
            background: #fff;
            border-bottom: 1px solid var(--line);
        }
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 991px) {
            .scene-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 575px) {
            .scene-grid {
                grid-template-columns: 1fr;
            }
        }
        .scene-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 28px 24px;
            height: 100%;
            transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
        }
        .scene-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(201, 162, 75, 0.55);
        }
        .scene-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: var(--gold-soft);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 18px;
        }
        .scene-card h3 {
            font-size: 17px;
            line-height: 1.4;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }
        .scene-card p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--muted);
            margin: 0;
        }

        .flow-section {
            background: var(--bg-soft);
        }
        .flow-wrap {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 32px;
            align-items: center;
        }
        @media (max-width: 991px) {
            .flow-wrap {
                grid-template-columns: 1fr;
            }
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        @media (max-width: 575px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
        }
        .step-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 26px 20px;
            text-align: center;
            position: relative;
            transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
        }
        .step-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .step-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--pri);
            color: var(--gold-light);
            font-family: var(--font-num);
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        .step-card h3 {
            font-size: 16px;
            line-height: 1.4;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }
        .step-card p {
            font-size: 13px;
            line-height: 1.65;
            color: var(--muted);
            margin: 0;
        }
        .flow-visual {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 14px;
            box-shadow: var(--shadow-default);
        }
        .flow-visual img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-radius: 8px;
        }
        .flow-visual figcaption {
            text-align: center;
            font-size: 13px;
            color: var(--weak);
            padding: 12px 0 4px;
        }

        .security-section {
            background: #fff;
        }
        .security-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (max-width: 767px) {
            .security-list {
                grid-template-columns: 1fr;
            }
        }
        .security-item {
            display: flex;
            gap: 14px;
            padding: 24px;
            background: var(--bg-soft);
            border-radius: var(--radius);
            transition: background 0.25s var(--ease), transform 0.25s var(--ease);
        }
        .security-item:hover {
            background: #E5DFD4;
            transform: translateY(-2px);
        }
        .security-icon {
            flex: 0 0 36px;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--gold-soft);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        .security-item h3 {
            font-size: 15px;
            line-height: 1.35;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
        }
        .security-item p {
            font-size: 13px;
            line-height: 1.6;
            color: var(--muted);
            margin: 0;
        }

        .faq-section {
            background: var(--bg);
        }
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--line);
        }
        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            background: none;
            border: none;
            transition: color 0.25s var(--ease);
        }
        .faq-q:hover {
            color: var(--gold);
        }
        .faq-q i {
            color: var(--gold);
            font-size: 14px;
            transition: transform 0.25s var(--ease);
        }
        .faq-q[aria-expanded="true"] i {
            transform: rotate(45deg);
        }
        .faq-a {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.75;
            padding: 0 0 20px;
        }

        .cta-section {
            background: var(--bg);
            padding-top: 0;
        }
        .cta-box {
            background: var(--pri);
            border-radius: 16px;
            padding: 52px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), transparent 70%);
        }
        .cta-box h2 {
            font-size: 24px;
            line-height: 1.4;
            font-weight: 600;
            margin-bottom: 10px;
            color: #fff;
        }
        .cta-box p {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            max-width: 560px;
            margin: 0 auto 26px;
        }
        .cta-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-main,
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 26px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            border: 1px solid transparent;
            transition: all 0.25s var(--ease);
            cursor: pointer;
        }
        .btn-main {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--pri);
        }
        .btn-main:hover {
            background: #D8B266;
            border-color: #D8B266;
            color: var(--pri-dark);
            box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
            transform: translateY(-1px);
        }
        .btn-ghost {
            background: transparent;
            border-color: var(--gold);
            color: var(--gold);
        }
        .btn-ghost:hover {
            background: var(--gold);
            color: var(--pri);
        }
        .btn-main:active,
        .btn-ghost:active {
            transform: translateY(1px);
        }

        .site-footer {
            background: #0E1726;
            padding-top: 56px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.55fr 1fr 1fr 1fr;
            gap: 36px;
            padding: 0 0 40px;
        }
        @media (max-width: 991px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 575px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 14px;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            max-width: 320px;
            margin: 0;
        }
        .footer-col h4 {
            font-size: 15px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 14px;
        }
        .footer-col li {
            margin-bottom: 10px;
        }
        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            transition: color 0.25s var(--ease);
        }
        .footer-col a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 18px 0;
            color: rgba(255, 255, 255, 0.42);
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        @media (max-width: 767px) {
            .header-search {
                display: none;
            }
            .search-toggle {
                display: inline-flex;
            }
            .header-top .container {
                height: 58px;
                gap: 12px;
            }
            .brand-text {
                font-size: 19px;
            }
            .channel-scroll {
                height: 44px;
            }
            .category-hero {
                padding: 48px 0 52px;
            }
            .category-hero h1 {
                font-size: 28px;
                line-height: 1.35;
            }
            .category-hero .lead {
                font-size: 15px;
            }
            .entry-row {
                grid-template-columns: 28px minmax(0, 1fr) auto;
                gap: 6px 10px;
                padding: 16px 10px;
            }
            .entry-index {
                font-size: 20px;
                grid-row: 1;
            }
            .entry-info {
                grid-column: 2;
                grid-row: 1;
            }
            .entry-meta {
                grid-column: 2;
                grid-row: 2;
                font-size: 12px;
                white-space: normal;
            }
            .entry-arrow {
                grid-column: 3;
                grid-row: 1 / 3;
                width: 32px;
                height: 32px;
            }
            .entry-title h3 {
                font-size: 15px;
            }
            .entry-desc {
                font-size: 13px;
            }
            .cta-box {
                padding: 36px 20px;
                border-radius: 12px;
            }
            .btn-main,
            .btn-ghost {
                height: 40px;
                padding: 0 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 575px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero-decor {
                width: 70%;
            }
            .section-head h2 {
                font-size: 22px;
            }
            .cta-actions {
                flex-direction: column;
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }
            .cta-actions .btn-main,
            .cta-actions .btn-ghost {
                width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
