/* roulang page: index */
:root {
            --color-primary: #121416;
            --color-accent: #D9A441;
            --color-accent-light: #E8B95C;
            --color-bg-warm: #FAF7F2;
            --color-bg-gray: #F0ECE6;
            --color-panel-dark: #1C1E24;
            --color-text-dark: #26282D;
            --color-text-light: #EBE7DF;
            --color-text-secondary-dark: #777A82;
            --color-text-secondary-light: rgba(255, 255, 255, 0.55);
            --color-hot: #E65C4F;
            --radius-xl: 16px;
            --radius-lg: 12px;
            --radius-md: 8px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text-dark);
            background: var(--color-bg-warm);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 200ms ease-out, border-color 200ms ease-out;
        }

        a:hover {
            color: var(--color-accent);
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        .container-global {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--color-accent);
            color: #1a1408;
            font-weight: 700;
            font-size: 16px;
            height: 44px;
            padding: 0 24px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 200ms ease-out;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--color-accent-light);
            color: #1a1408;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(217, 164, 65, 0.30);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            height: 44px;
            padding: 0 24px;
            border: 1.5px solid rgba(255, 255, 255, 0.7);
            border-radius: 8px;
            cursor: pointer;
            transition: all 200ms ease-out;
            white-space: nowrap;
        }

        .btn-outline-light:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            transform: translateY(-2px);
        }

        .btn-outline-light:active {
            transform: translateY(0);
        }

        .btn-outline-light:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #fff;
            height: 72px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: var(--shadow-nav);
        }

        .site-header .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-wrap .logo-icon {
            width: 30px;
            height: 30px;
            color: var(--color-accent);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            color: var(--color-text-dark);
            letter-spacing: -0.2px;
            white-space: nowrap;
        }

        .logo-text .logo-brand {
            color: var(--color-accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-text-dark);
            line-height: 72px;
            border-bottom: 2px solid transparent;
            transition: color 200ms ease-out, border-color 200ms ease-out;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--color-accent);
            border-bottom-color: var(--color-accent);
        }

        .nav-links a.active {
            color: var(--color-accent);
            border-bottom-color: var(--color-accent);
            font-weight: 600;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: var(--color-bg-gray);
            border-radius: 999px;
            height: 40px;
            padding: 0 16px;
            gap: 8px;
            border: 1px solid transparent;
            transition: all 200ms ease-out;
        }

        .search-box:focus-within {
            border-color: var(--color-accent);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15);
        }

        .search-box svg {
            width: 16px;
            height: 16px;
            color: var(--color-text-secondary-dark);
            flex-shrink: 0;
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 14px;
            width: 120px;
            color: var(--color-text-dark);
        }

        .search-box input::placeholder {
            color: var(--color-text-secondary-dark);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
            background: transparent;
            border: none;
            cursor: pointer;
            border-radius: 8px;
            transition: background 200ms ease-out;
        }

        .hamburger:hover {
            background: var(--color-bg-gray);
        }

        .hamburger span {
            width: 20px;
            height: 2px;
            background: var(--color-text-dark);
            border-radius: 2px;
            transition: transform 200ms ease-out, opacity 200ms ease-out;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: #fff;
            z-index: 99;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            padding: 16px 24px 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu .mobile-nav-links a {
            display: block;
            padding: 12px 0;
            font-size: 16px;
            font-weight: 500;
            color: var(--color-text-dark);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .mobile-menu .mobile-nav-links a:hover {
            color: var(--color-accent);
        }

        .mobile-menu .mobile-nav-links a.active {
            color: var(--color-accent);
            font-weight: 600;
        }

        .mobile-menu .search-box {
            margin-top: 16px;
            width: 100%;
        }

        .mobile-menu .search-box input {
            width: 100%;
        }

        .mobile-menu .btn-primary {
            margin-top: 12px;
            width: 100%;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 640px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(18, 20, 22, 0.90) 0%, rgba(18, 20, 22, 0.70) 45%, rgba(18, 20, 22, 0.45) 100%),
                url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -120px;
            right: -80px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(217, 164, 65, 0.14) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 820px;
            padding: 48px 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(217, 164, 65, 0.6);
            color: var(--color-accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 999px;
            background: rgba(217, 164, 65, 0.08);
            letter-spacing: 0.3px;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin: 24px 0 16px;
            letter-spacing: -0.5px;
        }

        .hero-title .keyword {
            color: var(--color-accent);
        }

        .hero-sub {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.75);
            max-width: 560px;
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .stat-item {
            padding: 0 24px;
            text-align: center;
        }

        .stat-item:first-child {
            padding-left: 0;
        }

        .stat-item .stat-num {
            display: block;
            font-size: 28px;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1.2;
        }

        .stat-item .stat-label {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 4px;
        }

        .stat-divider {
            width: 1px;
            height: 36px;
            background: rgba(255, 255, 255, 0.18);
            margin: 0 8px;
        }

        /* ===== 横滑片库 ===== */
        .shelf-section {
            background: #141516;
            padding: 80px 0;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 32px;
        }

        .section-head h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.3;
        }

        .section-head p {
            font-size: 15px;
            margin-top: 8px;
        }

        .section-head.dark h2 {
            color: #fff;
        }

        .section-head.dark p {
            color: rgba(255, 255, 255, 0.55);
        }

        .section-head.light h2 {
            color: var(--color-text-dark);
        }

        .section-head.light p {
            color: var(--color-text-secondary-dark);
        }

        .arrow-btns {
            display: flex;
            gap: 8px;
        }

        .arrow-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #fff;
            transition: all 200ms ease-out;
        }

        .arrow-btn:hover {
            background: var(--color-accent);
            border-color: var(--color-accent);
            color: #1a1408;
        }

        .arrow-btn svg {
            width: 20px;
            height: 20px;
        }

        .shelf-track {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 8px;
        }

        .shelf-track::-webkit-scrollbar {
            display: none;
        }

        .shelf-card {
            flex: 0 0 260px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--color-panel-dark);
            transition: transform 200ms ease-out, box-shadow 200ms ease-out;
            cursor: pointer;
        }

        .shelf-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        .shelf-card .shelf-cover {
            position: relative;
            aspect-ratio: 3 / 4;
            overflow: hidden;
        }

        .shelf-card .shelf-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 300ms ease-out;
        }

        .shelf-card:hover .shelf-cover img {
            transform: scale(1.05);
        }

        .shelf-card .shelf-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
        }

        .shelf-card .shelf-info {
            padding: 14px 16px 16px;
        }

        .shelf-card .shelf-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .shelf-card .shelf-tag {
            display: inline-block;
            font-size: 12px;
            color: var(--color-accent);
            background: rgba(217, 164, 65, 0.12);
            border-radius: 999px;
            padding: 2px 10px;
        }

        /* ===== 热播推荐 ===== */
        .hot-section {
            background: var(--color-bg-warm);
            padding: 80px 0;
        }

        .view-all {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-accent);
            transition: color 200ms ease-out;
        }

        .view-all:hover {
            color: var(--color-accent-light);
        }

        .hot-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .hot-card {
            display: flex;
            gap: 20px;
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 16px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 200ms ease-out;
        }

        .hot-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--color-accent);
        }

        .hot-card-cover {
            position: relative;
            flex-shrink: 0;
            width: 120px;
            border-radius: 8px;
            overflow: hidden;
        }

        .hot-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 3 / 4;
        }

        .hot-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: var(--color-hot);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        .hot-card-info {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .hot-card-info h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text-dark);
            margin-bottom: 8px;
        }

        .hot-card-info p {
            font-size: 14px;
            color: var(--color-text-secondary-dark);
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hot-card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }

        .tag {
            display: inline-block;
            font-size: 12px;
            color: var(--color-accent);
            border: 1px solid rgba(217, 164, 65, 0.4);
            background: rgba(217, 164, 65, 0.06);
            padding: 2px 10px;
            border-radius: 999px;
        }

        .time {
            font-size: 12px;
            color: var(--color-text-secondary-dark);
        }

        /* ===== 片单分区 ===== */
        .list-section {
            background: var(--color-bg-warm);
            padding: 0 0 80px;
        }

        .playlist-block {
            margin-bottom: 64px;
        }

        .playlist-block:last-child {
            margin-bottom: 0;
        }

        .block-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .block-head h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--color-text-dark);
        }

        .block-head .view-all {
            font-size: 13px;
        }

        .poster-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .poster-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 200ms ease-out;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .poster-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--color-accent);
        }

        .poster-cover {
            position: relative;
            aspect-ratio: 3 / 4;
            overflow: hidden;
        }

        .poster-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .poster-info {
            padding: 14px 16px 16px;
        }

        .poster-info h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-text-dark);
            margin-bottom: 6px;
        }

        .poster-info p {
            font-size: 13px;
            color: var(--color-text-secondary-dark);
            line-height: 1.5;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .poster-info .tag {
            font-size: 11px;
        }

        /* 分区2 大卡+三小卡 */
        .featured-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 20px;
        }

        .featured-main {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 200ms ease-out;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .featured-main:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--color-accent);
        }

        .featured-main .poster-cover {
            aspect-ratio: 16 / 10;
        }

        .featured-main .poster-info {
            padding: 20px;
        }

        .featured-main .poster-info h4 {
            font-size: 22px;
        }

        .featured-main .poster-info p {
            font-size: 14px;
        }

        .featured-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mini-card {
            display: flex;
            gap: 14px;
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 12px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 200ms ease-out;
            flex: 1;
        }

        .mini-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--color-accent);
            transform: translateY(-2px);
        }

        .mini-card .mini-cover {
            width: 72px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .mini-card .mini-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 3 / 4;
        }

        .mini-card .mini-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text-dark);
            margin-bottom: 4px;
        }

        .mini-card .mini-info .tag {
            font-size: 11px;
        }

        /* ===== 资讯动态 ===== */
        .news-section {
            background: var(--color-bg-gray);
            padding: 80px 0;
        }

        .news-section .section-head {
            margin-bottom: 24px;
        }

        .news-container {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 8px 24px;
            box-shadow: var(--shadow-card);
        }

        .news-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background 200ms ease-out;
            flex-wrap: wrap;
        }

        .news-row:last-child {
            border-bottom: none;
        }

        .news-row:hover {
            background: rgba(217, 164, 65, 0.03);
        }

        .news-tag {
            flex-shrink: 0;
            font-size: 12px;
            color: var(--color-accent);
            border: 1px solid rgba(217, 164, 65, 0.4);
            background: rgba(217, 164, 65, 0.06);
            padding: 2px 12px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .news-title {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text-dark);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .news-row:hover .news-title {
            color: var(--color-accent);
        }

        .news-date {
            flex-shrink: 0;
            font-size: 14px;
            color: var(--color-text-secondary-dark);
            white-space: nowrap;
        }

        .news-more {
            display: block;
            text-align: center;
            padding: 16px 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--color-accent);
        }

        .news-more:hover {
            color: var(--color-accent-light);
        }

        .empty-state {
            border: 2px dashed rgba(217, 164, 65, 0.4);
            border-radius: var(--radius-xl);
            padding: 48px;
            text-align: center;
            background: #fff;
        }

        .empty-state p {
            font-size: 16px;
            color: var(--color-text-secondary-dark);
            margin-bottom: 12px;
        }

        .empty-state a {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--color-accent);
            border-radius: 999px;
            font-size: 14px;
            color: var(--color-accent);
            transition: all 200ms ease-out;
        }

        .empty-state a:hover {
            background: var(--color-accent);
            color: #1a1408;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--color-primary);
            position: relative;
            padding: 96px 32px;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(217, 164, 65, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section .container-global {
            position: relative;
            z-index: 2;
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 34px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 32px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--color-accent);
            color: #1a1408;
            font-weight: 700;
            font-size: 16px;
            height: 52px;
            padding: 0 40px;
            border-radius: 8px;
            transition: all 200ms ease-out;
        }

        .cta-btn:hover {
            background: var(--color-accent-light);
            color: #1a1408;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(217, 164, 65, 0.35);
        }

        .cta-btn:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }

        .cta-section .cta-note {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 16px;
            margin-bottom: 0;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--color-bg-warm);
            padding: 80px 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 200ms ease-out;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(217, 164, 65, 0.3);
        }

        .faq-item .faq-q {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .faq-item .faq-q-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--color-accent);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .faq-item .faq-q-text {
            font-size: 17px;
            font-weight: 700;
            color: var(--color-text-dark);
            line-height: 1.4;
        }

        .faq-item .faq-a {
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-text-secondary-dark);
            padding-left: 36px;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #14151A;
            color: rgba(255, 255, 255, 0.6);
            padding: 64px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-logo .logo-icon {
            width: 26px;
            height: 26px;
            color: var(--color-accent);
        }

        .footer-logo .logo-text {
            font-size: 18px;
            color: #fff;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.45);
            max-width: 280px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            transition: color 200ms ease-out;
        }

        .footer-links a:hover {
            color: var(--color-accent);
        }

        .footer-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 24px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-bottom .container-global {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }

            .search-box input {
                width: 90px;
            }

            .hot-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .poster-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .featured-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .container-global {
                padding: 0 16px;
            }

            .site-header .header-inner {
                height: 64px;
            }

            .site-header {
                height: 64px;
            }

            .logo-text {
                font-size: 18px;
            }

            .nav-links {
                display: none;
            }

            .header-actions .search-box {
                display: none;
            }

            .header-actions .btn-primary {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                top: 64px;
            }

            .hero {
                min-height: 560px;
            }

            .hero-title {
                font-size: 34px;
            }

            .hero-sub {
                font-size: 16px;
            }

            .hero-stats {
                margin-top: 32px;
            }

            .stat-item {
                padding: 0 12px;
            }

            .stat-item:first-child {
                padding-left: 0;
            }

            .stat-item .stat-num {
                font-size: 22px;
            }

            .stat-divider {
                margin: 0 4px;
            }

            .section-head h2 {
                font-size: 26px;
            }

            .hot-grid {
                grid-template-columns: 1fr;
            }

            .poster-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .cta-section {
                padding: 64px 16px;
            }

            .cta-section h2 {
                font-size: 26px;
            }

            .cta-btn {
                height: 48px;
                width: 100%;
                max-width: 360px;
            }

            .news-row {
                padding: 14px 0;
                flex-wrap: wrap;
            }

            .news-title {
                white-space: normal;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

            .news-date {
                width: 100%;
                padding-left: 0;
                font-size: 12px;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 30px;
            }

            .hero-actions .btn-primary,
            .hero-actions .btn-outline-light {
                width: 100%;
            }

            .shelf-card {
                flex-basis: 220px;
            }

            .hot-card {
                flex-direction: column;
            }

            .hot-card-cover {
                width: 100%;
                aspect-ratio: 16 / 9;
            }

            .hot-card-cover img {
                aspect-ratio: 16 / 9;
            }

            .mini-card {
                padding: 10px;
            }

            .mini-card .mini-cover {
                width: 60px;
            }
        }

