/* roulang page: index */
:root {
            --bg-body: #0a0a0e;
            --bg-card: #121218;
            --bg-card-hover: #1a1a24;
            --bg-panel: #161620;
            --primary: #e11d48;
            --primary-hover: #f43f5e;
            --gold: #f59e0b;
            --text-main: #f8fafc;
            --text-muted: #cbd5e1;
            --text-dark: #64748b;
            --border-glow: rgba(255, 255, 255, 0.08);
            --border-active: rgba(225, 29, 72, 0.45);
            --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            font-family: var(--font-sans);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }
        a:hover, a:focus {
            color: var(--primary-hover);
            outline: none;
        }

        .site-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* 顶部帮助文档风格导航栏 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 14, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-glow);
            height: 68px;
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            font-size: 1.18rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 0.02em;
        }
        .brand-badge {
            background: linear-gradient(135deg, var(--primary), #be123c);
            color: #fff;
            font-size: 0.7rem;
            padding: 0.15rem 0.45rem;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 800;
        }
        .search-trigger {
            display: flex;
            align-items: center;
            background: #15151e;
            border: 1px solid var(--border-glow);
            padding: 0.45rem 0.9rem;
            border-radius: 6px;
            color: var(--text-dark);
            font-size: 0.85rem;
            width: 260px;
            justify-content: space-between;
        }
        .kbd-shortcut {
            background: #20202c;
            border: 1px solid rgba(255,255,255,0.1);
            padding: 0.1rem 0.35rem;
            border-radius: 4px;
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }
        .nav-link {
            font-size: 0.92rem;
            color: var(--text-muted);
            padding: 0.35rem 0.6rem;
            border-radius: 4px;
            font-weight: 500;
        }
        .nav-link.active, .nav-link:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-link.active {
            border-bottom: 2px solid var(--primary);
            border-radius: 4px 4px 0 0;
        }
        .header-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .pill-select {
            background: #161622;
            border: 1px solid var(--border-glow);
            color: var(--text-muted);
            font-size: 0.8rem;
            padding: 0.35rem 0.65rem;
            border-radius: 6px;
            cursor: pointer;
        }

        /* 基础卡片系统与回合制视觉隐喻 */
        .game-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            padding: 1.4rem;
            box-shadow: var(--shadow-card);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .game-card:hover {
            transform: translateY(-4px);
            background: var(--bg-card-hover);
            border-color: var(--border-active);
            box-shadow: 0 16px 36px -10px rgba(225, 29, 72, 0.15);
        }
        .rarity-tag {
            display: inline-flex;
            align-items: center;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.2rem 0.55rem;
            border-radius: 4px;
            margin-bottom: 0.8rem;
            width: fit-content;
            letter-spacing: 0.05em;
        }
        .rarity-ssr {
            background: rgba(245, 158, 11, 0.15);
            color: var(--gold);
            border: 1px solid rgba(245, 158, 11, 0.35);
        }
        .rarity-legendary {
            background: rgba(225, 29, 72, 0.15);
            color: var(--primary-hover);
            border: 1px solid rgba(225, 29, 72, 0.35);
        }
        .rarity-elite {
            background: rgba(56, 189, 248, 0.15);
            color: #38bdf8;
            border: 1px solid rgba(56, 189, 248, 0.35);
        }

        /* 属性生命/码率能量槽 */
        .stat-bar-group {
            margin-top: 1rem;
            padding-top: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .stat-item {
            margin-bottom: 0.5rem;
        }
        .stat-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }
        .stat-progress {
            height: 5px;
            background: #22222e;
            border-radius: 999px;
            overflow: hidden;
            display: flex;
        }
        .stat-fill-primary {
            background: linear-gradient(90deg, var(--primary), var(--primary-hover));
        }
        .stat-fill-gold {
            background: linear-gradient(90deg, #d97706, var(--gold));
        }

        /* 通用按钮 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            padding: 0.68rem 1.4rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.92rem;
            border: 1px solid var(--primary-hover);
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--text-main);
            padding: 0.68rem 1.4rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.92rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        /* 板块公用 */
        .content-section {
            padding: 4.2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .section-header {
            margin-bottom: 2.2rem;
        }
        .section-title {
            font-size: 1.85rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.6rem;
            letter-spacing: -0.01em;
        }
        .section-desc {
            font-size: 0.96rem;
            color: var(--text-muted);
            max-width: 820px;
            line-height: 1.7;
        }

        /* 1. Hero 矮版横幅 + 门户紧凑 */
        .hero-banner {
            padding: 3rem 0 2.5rem;
            background: radial-gradient(circle at 80% 20%, rgba(225, 29, 72, 0.12) 0%, transparent 60%);
            border-bottom: 1px solid var(--border-glow);
        }
        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3rem 0.8rem;
            background: rgba(225, 29, 72, 0.1);
            border: 1px solid rgba(225, 29, 72, 0.25);
            border-radius: 999px;
            font-size: 0.82rem;
            color: var(--primary-hover);
            margin-bottom: 1.1rem;
        }
        .hero-h1 {
            font-size: 2.35rem;
            line-height: 1.25;
            font-weight: 800;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        .hero-summary {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 1.6rem;
            max-width: 780px;
            line-height: 1.75;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .hero-data-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--bg-panel);
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            padding: 1rem 1.4rem;
        }
        .hero-data-item h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.15rem;
        }
        .hero-data-item p {
            font-size: 0.78rem;
            color: var(--text-dark);
            margin: 0;
        }

        /* 2. 入口/快查矩阵 */
        .quick-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .portal-entry-card {
            background: #111117;
            border: 1px solid var(--border-glow);
            padding: 1.25rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .portal-entry-card:hover {
            border-color: var(--primary);
            background: #161622;
        }
        .portal-icon {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background: rgba(225, 29, 72, 0.15);
            color: var(--primary-hover);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }
        .portal-entry-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }
        .portal-entry-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* 3. 核心解析矩阵 */
        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        /* 4. 使用场景 */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .scene-card {
            background: #121219;
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            padding: 1.6rem;
        }
        .scene-step-badge {
            font-size: 0.72rem;
            color: var(--gold);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.25);
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 0.75rem;
        }

        /* 5. 播放器卡组工作台 */
        .console-box {
            background: #0d0d12;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            padding: 1.5rem;
            position: relative;
        }
        .console-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 1.2rem;
        }
        .console-screen-mock {
            background: #15151f;
            border-radius: 6px;
            height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1.5rem;
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }
        .screen-top {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-dark);
        }
        .screen-center {
            text-align: center;
        }
        .screen-subtitle-text {
            display: inline-block;
            background: rgba(0, 0, 0, 0.85);
            padding: 0.5rem 1.2rem;
            border-radius: 6px;
            font-size: 1.05rem;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 0.5rem;
        }
        .screen-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(0,0,0,0.5);
            padding: 0.6rem 1rem;
            border-radius: 4px;
            font-size: 0.82rem;
        }

        /* 6. SSR级热播卡牌殿堂 */
        .ssr-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .ssr-card {
            border-top: 3px solid var(--gold);
        }
        .card-meta-line {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-dark);
            margin: 0.6rem 0;
        }

        /* 7. 阶梯战力通行证 */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            align-items: stretch;
        }
        .pricing-card {
            background: #111118;
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            padding: 2rem 1.6rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .pricing-card.featured {
            background: #151522;
            border: 1px solid var(--primary);
            box-shadow: 0 0 25px rgba(225, 29, 72, 0.2);
            position: relative;
        }
        .pricing-ribbon {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 700;
        }
        .price-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-main);
            margin: 1rem 0;
        }
        .pricing-features {
            list-style: none;
            margin: 1.2rem 0 2rem;
            font-size: 0.88rem;
            color: var(--text-muted);
        }
        .pricing-features li {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .pricing-features li::before {
            content: "✓";
            color: var(--primary-hover);
            font-weight: bold;
        }

        /* 8. 资深鉴赏组真实点评阵列 */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.4rem;
        }
        .review-card {
            background: #12121a;
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            padding: 1.4rem;
        }
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
        }
        .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #232332;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary-hover);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .reviewer-meta h5 {
            font-size: 0.95rem;
            margin: 0;
            color: var(--text-main);
        }
        .reviewer-meta span {
            font-size: 0.75rem;
            color: var(--text-dark);
        }

        /* 9. 实时结算动态流 */
        .ticker-bar {
            background: #0d0d14;
            border: 1px solid var(--border-glow);
            border-radius: 6px;
            padding: 0.75rem 1.2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .ticker-tag {
            background: rgba(225, 29, 72, 0.2);
            color: var(--primary-hover);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            margin-right: 0.6rem;
        }

        /* 10. 今日快讯与更新排期 */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 1.5rem;
        }
        .news-major-card {
            background: #13131c;
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            padding: 1.8rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .news-list-side {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }
        .news-item-strip {
            background: #111118;
            border: 1px solid var(--border-glow);
            border-radius: 6px;
            padding: 1rem 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
        }
        .news-item-strip:hover {
            background: #171724;
            border-color: rgba(255,255,255,0.2);
        }
        .news-item-title {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.25rem;
        }
        .news-item-meta {
            font-size: 0.78rem;
            color: var(--text-dark);
        }

        /* 11. 专题聚合多维题材卡组 */
        .topic-matrix-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
        }
        .topic-pill-card {
            background: #12121b;
            border: 1px solid var(--border-glow);
            border-radius: 6px;
            padding: 1.1rem 0.8rem;
            text-align: center;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .topic-pill-card:hover {
            background: #1a1a28;
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        .topic-icon {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }
        .topic-pill-card h4 {
            font-size: 0.88rem;
            margin-bottom: 0.25rem;
            color: var(--text-main);
        }
        .topic-pill-card span {
            font-size: 0.72rem;
            color: var(--text-dark);
        }

        /* 12. 规格参数卡片 */
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            background: #111119;
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            overflow: hidden;
            font-size: 0.88rem;
        }
        .tech-table th, .tech-table td {
            padding: 1rem 1.4rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            text-align: left;
        }
        .tech-table th {
            background: #161622;
            color: var(--text-muted);
            font-weight: 600;
        }
        .tech-table td {
            color: var(--text-main);
        }
        .param-badge {
            background: #20202e;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            color: var(--primary-hover);
        }

        /* 13. FAQ 板块 */
        .faq-accordion {
            border: 1px solid var(--border-glow);
            border-radius: 8px;
            background: #12121a;
            overflow: hidden;
        }
        .faq-row {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1.3rem 1.6rem;
        }
        .faq-row:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .faq-index {
            color: var(--primary);
            font-size: 0.85rem;
            font-family: monospace;
        }
        .faq-answer {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.65;
            padding-left: 1.6rem;
            margin: 0;
        }

        /* 14. 终极开通转化看板 CTA */
        .cta-banner {
            background: linear-gradient(135deg, #18121d 0%, #0d0d12 100%);
            border: 1px solid rgba(225, 29, 72, 0.35);
            border-radius: 12px;
            padding: 3.5rem 2rem;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 40px -10px rgba(225, 29, 72, 0.2);
        }
        .cta-title {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #fff;
        }
        .cta-desc {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 1.8rem;
            line-height: 1.7;
        }

        /* 全局统一页脚 */
        .site-footer {
            background: #08080b;
            border-top: 1px solid var(--border-glow);
            padding: 3.5rem 0 2rem;
            font-size: 0.85rem;
            color: var(--text-dark);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand h4 {
            color: var(--text-main);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.65;
            max-width: 360px;
        }
        .footer-col h5 {
            color: var(--text-main);
            font-size: 0.92rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col li {
            margin-bottom: 0.6rem;
        }
        .footer-col a {
            color: var(--text-muted);
        }
        .footer-col a:hover {
            color: var(--primary-hover);
        }
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-legal-tag {
            font-size: 0.78rem;
            color: var(--text-dark);
        }

        /* 响应式断点控制 */
        @media screen and (max-width: 1024px) {
            .quick-grid, .matrix-grid { grid-template-columns: repeat(2, 1fr); }
            .ssr-grid, .scene-grid, .pricing-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
            .topic-matrix-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .news-layout { grid-template-columns: 1fr; }
        }
        @media screen and (max-width: 640px) {
            .quick-grid, .matrix-grid, .ssr-grid, .scene-grid, .pricing-grid, .review-grid, .topic-matrix-grid {
                grid-template-columns: 1fr;
            }
            .hero-data-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
            .hero-h1 { font-size: 1.8rem; }
            .search-trigger { display: none; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .header-controls { display: none; }
        }

/* roulang page: category1 */
:root {
      --bg-body: #0a0a0e;
      --bg-card: #121218;
      --bg-card-hover: #1a1a24;
      --bg-panel: #161620;
      --primary: #e11d48;
      --primary-hover: #f43f5e;
      --gold: #f59e0b;
      --text-main: #f8fafc;
      --text-muted: #cbd5e1;
      --text-dark: #64748b;
      --border-glow: rgba(255, 255, 255, 0.08);
      --border-active: rgba(225, 29, 72, 0.45);
      --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    body {
      background-color: var(--bg-body);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    a:hover, a:focus {
      color: var(--primary-hover);
      outline: none;
    }

    .site-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* 顶部导航栏 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 10, 14, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-glow);
      height: 68px;
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: 0.02em;
    }
    .brand-badge {
      background: linear-gradient(135deg, var(--primary), #be123c);
      color: #fff;
      font-size: 0.7rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      text-transform: uppercase;
      font-weight: 800;
    }
    .search-trigger {
      display: flex;
      align-items: center;
      background: #15151e;
      border: 1px solid var(--border-glow);
      padding: 0.45rem 0.9rem;
      border-radius: 6px;
      color: var(--text-dark);
      font-size: 0.85rem;
      width: 260px;
      justify-content: space-between;
    }
    .kbd-shortcut {
      background: #20202e;
      border: 1px solid var(--border-glow);
      padding: 0.1rem 0.35rem;
      border-radius: 4px;
      font-size: 0.7rem;
      color: var(--text-muted);
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    .nav-link {
      font-size: 0.92rem;
      color: var(--text-muted);
      padding: 0.35rem 0.6rem;
      border-radius: 4px;
      font-weight: 500;
    }
    .nav-link.active, .nav-link:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.05);
    }
    .nav-link.active {
      border-bottom: 2px solid var(--primary);
      border-radius: 4px 4px 0 0;
    }
    .header-controls {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .pill-select {
      background: #161622;
      border: 1px solid var(--border-glow);
      color: var(--text-muted);
      font-size: 0.8rem;
      padding: 0.35rem 0.65rem;
      border-radius: 6px;
      cursor: pointer;
    }

    /* 布局容器与侧边栏 */
    .docs-layout {
      display: flex;
      gap: 2rem;
      padding-top: 2rem;
      padding-bottom: 4rem;
    }
    .docs-sidebar {
      width: 240px;
      flex-shrink: 0;
      position: sticky;
      top: 90px;
      height: fit-content;
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      padding: 1.2rem;
    }
    .sidebar-title {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-dark);
      margin-bottom: 0.8rem;
      font-weight: 700;
    }
    .sidebar-menu {
      list-style: none;
      margin: 0 0 1.5rem 0;
      padding: 0;
    }
    .sidebar-menu li {
      margin-bottom: 0.35rem;
    }
    .sidebar-menu a {
      display: block;
      font-size: 0.88rem;
      color: var(--text-muted);
      padding: 0.4rem 0.6rem;
      border-radius: 4px;
      border-left: 2px solid transparent;
    }
    .sidebar-menu a:hover, .sidebar-menu a.active {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.04);
      border-left-color: var(--primary);
    }
    .docs-content {
      flex: 1;
      min-width: 0;
    }

    /* 板块共通卡片与样式 */
    .content-box {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      padding: 1.8rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-card);
      position: relative;
    }
    .box-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding-bottom: 0.8rem;
    }
    .box-header h2, .box-header h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .section-badge {
      background: rgba(225, 29, 72, 0.15);
      border: 1px solid rgba(225, 29, 72, 0.4);
      color: var(--primary-hover);
      font-size: 0.72rem;
      padding: 0.15rem 0.5rem;
      border-radius: 4px;
      font-weight: 600;
    }

    /* 1. 分类导头看板 */
    .category-header-pane {
      background: linear-gradient(180deg, #161622 0%, #101016 100%);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      padding: 2.2rem;
      margin-bottom: 2rem;
    }
    .header-tag-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.8rem;
    }
    .cat-h1 {
      font-size: 2rem;
      font-weight: 800;
      margin: 0 0 0.8rem 0;
      color: var(--text-main);
      letter-spacing: -0.01em;
    }
    .cat-summary {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin: 0;
      max-width: 900px;
      line-height: 1.7;
    }
    .meta-metrics {
      display: flex;
      gap: 1.8rem;
      margin-top: 1.4rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .metric-unit {
      display: flex;
      flex-direction: column;
    }
    .metric-val {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--gold);
    }
    .metric-label {
      font-size: 0.78rem;
      color: var(--text-dark);
    }

    /* 2. 多维属性卡牌筛选器 */
    .filter-matrix-pane {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.86rem;
    }
    .filter-row-label {
      width: 80px;
      color: var(--text-dark);
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .filter-chip {
      background: #181824;
      border: 1px solid var(--border-glow);
      color: var(--text-muted);
      padding: 0.25rem 0.7rem;
      border-radius: 4px;
      font-size: 0.82rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-chip:hover {
      border-color: rgba(255, 255, 255, 0.2);
      color: var(--text-main);
    }
    .filter-chip.active {
      background: var(--primary);
      border-color: var(--primary-hover);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(225, 29, 72, 0.4);
    }

    /* 3. 主体卡牌列表区 */
    .media-card {
      background: #14141d;
      border: 1px solid var(--border-glow);
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.25s ease;
      position: relative;
    }
    .media-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-active);
      box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.8);
    }
    .card-thumb {
      width: 100%;
      height: 160px;
      background: #1c1c28;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-thumb-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.15;
      background: radial-gradient(circle, #e11d48 10%, transparent 10%);
      background-size: 12px 12px;
    }
    .card-thumb-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 3px;
      z-index: 2;
    }
    .badge-ssr {
      background: linear-gradient(135deg, #f59e0b, #b45309);
      color: #000;
    }
    .badge-sr {
      background: linear-gradient(135deg, #06b6d4, #0e7490);
      color: #fff;
    }
    .card-duration {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.75);
      font-size: 0.7rem;
      padding: 0.1rem 0.4rem;
      border-radius: 3px;
      color: #cbd5e1;
    }
    .card-info {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .card-meta-line {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }
    .card-title {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 0.6rem;
      color: var(--text-main);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-stats {
      margin-top: auto;
      padding-top: 0.6rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .stat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.72rem;
      color: var(--text-dark);
      margin-bottom: 0.3rem;
    }
    .stat-bar-outer {
      height: 4px;
      background: #252535;
      border-radius: 2px;
      overflow: hidden;
    }
    .stat-bar-inner {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--gold));
      border-radius: 2px;
    }
    .load-more-wrap {
      text-align: center;
      margin-top: 1.8rem;
    }
    .btn-load {
      background: #1a1a26;
      border: 1px solid var(--border-glow);
      color: var(--text-muted);
      padding: 0.75rem 2.4rem;
      border-radius: 6px;
      font-size: 0.9rem;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.25s ease;
    }
    .btn-load:hover {
      background: #222234;
      color: var(--text-main);
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* 4. 字幕制作组荣誉展架 */
    .group-card {
      background: #14141f;
      border: 1px solid var(--border-glow);
      border-radius: 6px;
      padding: 1.4rem;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .group-top {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }
    .group-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #252538;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: var(--primary);
      border: 1px solid rgba(225, 29, 72, 0.3);
    }
    .group-name {
      font-weight: 700;
      font-size: 1rem;
      color: var(--text-main);
    }
    .group-rating {
      color: var(--gold);
      font-size: 0.75rem;
    }
    .group-desc {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
      flex: 1;
    }
    .group-pills {
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
    }
    .group-pill {
      font-size: 0.72rem;
      background: #1d1d2c;
      color: var(--text-dark);
      padding: 0.15rem 0.5rem;
      border-radius: 3px;
    }

    /* 5. 极简排期表 */
    .schedule-table-wrap {
      overflow-x: auto;
    }
    .schedule-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
      text-align: left;
    }
    .schedule-table th {
      background: #181824;
      padding: 0.85rem 1rem;
      color: var(--text-muted);
      font-weight: 600;
      border-bottom: 1px solid var(--border-glow);
    }
    .schedule-table td {
      padding: 0.95rem 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
    }
    .schedule-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
      color: var(--text-main);
    }
    .phase-badge {
      display: inline-block;
      font-size: 0.72rem;
      padding: 0.15rem 0.45rem;
      border-radius: 3px;
      font-weight: 600;
    }
    .phase-ready {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }
    .phase-work {
      background: rgba(245, 158, 11, 0.15);
      color: #f59e0b;
      border: 1px solid rgba(245, 158, 11, 0.3);
    }

    /* 6. 字幕外挂与挂载指南 */
    .docs-guide-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .code-console {
      background: #0d0d12;
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 6px;
      padding: 1rem;
      font-family: monospace;
      font-size: 0.8rem;
      color: #38bdf8;
      line-height: 1.6;
    }
    .guide-step-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .guide-step-item {
      display: flex;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }
    .step-number {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .step-text h4 {
      font-size: 0.92rem;
      margin: 0 0 0.25rem 0;
      color: var(--text-main);
    }
    .step-text p {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.5;
    }

    /* 7. 专区意见与求片入口 */
    .support-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .support-intro {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .form-group {
      margin-bottom: 1rem;
    }
    .form-group label {
      display: block;
      font-size: 0.82rem;
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }
    .form-control {
      width: 100%;
      background: #181824;
      border: 1px solid var(--border-glow);
      border-radius: 5px;
      color: var(--text-main);
      padding: 0.6rem 0.8rem;
      font-size: 0.86rem;
      box-sizing: border-box;
    }
    .form-control:focus {
      border-color: var(--primary);
      outline: none;
      background: #1e1e2d;
    }
    .btn-submit {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 0.65rem 1.6rem;
      border-radius: 5px;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
      transition: all 0.2s ease;
    }
    .btn-submit:hover {
      background: var(--primary-hover);
    }

    /* 页脚 */
    .site-footer {
      background: #07070b;
      border-top: 1px solid var(--border-glow);
      padding: 3.5rem 0 2rem 0;
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 0.8rem;
    }
    .footer-brand p {
      font-size: 0.84rem;
      line-height: 1.7;
      color: var(--text-dark);
      max-width: 360px;
    }
    .footer-col h5 {
      font-size: 0.92rem;
      color: var(--text-main);
      font-weight: 600;
      margin-bottom: 0.9rem;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col li {
      margin-bottom: 0.5rem;
    }
    .footer-col a {
      color: var(--text-dark);
      font-size: 0.84rem;
    }
    .footer-col a:hover {
      color: var(--primary-hover);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal-tag {
      font-size: 0.8rem;
      color: var(--text-dark);
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .docs-sidebar {
        display: none;
      }
      .docs-layout {
        padding-top: 1.5rem;
      }
      .docs-guide-grid, .support-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 640px) {
      .site-header {
        height: auto;
        padding: 0.75rem 0;
      }
      .header-inner {
        flex-wrap: wrap;
        gap: 0.75rem;
      }
      .search-trigger, .header-controls {
        display: none;
      }
      .cat-h1 {
        font-size: 1.45rem;
      }
      .meta-metrics {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
      }
    }

/* roulang page: category2 */
:root {
      --bg-body: #0a0a0e;
      --bg-card: #121218;
      --bg-card-hover: #1a1a24;
      --bg-panel: #161620;
      --primary: #e11d48;
      --primary-hover: #f43f5e;
      --gold: #f59e0b;
      --tier-t0: #ff3366;
      --tier-t1: #f59e0b;
      --tier-t2: #3b82f6;
      --text-main: #f8fafc;
      --text-muted: #cbd5e1;
      --text-dark: #64748b;
      --border-glow: rgba(255, 255, 255, 0.08);
      --border-active: rgba(225, 29, 72, 0.45);
      --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-body);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    a:hover, a:focus {
      color: var(--primary-hover);
      outline: none;
    }

    .site-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* 顶部系统导航栏 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 10, 14, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-glow);
      height: 68px;
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: 0.02em;
    }
    .brand-badge {
      background: linear-gradient(135deg, var(--primary), #be123c);
      color: #fff;
      font-size: 0.7rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      text-transform: uppercase;
      font-weight: 800;
    }
    .search-trigger {
      display: flex;
      align-items: center;
      background: #15151e;
      border: 1px solid var(--border-glow);
      padding: 0.45rem 0.9rem;
      border-radius: 6px;
      color: var(--text-dark);
      font-size: 0.85rem;
      width: 250px;
      justify-content: space-between;
    }
    .kbd-shortcut {
      background: rgba(255, 255, 255, 0.08);
      padding: 0.1rem 0.35rem;
      border-radius: 3px;
      font-size: 0.72rem;
      color: var(--text-muted);
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }
    .nav-link {
      font-size: 0.92rem;
      color: var(--text-muted);
      padding: 0.35rem 0.6rem;
      border-radius: 4px;
      font-weight: 500;
    }
    .nav-link.active, .nav-link:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.05);
    }
    .nav-link.active {
      border-bottom: 2px solid var(--primary);
      border-radius: 4px 4px 0 0;
      color: #fff;
    }
    .header-controls {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .pill-select {
      background: #161622;
      border: 1px solid var(--border-glow);
      color: var(--text-muted);
      font-size: 0.8rem;
      padding: 0.35rem 0.65rem;
      border-radius: 6px;
      cursor: pointer;
    }

    /* 文档布局与侧边栏 */
    .docs-layout {
      display: flex;
      gap: 2rem;
      padding: 2rem 0 4rem;
    }
    .docs-sidebar {
      width: 260px;
      flex-shrink: 0;
      position: sticky;
      top: 88px;
      height: calc(100vh - 110px);
      overflow-y: auto;
      background: var(--bg-panel);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      padding: 1.25rem 1rem;
    }
    .docs-sidebar::-webkit-scrollbar {
      width: 4px;
    }
    .docs-sidebar::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
    }
    .sidebar-group {
      margin-bottom: 1.5rem;
    }
    .sidebar-title {
      font-size: 0.75rem;
      text-transform: uppercase;
      color: var(--text-dark);
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 0.6rem;
      padding-left: 0.5rem;
    }
    .sidebar-menu {
      list-style: none;
      margin: 0;
    }
    .sidebar-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.45rem 0.65rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      border-radius: 4px;
      border-left: 2px solid transparent;
    }
    .sidebar-item a:hover {
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-main);
    }
    .sidebar-item.active a {
      background: rgba(225, 29, 72, 0.12);
      color: #fff;
      border-left-color: var(--primary);
      font-weight: 600;
    }
    .sidebar-badge {
      font-size: 0.7rem;
      background: rgba(255, 255, 255, 0.08);
      padding: 0.1rem 0.4rem;
      border-radius: 10px;
      color: var(--text-dark);
    }
    .sidebar-item.active .sidebar-badge {
      background: var(--primary);
      color: #fff;
    }
    .docs-content {
      flex: 1;
      min-width: 0;
    }

    /* 板块结构 */
    .content-section {
      padding: 2.5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .content-section:first-child {
      padding-top: 0;
    }
    .section-head {
      margin-bottom: 1.5rem;
    }
    .section-title {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      letter-spacing: 0.02em;
    }
    .section-title::before {
      content: "";
      width: 4px;
      height: 1.1rem;
      background: var(--primary);
      border-radius: 2px;
      display: inline-block;
    }
    .section-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-top: 0.4rem;
    }

    /* 专区导头 */
    .zone-header-box {
      background: radial-gradient(circle at top right, rgba(225, 29, 72, 0.18), transparent 60%),
                  linear-gradient(180deg, #161622 0%, #0e0e14 100%);
      border: 1px solid var(--border-glow);
      border-radius: 10px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .zone-meta-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(225, 29, 72, 0.15);
      color: #f43f5e;
      border: 1px solid rgba(225, 29, 72, 0.3);
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
    }
    .zone-h1 {
      font-size: 1.85rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 0.8rem;
      letter-spacing: 0.02em;
    }
    .zone-summary {
      font-size: 0.92rem;
      color: var(--text-muted);
      max-width: 820px;
      margin-bottom: 1.4rem;
      line-height: 1.7;
    }
    .tag-flow {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .tag-pill {
      background: #14141c;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-muted);
      font-size: 0.78rem;
      padding: 0.25rem 0.65rem;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: all 0.2s ease;
    }
    .tag-pill:hover {
      border-color: var(--primary);
      color: #fff;
      background: rgba(225, 29, 72, 0.1);
    }

    /* 天梯排行榜 (Tier List) */
    .tier-board {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .tier-row {
      display: flex;
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .tier-label {
      width: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      flex-shrink: 0;
      color: #fff;
      padding: 1rem 0.5rem;
      position: relative;
    }
    .tier-label.t0 {
      background: linear-gradient(135deg, #e11d48, #9f1239);
    }
    .tier-label.t1 {
      background: linear-gradient(135deg, #f59e0b, #b45309);
    }
    .tier-label.t2 {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    }
    .tier-name {
      font-size: 1.25rem;
      line-height: 1;
    }
    .tier-sub {
      font-size: 0.7rem;
      opacity: 0.85;
      margin-top: 0.2rem;
      font-weight: 500;
    }
    .tier-content {
      padding: 1rem;
      flex: 1;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 0.9rem;
      align-items: center;
      background: #111117;
    }
    .tier-mini-card {
      background: #181822;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      padding: 0.75rem;
      display: flex;
      gap: 0.75rem;
      transition: all 0.25s ease;
    }
    .tier-mini-card:hover {
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
      background: #1f1f2c;
    }
    .tier-thumb {
      width: 70px;
      height: 95px;
      border-radius: 4px;
      background: #252533;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      color: #94a3b8;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .thumb-sub-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(225, 29, 72, 0.85);
      color: #fff;
      font-size: 0.62rem;
      text-align: center;
      padding: 0.1rem 0;
      font-weight: 700;
    }
    .tier-info {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .tier-card-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 0.2rem;
    }
    .tier-card-meta {
      font-size: 0.72rem;
      color: var(--text-dark);
      line-height: 1.4;
    }
    .tier-score {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.35rem;
      font-size: 0.72rem;
      color: var(--gold);
      font-weight: 700;
    }

    /* 主体影视卡阵 3列宽版 */
    .wife-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .wife-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .wife-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-active);
      box-shadow: 0 16px 36px -10px rgba(225, 29, 72, 0.2);
      background: var(--bg-card-hover);
    }
    .wife-card-poster {
      position: relative;
      height: 170px;
      background: #1c1c28;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid var(--border-glow);
    }
    .poster-inner-art {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1f1b29 0%, #111119 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      text-align: center;
    }
    .poster-icon-sig {
      font-size: 1.8rem;
      margin-bottom: 0.3rem;
      opacity: 0.85;
    }
    .poster-code {
      font-family: monospace;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      color: var(--text-dark);
      background: rgba(0, 0, 0, 0.4);
      padding: 0.1rem 0.5rem;
      border-radius: 4px;
    }
    .card-quality-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(10, 10, 14, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }
    .card-sub-status {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--primary);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
    }
    .card-duration {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 0.68rem;
      padding: 0.15rem 0.4rem;
      border-radius: 3px;
    }
    .wife-card-body {
      padding: 1.1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .wife-card-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }
    .wife-card-synopsis {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 0.8rem;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .wife-character-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-bottom: 0.8rem;
    }
    .char-tag {
      font-size: 0.7rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text-muted);
      padding: 0.1rem 0.4rem;
      border-radius: 3px;
    }
    .wife-card-stats {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.75rem;
      font-size: 0.75rem;
      color: var(--text-dark);
    }
    .stat-val-highlight {
      color: var(--gold);
      font-weight: 700;
    }
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .page-btn {
      min-width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: 6px;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
    }
    .page-btn.active, .page-btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary-hover);
    }

    /* 剧情流派深度解构面板 */
    .genre-breakdown-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
    .genre-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      padding: 1.4rem;
      box-shadow: var(--shadow-card);
    }
    .genre-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .genre-icon {
      width: 42px;
      height: 42px;
      background: rgba(225, 29, 72, 0.12);
      border: 1px solid rgba(225, 29, 72, 0.3);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--primary);
      flex-shrink: 0;
    }
    .genre-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
    }
    .genre-subtext {
      font-size: 0.76rem;
      color: var(--text-dark);
    }
    .genre-narrative {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .genre-features {
      list-style: none;
      margin: 0 0 1.1rem 0;
    }
    .genre-features li {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.45rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .genre-features li::before {
      content: "▸";
      color: var(--primary);
      font-size: 0.85rem;
    }
    .genre-highlight-box {
      background: #181824;
      border-left: 3px solid var(--primary);
      padding: 0.65rem 0.9rem;
      border-radius: 0 4px 4px 0;
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .genre-highlight-box strong {
      color: var(--text-main);
    }

    /* 随机抽取体验插槽 (Gacha Recommender) */
    .gacha-box {
      background: radial-gradient(circle at center, #1c1a2e 0%, #12121c 100%);
      border: 1px solid rgba(225, 29, 72, 0.35);
      border-radius: 10px;
      padding: 2.2rem;
      box-shadow: 0 12px 35px -8px rgba(225, 29, 72, 0.2);
      text-align: center;
      position: relative;
    }
    .gacha-header-sub {
      font-size: 0.82rem;
      color: var(--text-dark);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }
    .gacha-h3 {
      font-size: 1.45rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .gacha-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 620px;
      margin: 0 auto 1.8rem;
    }
    .gacha-stage {
      display: flex;
      justify-content: center;
      margin-bottom: 1.8rem;
    }
    .gacha-result-card {
      width: 100%;
      max-width: 460px;
      background: #181824;
      border: 1px solid var(--border-active);
      border-radius: 8px;
      padding: 1.25rem;
      display: flex;
      gap: 1.2rem;
      text-align: left;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }
    .gacha-card-thumb {
      width: 100px;
      height: 135px;
      background: #252438;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }
    .gacha-ssr-badge {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background: linear-gradient(90deg, #f59e0b, #e11d48);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      text-align: center;
      padding: 0.15rem 0;
    }
    .gacha-card-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .gacha-tag-row {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.35rem;
    }
    .gacha-card-name {
      font-size: 0.96rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 0.35rem;
    }
    .gacha-card-meta {
      font-size: 0.76rem;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }
    .gacha-card-rate {
      font-size: 0.78rem;
      color: var(--gold);
      font-weight: 700;
    }
    .btn-gacha {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--primary), #be123c);
      color: #fff;
      padding: 0.75rem 2rem;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.95rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
      transition: all 0.25s ease;
    }
    .btn-gacha:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(225, 29, 72, 0.55);
      color: #fff;
    }

    /* 剧情观影评测专栏 */
    .review-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
    .review-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: 8px;
      padding: 1.4rem;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
    }
    .review-author-bar {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.9rem;
    }
    .review-avatar {
      width: 40px;
      height: 40px;
      background: #222230;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--primary-hover);
      border: 1px solid var(--border-glow);
    }
    .review-meta-box {
      flex: 1;
    }
    .review-user-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }
    .review-user-tier {
      font-size: 0.65rem;
      background: rgba(245, 158, 11, 0.15);
      color: var(--gold);
      border: 1px solid rgba(245, 158, 11, 0.3);
      padding: 0.08rem 0.35rem;
      border-radius: 3px;
    }
    .review-film-target {
      font-size: 0.74rem;
      color: var(--text-dark);
      margin-top: 0.15rem;
    }
    .review-rating-stars {
      color: var(--gold);
      font-size: 0.78rem;
    }
    .review-excerpt {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0.9rem;
      flex: 1;
    }
    .review-footer-stats {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 0.75rem;
      font-size: 0.74rem;
      color: var(--text-dark);
    }

    /* 准则与隐私保障 */
    .notice-card {
      background: #11111a;
      border: 1px solid rgba(225, 29, 72, 0.25);
      border-radius: 8px;
      padding: 1.5rem 1.8rem;
      display: flex;
      gap: 1.4rem;
      align-items: flex-start;
    }
    .notice-icon {
      font-size: 2rem;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 0.2rem;
    }
    .notice-body {
      flex: 1;
    }
    .notice-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.45rem;
    }
    .notice-text {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0.8rem;
    }
    .notice-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem 1.2rem;
    }
    .notice-list li {
      font-size: 0.78rem;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .notice-list li::before {
      content: "✓";
      color: #10b981;
      font-weight: bold;
    }

    /* 页脚 */
    .site-footer {
      background: #08080b;
      border-top: 1px solid var(--border-glow);
      padding: 4rem 0 2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 3rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-brand p {
      font-size: 0.82rem;
      line-height: 1.65;
      color: var(--text-dark);
      max-width: 380px;
    }
    .footer-col h5 {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 0.9rem;
      letter-spacing: 0.05em;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
    }
    .footer-col li {
      margin-bottom: 0.5rem;
    }
    .footer-col a {
      color: var(--text-muted);
      font-size: 0.82rem;
    }
    .footer-col a:hover {
      color: var(--primary-hover);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal-tag {
      font-size: 0.78rem;
      color: var(--text-dark);
    }

    /* 移动端与平板响应式适配 */
    @media (max-width: 1023px) {
      .docs-sidebar {
        display: none;
      }
      .docs-layout {
        padding: 1.5rem 0 3rem;
      }
      .wife-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }
    @media (max-width: 640px) {
      .site-header {
        height: auto;
        padding: 0.75rem 0;
      }
      .header-inner {
        flex-direction: column;
        gap: 0.75rem;
      }
      .search-trigger, .header-controls {
        display: none;
      }
      .wife-grid {
        grid-template-columns: 1fr;
      }
      .genre-breakdown-grid, .review-grid {
        grid-template-columns: 1fr;
      }
      .notice-list {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
      }
      .tier-row {
        flex-direction: column;
      }
      .tier-label {
        width: 100%;
        padding: 0.5rem;
      }
      .gacha-result-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .gacha-card-thumb {
        width: 120px;
        height: 160px;
      }
      .gacha-tag-row {
        justify-content: center;
      }
    }