/* roulang page: category1 */
:root {
            --black: #121416;
            --gold: #D9A441;
            --gold-light: #E8B95C;
            --warm-bg: #FAF7F2;
            --light-gray: #F0ECE6;
            --panel-dark: #1C1E24;
            --border-light: rgba(0, 0, 0, 0.08);
            --border-dark: rgba(255, 255, 255, 0.1);
            --text-dark: #26282D;
            --text-light: #EBE7DF;
            --text-secondary-dark: #777A82;
            --text-secondary-light: rgba(255, 255, 255, 0.55);
            --hot-red: #E65C4F;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-btn-hover: 0 4px 12px rgba(217, 164, 65, 0.30);
            --transition: all 0.2s ease-out;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            background: var(--warm-bg);
            color: var(--text-dark);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button, input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        .container-global {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #ffffff;
            height: 72px;
            box-shadow: var(--shadow-nav);
            border-bottom: 1px solid var(--border-light);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 24px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 28px;
            height: 28px;
            color: var(--gold);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.3px;
            color: var(--text-dark);
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
            margin: 0 auto;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 8px 2px;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

        .nav-links a.active {
            color: var(--gold);
            font-weight: 700;
        }

        .nav-links a.active::after {
            transform: scaleX(1);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .header-search {
            display: flex;
            align-items: center;
            background: var(--light-gray);
            border-radius: 999px;
            padding: 0 14px;
            height: 40px;
            width: 220px;
            gap: 8px;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .header-search:focus-within {
            background: #ffffff;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15);
        }

        .header-search svg {
            width: 16px;
            height: 16px;
            color: var(--text-secondary-dark);
            flex-shrink: 0;
        }

        .header-search input {
            background: transparent;
            border: none;
            outline: none;
            font-size: 14px;
            width: 100%;
            color: var(--text-dark);
        }

        .header-search input::placeholder {
            color: var(--text-secondary-dark);
        }

        .btn-access {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gold);
            color: var(--text-dark);
            font-size: 15px;
            font-weight: 700;
            height: 40px;
            padding: 0 20px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-access:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-btn-hover);
        }

        .btn-access:active {
            transform: translateY(0);
        }

        .btn-access:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: transparent;
            border-radius: var(--radius-sm);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 72px;
            left: 0;
            right: 0;
            background: #ffffff;
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-nav);
            padding: 24px;
            z-index: 99;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu .nav-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            margin: 0 0 20px;
        }

        .mobile-menu .nav-links a {
            display: block;
            font-size: 17px;
            padding: 6px 0;
        }

        .mobile-menu .header-search {
            width: 100%;
            margin-bottom: 16px;
        }

        .mobile-menu .btn-access {
            width: 100%;
        }

        /* ===== Category Hero ===== */
        .category-hero {
            position: relative;
            background: #121416 url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 96px 0;
            overflow: hidden;
        }

        .category-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(18, 20, 22, 0.92) 0%, rgba(18, 20, 22, 0.78) 45%, rgba(18, 20, 22, 0.55) 100%);
            z-index: 1;
        }

        .category-hero .container-global {
            position: relative;
            z-index: 2;
        }

        .category-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--gold);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--gold);
            background: rgba(217, 164, 65, 0.08);
            margin-bottom: 20px;
        }

        .category-hero-tag .dot {
            width: 6px;
            height: 6px;
            background: var(--hot-red);
            border-radius: 50%;
        }

        .category-hero h1 {
            font-size: 44px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .category-hero p.sub {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.78);
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .category-hero-stats {
            display: flex;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            padding: 0 28px;
            position: relative;
        }

        .hero-stat:first-child {
            padding-left: 0;
        }

        .hero-stat + .hero-stat::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 36px;
            background: rgba(255, 255, 255, 0.25);
        }

        .hero-stat .num {
            font-size: 28px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1.2;
        }

        .hero-stat .lbl {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        /* ===== Section Common ===== */
        .section-block {
            padding: 72px 0;
        }

        .section-title-wrap {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            gap: 20px;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .section-title::before {
            content: "";
            width: 4px;
            height: 28px;
            background: var(--gold);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .section-sub {
            font-size: 14px;
            color: var(--text-secondary-dark);
            margin-top: 6px;
        }

        .section-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary-dark);
            white-space: nowrap;
            transition: var(--transition);
        }

        .section-link:hover {
            color: var(--gold);
        }

        .section-link svg {
            width: 16px;
            height: 16px;
        }

        /* ===== Featured Card ===== */
        .featured-zone {
            background: var(--warm-bg);
            padding: 64px 0 0;
        }

        .featured-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--panel-dark);
            min-height: 340px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }

        .featured-card:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .featured-card .featured-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .featured-card .featured-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 100%);
        }

        .featured-card .featured-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-content {
            position: relative;
            z-index: 1;
            padding: 40px 44px;
            max-width: 620px;
        }

        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--hot-red);
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            border-radius: 999px;
            padding: 4px 12px;
            margin-bottom: 14px;
        }

        .featured-content h3 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-light);
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .featured-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .featured-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(217, 164, 65, 0.6);
            color: var(--gold);
            font-size: 12px;
            font-weight: 600;
            border-radius: 999px;
            padding: 3px 12px;
            background: rgba(217, 164, 65, 0.08);
        }

        .tag-pill-dark {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(217, 164, 65, 0.12);
        }

        /* ===== Poster Grid ===== */
        .poster-grid-zone {
            background: var(--warm-bg);
            padding: 56px 0 72px;
        }

        .poster-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px 24px;
        }

        .poster-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .poster-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            box-shadow: var(--shadow-card-hover);
        }

        .poster-cover {
            position: relative;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            background: var(--light-gray);
        }

        .poster-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .poster-card:hover .poster-cover img {
            transform: scale(1.05);
        }

        .poster-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 45%);
            pointer-events: none;
        }

        .poster-rank {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: var(--gold);
            color: var(--text-dark);
            font-size: 13px;
            font-weight: 800;
            border-radius: 8px;
            padding: 3px 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        }

        .poster-hot {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
            background: var(--hot-red);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            border-radius: 999px;
            padding: 3px 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        }

        .poster-info {
            padding: 16px 18px 18px;
        }

        .poster-info h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 6px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .poster-info p.desc {
            font-size: 13px;
            color: var(--text-secondary-dark);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 12px;
            min-height: 42px;
        }

        .poster-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .poster-meta .tag-pill {
            font-size: 11px;
            padding: 2px 10px;
        }

        .poster-meta .time {
            font-size: 12px;
            color: var(--text-secondary-dark);
            white-space: nowrap;
        }

        /* ===== Ranking Zone ===== */
        .ranking-zone {
            background: var(--light-gray);
            padding: 72px 0;
        }

        .ranking-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .ranking-list {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 28px 32px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
        }

        .ranking-list h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-light);
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .ranking-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .ranking-item:hover {
            padding-left: 8px;
        }

        .ranking-num {
            font-size: 22px;
            font-weight: 800;
            color: var(--gold);
            width: 36px;
            flex-shrink: 0;
            text-align: center;
        }

        .ranking-item .r-info {
            flex: 1;
            min-width: 0;
        }

        .ranking-item .r-info .r-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .ranking-item .r-info .r-cat {
            font-size: 12px;
            color: var(--text-secondary-dark);
            margin-top: 2px;
        }

        .ranking-score {
            font-size: 14px;
            font-weight: 700;
            color: var(--gold);
            flex-shrink: 0;
        }

        /* ===== Features Zone ===== */
        .features-zone {
            background: var(--warm-bg);
            padding: 72px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .feature-item {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 32px 28px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--gold);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(217, 164, 65, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            color: var(--gold);
        }

        .feature-icon svg {
            width: 26px;
            height: 26px;
        }

        .feature-item h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .feature-item p {
            font-size: 14px;
            color: var(--text-secondary-dark);
            line-height: 1.65;
        }

        /* ===== FAQ Zone ===== */
        .faq-zone {
            background: var(--warm-bg);
            padding: 72px 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .faq-item {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 28px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-card-hover);
        }

        .faq-q {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .faq-q .q-mark {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gold);
            color: #ffffff;
            font-size: 14px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-q h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .faq-item p {
            font-size: 14px;
            color: var(--text-secondary-dark);
            line-height: 1.7;
            padding-left: 44px;
        }

        /* ===== CTA Zone ===== */
        .cta-zone {
            background: #121416;
            padding: 88px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta-zone::before {
            content: "";
            position: absolute;
            width: 640px;
            height: 640px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(217, 164, 65, 0.10) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .cta-zone .container-global {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .cta-sub {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .btn-lg {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gold);
            color: var(--text-dark);
            font-size: 17px;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: var(--radius-sm);
            min-height: 52px;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-lg:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-btn-hover);
        }

        .btn-lg:active {
            transform: translateY(0);
        }

        .cta-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 16px;
            letter-spacing: 0.5px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #14151A;
            padding-top: 64px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .footer-logo .logo-icon {
            width: 26px;
            height: 26px;
            color: var(--gold);
        }

        .footer-logo .logo-text {
            color: var(--text-light);
            font-size: 19px;
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.8;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
        }

        .footer-bottom .container-global {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1279px) {
            .container-global {
                padding: 0 24px;
            }

            .nav-links {
                gap: 20px;
            }

            .header-search {
                width: 180px;
            }
        }

        @media (max-width: 1023px) {
            .nav-links {
                display: none;
            }

            .header-search {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .mobile-menu .nav-links {
                display: flex;
            }

            .mobile-menu .header-search {
                display: flex;
            }

            .header-right .btn-access {
                display: none;
            }

            .mobile-menu .btn-access {
                display: inline-flex;
            }

            .poster-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .ranking-grid,
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .category-hero h1 {
                font-size: 36px;
            }

            .cta-title {
                font-size: 28px;
            }
        }

        @media (max-width: 767px) {
            body {
                font-size: 15px;
            }

            .container-global {
                padding: 0 16px;
            }

            .site-header {
                height: 64px;
            }

            .logo-text {
                font-size: 17px;
            }

            .logo-icon {
                width: 24px;
                height: 24px;
            }

            .mobile-menu {
                top: 64px;
            }

            .category-hero {
                padding: 64px 0;
            }

            .category-hero h1 {
                font-size: 30px;
                line-height: 1.3;
            }

            .category-hero p.sub {
                font-size: 15px;
            }

            .hero-stat .num {
                font-size: 22px;
            }

            .hero-stat .lbl {
                font-size: 12px;
            }

            .hero-stat {
                padding: 0 16px;
            }

            .hero-stat:first-child {
                padding-left: 0;
            }

            .section-block {
                padding: 48px 0;
            }

            .section-title {
                font-size: 24px;
            }

            .section-title::before {
                height: 22px;
            }

            .section-title-wrap {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 28px;
            }

            .featured-zone {
                padding-top: 40px;
            }

            .featured-content {
                padding: 28px 24px;
            }

            .featured-content h3 {
                font-size: 20px;
            }

            .poster-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .poster-cover {
                aspect-ratio: 16 / 10;
            }

            .poster-info p.desc {
                -webkit-line-clamp: 1;
                min-height: auto;
                margin-bottom: 8px;
            }

            .ranking-list {
                padding: 20px;
            }

            .ranking-num {
                font-size: 18px;
                width: 28px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .feature-item {
                padding: 24px 20px;
            }

            .faq-item {
                padding: 20px;
            }

            .faq-item p {
                padding-left: 0;
            }

            .faq-q {
                align-items: flex-start;
            }

            .cta-zone {
                padding: 64px 0;
            }

            .cta-title {
                font-size: 24px;
            }

            .cta-sub {
                font-size: 14px;
            }

            .btn-lg {
                width: 100%;
                padding: 14px 20px;
                font-size: 16px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                padding-bottom: 32px;
            }

            .footer-bottom .container-global {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
        }

/* roulang page: article */
:root {
    --color-charcoal: #121416;
    --color-gold: #D9A441;
    --color-gold-light: #E8B95C;
    --color-warm: #FAF7F2;
    --color-gray: #F0ECE6;
    --color-dark: #1C1E24;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);
    --text-dark: #26282D;
    --text-light: #EBE7DF;
    --text-muted-dark: #777A82;
    --text-muted-light: rgba(255, 255, 255, 0.55);
    --color-hot: #E65C4F;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-btn: 0 4px 12px rgba(217, 164, 65, 0.30);
    --transition: 200ms ease-out;
    --container-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: var(--color-warm);
    color: var(--text-dark);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
}

.container-global {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    height: 72px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-nav);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-icon {
    width: 30px;
    height: 30px;
    color: var(--color-gold);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.logo-highlight {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a.active {
    color: var(--color-gold);
    font-weight: 600;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-gray);
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    height: 40px;
    padding: 0 16px;
    width: 220px;
    transition: border-color var(--transition), background var(--transition);
}

.search-box:focus-within {
    border-color: var(--color-gold);
    background: #fff;
}

.search-box svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted-dark);
    flex-shrink: 0;
}

.search-box input {
    background: transparent;
    font-size: 14px;
    width: 100%;
    color: var(--text-dark);
}

.search-box input::placeholder {
    color: var(--text-muted-dark);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-sm);
    box-shadow: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
    color: var(--text-dark);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px 6px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-nav);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 8px;
    z-index: 99;
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: background var(--transition), color var(--transition);
}

.mobile-link:hover {
    background: var(--color-gray);
    color: var(--color-gold);
}

.mobile-link.active {
    color: var(--color-gold);
    background: rgba(217, 164, 65, 0.08);
    font-weight: 600;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-gray);
    border-radius: var(--radius-pill);
    height: 44px;
    padding: 0 16px;
    margin-top: 8px;
    border: 1px solid transparent;
    transition: border-color var(--transition);
}

.mobile-search:focus-within {
    border-color: var(--color-gold);
    background: #fff;
}

.mobile-search svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted-dark);
    flex-shrink: 0;
}

.mobile-search input {
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: var(--text-dark);
}

.btn-mobile {
    width: 100%;
    height: 48px;
    margin-top: 12px;
    font-size: 16px;
}

/* ===== Article Page ===== */
.article-top {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 32px 0 36px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted-dark);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text-muted-dark);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.breadcrumb .separator {
    color: rgba(0, 0, 0, 0.2);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
    max-width: 420px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-title-block {
    max-width: 860px;
}

.article-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
    color: var(--text-muted-dark);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    width: 15px;
    height: 15px;
    color: var(--color-gold);
}

.article-body-section {
    background: var(--color-warm);
    padding: 56px 0 48px;
}

.article-layout {
    max-width: 860px;
    margin: 0 auto;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 1.5em;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text-dark);
    line-height: 1.4;
    border-left: 4px solid var(--color-gold);
    padding-left: 16px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.article-content img {
    border-radius: var(--radius-sm);
    margin: 28px 0;
    width: 100%;
}

.article-content blockquote {
    border-left: 4px solid var(--color-gold);
    background: var(--color-gray);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-size: 16px;
    color: var(--text-muted-dark);
    line-height: 1.7;
}

.article-content ul,
.article-content ol {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.article-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 8px;
    list-style: none;
}

.article-content ul li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

.article-content ol li {
    margin-bottom: 8px;
}

.article-content a {
    color: var(--color-gold);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(217, 164, 65, 0.4);
    text-underline-offset: 3px;
    transition: color var(--transition), text-decoration-color var(--transition);
}

.article-content a:hover {
    color: var(--color-gold-light);
    text-decoration-color: var(--color-gold-light);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.article-content table th {
    background: var(--color-dark);
    color: var(--text-light);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.article-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    background: #fff;
}

.article-empty {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-light);
}

.article-empty .empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-gold);
}

.article-empty h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.article-empty p {
    color: var(--text-muted-dark);
    margin-bottom: 24px;
    font-size: 15px;
}

.article-empty .btn-primary {
    height: 44px;
    padding: 0 28px;
    font-size: 15px;
}

/* Tags */
.article-tags-section {
    background: var(--color-warm);
    padding: 0 0 40px;
}

.article-tags-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.tag:hover {
    background: var(--color-gold);
    color: #fff;
}

/* Prev Next */
.article-pagination-section {
    background: var(--color-warm);
    padding: 8px 0 48px;
}

.pagination-container {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.prev-next-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    min-height: 72px;
}

.prev-next-item:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.prev-next-item.next {
    justify-content: flex-end;
    text-align: right;
}

.prev-next-item .direction {
    display: block;
    font-size: 12px;
    color: var(--text-muted-dark);
    margin-bottom: 4px;
}

.prev-next-item .title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.prev-next-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Related */
.related-section {
    background: var(--color-gray);
    padding: 64px 0;
}

.related-header {
    max-width: 760px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.related-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
    line-height: 1.3;
}

.related-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background: var(--color-gold);
}

.related-header .more-link {
    font-size: 14px;
    color: var(--text-muted-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
}

.related-header .more-link:hover {
    color: var(--color-gold);
}

.related-grid {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-gold);
}

.related-card .related-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-gray);
}

.related-card .related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.related-card:hover .related-img img {
    transform: scale(1.05);
}

.related-card .related-info {
    padding: 16px;
}

.related-card .related-info .tag {
    margin-bottom: 10px;
    padding: 4px 12px;
    font-size: 11px;
    background: rgba(217, 164, 65, 0.08);
}

.related-card .related-info h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA */
.cta-section {
    background: var(--color-charcoal);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    height: 360px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .container-global {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-muted-light);
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    padding: 0 36px;
    border-radius: var(--radius-sm);
    box-shadow: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
    color: var(--text-dark);
}

.cta-note {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.site-footer {
    background: #14151A;
    padding-top: 64px;
    color: var(--text-muted-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 26px;
    height: 26px;
    color: var(--color-gold);
}

.footer-logo .logo-text {
    font-size: 18px;
    color: var(--text-light);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted-light);
    max-width: 360px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-left: 14px;
}

.footer-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: var(--color-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted-light);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-info p {
    font-size: 14px;
    color: var(--text-muted-light);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 20px 0;
}

.footer-bottom .container-global {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    .search-box {
        width: 180px;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container-global {
        padding: 0 20px;
    }
    .site-header {
        height: 64px;
    }
    .nav-links {
        display: none;
    }
    .header-actions .search-box,
    .header-actions .btn-primary {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .article-title {
        font-size: 32px;
    }
    .article-top {
        padding: 24px 0 28px;
    }
    .breadcrumb {
        margin-bottom: 16px;
        font-size: 13px;
    }
    .article-meta {
        gap: 16px;
        font-size: 13px;
    }
    .article-body-section {
        padding: 40px 0 32px;
    }
    .article-content {
        font-size: 16px;
    }
    .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pagination-container {
        grid-template-columns: 1fr;
    }
    .cta-title {
        font-size: 28px;
    }
    .cta-btn {
        width: 100%;
        max-width: 320px;
        height: 48px;
        font-size: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }
    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .related-header h2 {
        font-size: 26px;
    }
    .article-title-block {
        padding: 0;
    }
}

@media (max-width: 520px) {
    .container-global {
        padding: 0 16px;
    }
    .article-title {
        font-size: 27px;
    }
    .related-card .related-img {
        aspect-ratio: 16 / 9;
    }
    .related-card .related-img img {
        object-position: center 30%;
    }
    .mobile-menu {
        padding: 16px 16px 20px;
    }
}

/* roulang page: category2 */
:root {
            --carbon: #121416;
            --amber: #D9A441;
            --amber-light: #E8B95C;
            --warm-white: #FAF7F2;
            --light-gray: #F0ECE6;
            --dark-panel: #1C1E24;
            --border-light: rgba(0, 0, 0, 0.08);
            --border-dark: rgba(255, 255, 255, 0.1);
            --text-dark: #26282D;
            --text-light: #EBE7DF;
            --text-dim: #777A82;
            --text-dim-light: rgba(255, 255, 255, 0.55);
            --hot-red: #E65C4F;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-btn-hover: 0 4px 12px rgba(217, 164, 65, 0.30);
            --transition-base: 200ms ease-out;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--warm-white);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-base);
        }

        a:hover {
            color: var(--amber);
        }

        button,
        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        .container-global {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #ffffff;
            height: 72px;
            box-shadow: var(--shadow-nav);
            border-bottom: 1px solid var(--border-light);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 24px;
            height: 24px;
            color: var(--amber);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            margin: 0 auto;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 8px 2px;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--amber);
        }

        .nav-links a.active {
            color: var(--amber);
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background: var(--amber);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: var(--light-gray);
            border-radius: 999px;
            padding: 0 14px;
            height: 40px;
            width: 220px;
            border: 1px solid transparent;
            transition: all var(--transition-base);
        }

        .search-box:focus-within {
            border-color: var(--amber);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15);
        }

        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            width: 100%;
            font-size: 14px;
            color: var(--text-dark);
            margin-left: 8px;
        }

        .search-box input::placeholder {
            color: var(--text-dim);
        }

        .search-box i {
            color: var(--text-dim);
            font-size: 14px;
        }

        .btn-primary-sm {
            background: var(--amber);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 14px;
            height: 40px;
            padding: 0 20px;
            border-radius: var(--radius-sm);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all var(--transition-base);
            white-space: nowrap;
        }

        .btn-primary-sm:hover {
            background: var(--amber-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-btn-hover);
            color: #1a1a1a;
        }

        .btn-primary-sm:active {
            transform: translateY(-1px);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            font-size: 22px;
            color: var(--text-dark);
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
        }

        .mobile-toggle:hover {
            background: var(--light-gray);
        }

        /* 移动端导航面板 */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: var(--shadow-nav);
            padding: 16px 24px 24px;
            z-index: 99;
            border-bottom: 1px solid var(--border-light);
        }

        .mobile-nav.open {
            display: block;
        }

        .mobile-nav .nav-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            margin: 0 0 16px;
        }

        .mobile-nav .nav-links a {
            display: block;
            width: 100%;
            padding: 12px 0;
            font-size: 16px;
            border-bottom: 1px solid var(--border-light);
        }

        .mobile-nav .nav-links a.active::after {
            display: none;
        }

        .mobile-nav .header-actions {
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
        }

        .mobile-nav .search-box {
            width: 100%;
        }

        .mobile-nav .btn-primary-sm {
            width: 100%;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #14151A;
            color: var(--text-light);
            margin-top: 0;
        }

        .site-footer .container-global {
            padding-top: 56px;
            padding-bottom: 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr;
            gap: 48px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-logo .logo-icon {
            color: var(--amber);
        }

        .footer-logo .logo-text {
            color: var(--text-light);
            font-size: 18px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-dim-light);
            max-width: 320px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--text-dim-light);
            transition: color var(--transition-base);
        }

        .footer-links a:hover {
            color: var(--amber);
        }

        .footer-info p {
            font-size: 14px;
            color: var(--text-dim-light);
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding: 20px 0;
            margin-top: 24px;
        }

        .footer-bottom .container-global {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-dim-light);
        }

        /* ===== 分类页Hero ===== */
        .category-hero {
            background: var(--light-gray);
            padding: 72px 0 56px;
            border-bottom: 1px solid var(--border-light);
        }

        .category-hero-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 860px;
            margin: 0 auto;
        }

        .category-hero h1 {
            font-size: 44px;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .category-hero h1 .highlight {
            color: var(--amber);
        }

        .category-hero p {
            font-size: 17px;
            color: var(--text-dim);
            line-height: 1.7;
            max-width: 640px;
            margin-bottom: 28px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary-lg {
            background: var(--amber);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 16px;
            height: 48px;
            padding: 0 32px;
            border-radius: var(--radius-sm);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all var(--transition-base);
        }

        .btn-primary-lg:hover {
            background: var(--amber-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-btn-hover);
            color: #1a1a1a;
        }

        .btn-secondary-lg {
            background: transparent;
            border: 1.5px solid var(--text-dark);
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
            height: 48px;
            padding: 0 28px;
            border-radius: var(--radius-sm);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all var(--transition-base);
        }

        .btn-secondary-lg:hover {
            border-color: var(--amber);
            color: var(--amber);
            background: rgba(217, 164, 65, 0.06);
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 44px;
            padding-top: 32px;
            border-top: 1px solid var(--border-light);
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stats .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 28px;
            min-width: 120px;
        }

        .hero-stats .stat-item + .stat-item {
            border-left: 1px solid var(--border-light);
        }

        .hero-stats .stat-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--amber);
            line-height: 1.2;
        }

        .hero-stats .stat-label {
            font-size: 13px;
            color: var(--text-dim);
            margin-top: 4px;
        }

        /* ===== 板块标题 ===== */
        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .section-title .bar {
            width: 4px;
            height: 24px;
            background: var(--amber);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .section-title.light h2 {
            color: #fff;
        }

        .section-sub {
            font-size: 14px;
            color: var(--text-dim);
            margin-top: -20px;
            margin-bottom: 32px;
        }

        /* ===== 片单卡片 ===== */
        .playlist-section {
            padding: 64px 0;
            background: var(--warm-white);
        }

        .playlist-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .playlist-main {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .playlist-card {
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            display: flex;
            gap: 20px;
            padding: 16px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
            position: relative;
        }

        .playlist-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--amber);
        }

        .playlist-card .cover-wrap {
            width: 160px;
            height: 120px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--light-gray);
        }

        .playlist-card .cover-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .playlist-card:hover .cover-wrap img {
            transform: scale(1.05);
        }

        .playlist-card .card-body {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .playlist-card .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.4;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hot-badge {
            background: var(--hot-red);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 999px;
            line-height: 1.4;
            white-space: nowrap;
        }

        .playlist-card .card-desc {
            font-size: 14px;
            color: var(--text-dim);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 12px;
            flex: 1;
        }

        .playlist-card .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            background: var(--light-gray);
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-dark);
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
        }

        .tag-pill:hover {
            border-color: var(--amber);
            color: var(--amber);
            background: rgba(217, 164, 65, 0.08);
        }

        .tag-pill.gold {
            border-color: var(--amber);
            color: var(--amber);
            background: rgba(217, 164, 65, 0.08);
        }

        .card-date {
            font-size: 13px;
            color: var(--text-dim);
            margin-left: auto;
        }

        /* ===== 侧边栏 ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: 92px;
        }

        .sidebar-card {
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            padding: 24px;
            border: 1px solid var(--border-light);
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }

        .sidebar-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 32px;
            height: 3px;
            background: var(--amber);
            border-radius: 2px;
        }

        .hot-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .latest-list {
            display: flex;
            flex-direction: column;
        }

        .latest-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition-base);
        }

        .latest-item:last-child {
            border-bottom: none;
        }

        .latest-item:hover {
            background: rgba(217, 164, 65, 0.04);
            margin: 0 -8px;
            padding-left: 8px;
            padding-right: 8px;
            border-radius: 6px;
        }

        .latest-item .thumb {
            width: 48px;
            height: 64px;
            border-radius: 6px;
            object-fit: cover;
            background: var(--light-gray);
            flex-shrink: 0;
        }

        .latest-item .info {
            flex: 1;
            min-width: 0;
        }

        .latest-item .name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .latest-item .type {
            font-size: 12px;
            color: var(--text-dim);
        }

        .latest-item .hot-dot {
            width: 6px;
            height: 6px;
            background: var(--hot-red);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ===== 场景板块 ===== */
        .scenario-section {
            padding: 64px 0;
            background: #fff;
        }

        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .scenario-card {
            background: var(--warm-white);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
            text-align: center;
        }

        .scenario-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--amber);
        }

        .scenario-card .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(217, 164, 65, 0.12);
            color: var(--amber);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 16px;
        }

        .scenario-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .scenario-card p {
            font-size: 14px;
            color: var(--text-dim);
            line-height: 1.6;
        }

        /* ===== 流程 ===== */
        .process-section {
            padding: 64px 0;
            background: var(--light-gray);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            counter-reset: step;
        }

        .process-step {
            text-align: center;
            padding: 32px 24px;
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            position: relative;
            transition: all var(--transition-base);
        }

        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .process-step .step-num {
            width: 44px;
            height: 44px;
            background: var(--amber);
            color: #1a1a1a;
            font-size: 18px;
            font-weight: 800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .process-step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .process-step p {
            font-size: 14px;
            color: var(--text-dim);
            line-height: 1.6;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 64px 0;
            background: var(--warm-white);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faq-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
        }

        .faq-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(217, 164, 65, 0.4);
        }

        .faq-q {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .faq-q .q-mark {
            width: 24px;
            height: 24px;
            background: var(--amber);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .faq-q h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .faq-card .faq-a {
            font-size: 15px;
            color: var(--text-dim);
            line-height: 1.7;
            padding-left: 36px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--carbon);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 600px;
            height: 600px;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(217, 164, 65, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-inner {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-inner h2 {
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .cta-inner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 32px;
        }

        .cta-btn-wrap {
            display: flex;
            justify-content: center;
        }

        .btn-cta {
            background: var(--amber);
            color: #1a1a1a;
            font-size: 17px;
            font-weight: 700;
            height: 52px;
            padding: 0 40px;
            border-radius: var(--radius-sm);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all var(--transition-base);
        }

        .btn-cta:hover {
            background: var(--amber-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-btn-hover);
            color: #1a1a1a;
        }

        .cta-note {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 16px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1279px) {
            .container-global {
                padding: 0 24px;
            }

            .search-box {
                width: 180px;
            }
        }

        @media (max-width: 1023px) {
            .nav-links {
                gap: 20px;
            }

            .search-box {
                width: 140px;
            }

            .playlist-layout {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .scenario-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                grid-template-columns: 1fr;
                max-width: 560px;
                margin: 0 auto;
            }
        }

        @media (max-width: 767px) {
            .container-global {
                padding: 0 16px;
            }

            .site-header {
                height: 64px;
            }

            .header-inner {
                height: 64px;
            }

            .nav-links {
                display: none;
            }

            .header-actions .search-box,
            .header-actions .btn-primary-sm {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .category-hero {
                padding: 48px 0 40px;
            }

            .category-hero h1 {
                font-size: 32px;
            }

            .category-hero p {
                font-size: 15px;
            }

            .section-title h2 {
                font-size: 26px;
            }

            .hero-stats .stat-item {
                padding: 0 16px;
                min-width: 80px;
            }

            .hero-stats .stat-num {
                font-size: 22px;
            }

            .playlist-card {
                flex-direction: column;
                padding: 12px;
            }

            .playlist-card .cover-wrap {
                width: 100%;
                height: 180px;
            }

            .playlist-card .card-desc {
                -webkit-line-clamp: 3;
            }

            .card-date {
                margin-left: 0;
            }

            .sidebar {
                grid-template-columns: 1fr;
            }

            .scenario-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom .container-global {
                flex-direction: column;
                gap: 4px;
                text-align: center;
            }

            .cta-inner h2 {
                font-size: 26px;
            }

            .btn-cta {
                width: 100%;
                max-width: 360px;
                padding: 0 24px;
            }
        }

        @media (max-width: 519px) {
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 280px;
            }

            .hero-buttons .btn-primary-lg,
            .hero-buttons .btn-secondary-lg {
                width: 100%;
            }

            .hero-stats {
                gap: 8px;
            }

            .hero-stats .stat-item {
                padding: 0 10px;
            }
        }

        /* 焦点态 */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--amber);
            outline-offset: 2px;
        }

/* roulang page: category3 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #121416;
    --accent: #D9A441;
    --accent-light: #E8B95C;
    --bg-warm: #FAF7F2;
    --bg-gray: #F0ECE6;
    --panel-dark: #1C1E24;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);
    --text-dark: #26282D;
    --text-light: #EBE7DF;
    --text-muted: #777A82;
    --text-muted-light: rgba(255, 255, 255, 0.55);
    --hot: #E65C4F;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    background: var(--bg-warm);
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button, input, select, textarea { font-family: inherit; outline: none; }
  ul, ol { list-style: none; }

  .container-global {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ========== Header ========== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-nav);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
  }

  .logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 22px;
    height: 22px;
    color: var(--accent);
    display: block;
  }

  .logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  .nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 2px;
    position: relative;
    transition: color 200ms ease-out;
    white-space: nowrap;
  }

  .nav-links a:hover {
    color: var(--accent);
  }

  .nav-links a.active {
    color: var(--accent);
    font-weight: 700;
  }

  .nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .search-box {
    display: flex;
    align-items: center;
    background: var(--bg-gray);
    border-radius: 999px;
    padding: 8px 14px;
    width: 200px;
    gap: 8px;
    border: 1px solid transparent;
    transition: all 200ms ease-out;
  }

  .search-box svg {
    width: 15px;
    height: 15px;
    color: var(--text-muted);
    flex-shrink: 0;
  }

  .search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
    width: 100%;
  }

  .search-box input::placeholder { color: var(--text-muted); }

  .search-box:focus-within {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(217, 164, 65, 0.18);
  }

  .btn-primary {
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    transition: all 200ms ease-out;
    white-space: nowrap;
    min-height: 40px;
    line-height: 1.4;
  }

  .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 164, 65, 0.30);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 200ms ease-out;
  }

  .menu-toggle:hover span {
    background: var(--accent);
  }

  /* ========== Category Hero ========== */
  .category-hero {
    background: var(--bg-gray);
    padding: 72px 0 64px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
  }

  .category-hero-inner {
    max-width: 880px;
  }

  .category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(217, 164, 65, 0.10);
    letter-spacing: 0.3px;
  }

  .category-tag i {
    font-size: 12px;
  }

  .category-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 22px 0 16px;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }

  .brand-gold { color: var(--accent); }
  .accent-word { color: var(--accent); }

  .category-hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 0;
  }

  .category-hero-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .category-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
  }

  .category-hero-meta span i {
    color: var(--accent);
    font-size: 12px;
  }

  /* ========== Section common ========== */
  .section-block { padding: 80px 0; }
  .section-block.bg-white { background: #fff; }
  .section-block.bg-warm { background: var(--bg-warm); }

  .section-title-h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    padding-left: 18px;
    position: relative;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .section-title-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 26px;
    background: var(--accent);
    border-radius: 2px;
  }

  .section-lead {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 720px;
    line-height: 1.8;
  }

  /* ========== Text Image Grid ========== */
  .text-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .text-image-grid.reversed .image-block { order: 2; }
  .text-image-grid.reversed .text-block { order: 1; }

  .text-block p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .text-block p strong {
    color: var(--text-dark);
    font-weight: 600;
  }

  .text-list {
    margin-top: 8px;
  }

  .text-list li {
    padding-left: 22px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
  }

  .text-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }

  .image-block img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 200ms ease-out;
  }

  .image-block:hover img {
    transform: scale(1.01);
  }

  /* ========== Topic Cards ========== */
  .topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .topic-card {
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    transition: all 200ms ease-out;
  }

  .topic-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    background: #fff;
  }

  .topic-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(217, 164, 65, 0.12);
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 18px;
  }

  .topic-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .topic-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ========== Stats ========== */
  .stats-section {
    background: var(--primary);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
  }

  .stats-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.10), transparent 70%);
    top: -200px;
    right: -100px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .stat-label {
    font-size: 15px;
    color: var(--text-muted-light);
    margin-top: 8px;
    letter-spacing: 0.3px;
  }

  /* ========== Process ========== */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
  }

  .process-step {
    text-align: center;
    padding: 36px 28px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 200ms ease-out;
  }

  .process-step:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .process-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(217, 164, 65, 0.25);
  }

  .process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ========== Channel Cards ========== */
  .channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .channel-card {
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-light);
    transition: all 200ms ease-out;
  }

  .channel-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    background: #fff;
  }

  .channel-card .channel-img {
    width: 72px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .channel-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .channel-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ========== FAQ ========== */
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1024px;
    margin: 40px auto 0;
  }

  .faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: all 200ms ease-out;
  }

  .faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
  }

  .faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
  }

  .faq-marker {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .faq-answer {
    margin-top: 12px;
    padding-left: 38px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ========== CTA ========== */
  .cta-section {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.12), transparent 70%);
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-section .container-global {
    position: relative;
    z-index: 1;
  }

  .cta-section h2 {
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
  }

  .cta-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    font-size: 16px;
  }

  .btn-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 8px;
    transition: all 200ms ease-out;
    min-height: 52px;
    line-height: 1.4;
  }

  .btn-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 164, 65, 0.30);
  }

  .btn-cta:active {
    transform: translateY(0);
  }

  .cta-note {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
  }

  /* ========== Footer ========== */
  .site-footer {
    background: #14151A;
    color: var(--text-light);
    padding-top: 64px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .footer-logo .logo-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
  }

  .footer-logo .logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-light);
  }

  .footer-desc {
    font-size: 14px;
    color: var(--text-muted-light);
    line-height: 1.7;
    max-width: 320px;
  }

  .footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 14px;
    color: var(--text-muted-light);
    transition: color 200ms ease-out;
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  .footer-info p {
    font-size: 14px;
    color: var(--text-muted-light);
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 20px 0;
  }

  .footer-bottom .container-global {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
  }

  /* ========== Responsive ========== */
  @media (max-width: 1024px) {
    .nav-links {
      gap: 16px;
    }

    .topic-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .channel-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .header-inner {
      height: 64px;
    }

    .search-box {
      display: none;
    }

    .menu-toggle {
      display: flex;
    }

    .nav-links {
      display: none;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: #fff;
      flex-direction: column;
      padding: 16px 24px 24px;
      border-bottom: 1px solid var(--border-light);
      box-shadow: var(--shadow-nav);
      gap: 4px;
      align-items: stretch;
    }

    .nav-links.mobile-open {
      display: flex;
    }

    .nav-links a {
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 16px;
    }

    .nav-links a:last-child {
      border-bottom: none;
    }

    .nav-links a.active::after {
      display: none;
    }

    .nav-links a.active {
      color: var(--accent);
      font-weight: 700;
    }

    .btn-primary {
      padding: 10px 16px;
      font-size: 14px;
      min-height: 40px;
    }

    .category-hero {
      padding: 48px 0 44px;
    }

    .category-hero h1 {
      font-size: 32px;
      line-height: 1.25;
    }

    .category-hero-desc {
      font-size: 15px;
    }

    .category-hero-meta {
      gap: 8px;
    }

    .category-hero-meta span {
      font-size: 12px;
      padding: 5px 12px;
    }

    .section-block {
      padding: 48px 0;
    }

    .section-title-h2 {
      font-size: 26px;
    }

    .text-image-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .text-image-grid.reversed .image-block { order: 1; }
    .text-image-grid.reversed .text-block { order: 2; }

    .topic-grid {
      grid-template-columns: 1fr;
    }

    .stats-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .stat-number {
      font-size: 40px;
    }

    .process-grid {
      grid-template-columns: 1fr;
    }

    .channel-grid {
      grid-template-columns: 1fr;
    }

    .faq-grid {
      grid-template-columns: 1fr;
    }

    .faq-item {
      padding: 20px;
    }

    .cta-section {
      padding: 56px 0;
    }

    .cta-section h2 {
      font-size: 26px;
    }

    .btn-cta {
      padding: 14px 28px;
      font-size: 15px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-bottom: 32px;
    }

    .footer-bottom .container-global {
      flex-direction: column;
      gap: 4px;
      text-align: center;
    }
  }

  @media (max-width: 520px) {
    .container-global {
      padding: 0 16px;
    }

    .logo-text {
      font-size: 17px;
    }

    .category-hero h1 {
      font-size: 28px;
    }

    .section-title-h2 {
      font-size: 24px;
    }
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
    border-radius: 4px;
  }
