:root {
            --primary: #2563eb;
            --accent: #06b6d4;
            --bg: #f4f8ff;
            --text: #0f1e3d;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow: 0 8px 20px rgba(0,0,0,0.05);
            --font-data: 'SF Mono', 'Fira Code', monospace;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            line-height: 1.5;
        }

        /* 胶囊导航 */
        .navbar {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.03);
            padding: 10px 0;
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .navbar .nav-link {
            font-weight: 500;
            color: var(--text);
            border-radius: 50rem;
            padding: 6px 16px !important;
            transition: 0.2s;
        }
        .navbar .nav-link:hover {
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
        }

        .btn-pill {
            border-radius: 50rem;
            padding: 8px 20px;
            font-weight: 600;
            border: none;
            background: var(--primary);
            color: white;
            transition: 0.15s;
        }
        .btn-pill:hover {
            background: var(--accent);
        }

        /* 全屏背景剧照 hero */
        .hero {
            background-image: linear-gradient(180deg, rgba(244, 248, 255, 0.88) 0%, rgba(244, 248, 255, 0.4) 90%), url('{随机图片}');
            background-size: cover;
            background-position: center 20%;
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 2px solid rgba(6, 182, 212, 0.2);
        }

        .hero-title {
            font-weight: 900;
            font-size: 3rem;
            color: var(--text);
            text-shadow: 0 2px 8px rgba(255,255,255,0.8);
        }
        .typing-cursor {
            border-right: 3px solid var(--accent);
            padding-right: 4px;
            animation: blink 1s step-end infinite;
        }
        @keyframes blink {
            0%, 100% { border-color: var(--accent); }
            50% { border-color: transparent; }
        }

        /* 区块通用 */
        .section {
            padding: 35px 0;
        }
        .section-title {
            font-weight: 800;
            font-size: 1.6rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-title i {
            color: var(--primary);
        }

        /* 海报卡片 */
        .card-movie {
            border: none;
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: 0.2s ease;
            cursor: pointer;
            height: 100%;
        }
        .card-movie:hover {
            transform: scale(1.02);
            border: 1px solid var(--accent);
            box-shadow: 0 12px 24px rgba(6, 182, 212, 0.12);
        }
        .card-movie .poster {
            height: 210px;
            background-color: #dfe7f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #b6c2da;
            background-image: linear-gradient(145deg, #dbe5f8, #eaf2ff);
        }
        .card-movie .poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-movie .card-body {
            padding: 12px 12px 8px;
        }
        .card-movie .movie-title {
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-movie .meta {
            display: flex;
            justify-content: space-between;
            margin-top: 6px;
            font-size: 0.72rem;
            color: #5b6b8c;
        }
        .badge-cat {
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
            font-weight: 600;
            border-radius: 50rem;
            padding: 2px 10px;
            font-size: 0.7rem;
        }
        .rating {
            font-family: var(--font-data);
            font-weight: 600;
            color: #f59e0b;
        }

        /* 榜单金银铜 */
        .rank-list {
            background: white;
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow);
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .rank-item .medal {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            background: #e2e8f0;
            color: #4a5b82;
        }
        .rank-item:first-child .medal {
            background: #ffd700;
            color: #3b2e00;
        }
        .rank-item:nth-child(2) .medal {
            background: #c0c0c0;
            color: #2f3b4f;
        }
        .rank-item:nth-child(3) .medal {
            background: #cd7f32;
            color: #3e2400;
        }

        /* 对比表格 */
        .compare-table {
            background: white;
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow);
            overflow-x: auto;
        }
        .compare-table table {
            width: 100%;
            font-size: 0.9rem;
        }
        .compare-table th {
            background: var(--primary);
            color: white;
            font-weight: 600;
            padding: 10px;
        }
        .compare-table td {
            padding: 8px 12px;
            border-bottom: 1px solid #ecf1fa;
        }
        .compare-table .highlight {
            background: rgba(6, 182, 212, 0.06);
            font-weight: 600;
        }

        /* 抽屉弹窗 */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.35);
            backdrop-filter: blur(2px);
            z-index: 1040;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .drawer-panel {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px 20px 0 0;
            padding: 24px 24px 30px;
            z-index: 1050;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
        }
        .drawer-panel.show {
            transform: translateY(0);
        }
        .drawer-overlay.show {
            display: block;
            opacity: 1;
        }
        .drawer-close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            line-height: 1;
            border: none;
            background: transparent;
            color: var(--text);
            cursor: pointer;
        }

        /* 数字滚动 */
        .stat-number {
            font-family: var(--font-data);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }

        /* 编号清单 */
        .steps-list {
            counter-reset: step;
            list-style: none;
            padding-left: 0;
        }
        .steps-list li {
            counter-increment: step;
            position: relative;
            padding-left: 34px;
            margin-bottom: 8px;
        }
        .steps-list li::before {
            content: counter(step);
            width: 24px;
            height: 24px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 2px;
        }

        footer {
            background: #eef3fc;
            padding: 24px 0 30px;
            margin-top: 40px;
        }
        .friend-links {
            background: rgba(255,255,255,0.6);
            border-radius: 30px;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
            justify-content: center;
        }
        .friend-links span {
            font-weight: 700;
            margin-right: 10px;
        }
        .friend-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.85rem;
            opacity: 0.8;
            border-bottom: 1px dashed;
        }
        .footer-links a {
            color: #3b4c74;
            text-decoration: none;
            font-size: 0.8rem;
            margin: 0 12px;
        }

/* --- 子页面追加 --- */
/* 本页专属微调 — 保证与首页视觉完全一致 */
        .about-hero {
            background: linear-gradient(135deg, var(--bg) 0%, #e8f0fe 100%);
            padding: 3rem 0 2rem;
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.about-hero .hero-title {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.about-section {
            padding: 3.5rem 0;
            border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.about-section .section-title {
            margin-bottom: 1.8rem;
        }
.about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            margin-top: 1.5rem;
        }
.about-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(37, 99, 235, 0.12);
            border-radius: var(--radius-md);
            padding: 1.5rem 1.2rem;
            transition: box-shadow .2s, transform .2s;
        }
.about-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.9);
        }
.about-card i {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
        }
.about-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
        }
.about-card p {
            color: #334155;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.stat-strip {
            background: rgba(37, 99, 235, 0.04);
            border-radius: var(--radius-lg);
            padding: 1.8rem 1.5rem;
            margin: 2rem 0 0.5rem;
            border: 1px solid rgba(37, 99, 235, 0.15);
        }
.compare-table tr td:first-child {
            border-radius: var(--radius-sm) 0 0 var(--radius-sm);
            background: rgba(37, 99, 235, 0.06);
            font-weight: 500;
        }
.compare-table tr td:last-child {
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }
.friend-links a:hover {
            text-decoration: underline;
        }
/* 导航高亮当前页 */
        .navbar-nav .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }

/* --- 子页面追加 --- */
/* 本页专属小样式，合并进站点CSS */
        .help-hero { background: linear-gradient(135deg, #e8f0fe 0%, #f4f8ff 50%, #e0f2fe 100%); border-radius: var(--radius-lg); padding: 3.5rem 2rem; text-align: center; margin-bottom: 3rem; }
.help-hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; }
.help-hero p { font-size: 1.1rem; color: #4a5a7a; max-width: 640px; margin: 0 auto; }
.help-section { margin-bottom: 3.5rem; }
.help-section h2 { font-size: 1.65rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; padding-left: 1rem; border-left: 4px solid var(--primary); }
.help-card { background: #fff; border-radius: var(--radius-md); padding: 1.75rem 1.5rem; box-shadow: var(--shadow); height: 100%; transition: transform .2s; }
.help-card:hover { transform: translateY(-4px); }
.help-card i { font-size: 1.75rem; color: var(--primary); margin-bottom: 1rem; }
.help-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: .75rem; }
.help-card p { font-size: .95rem; color: #3d4c6b; line-height: 1.65; margin-bottom: 0; }
.steps-list li strong { display: block; font-weight: 700; margin-bottom: .35rem; }
.steps-list li span { color: #3d4c6b; font-size: .93rem; }
.tip-box { background: #fff; border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin: 1.5rem 0; box-shadow: var(--shadow); }
.tip-box i { color: var(--accent); margin-right: .5rem; }
.tip-box p { margin: 0; color: #3d4c6b; font-size: .95rem; }
.table-wrap { background: #fff; border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow); overflow-x: auto; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.table-wrap th { background: var(--primary); color: #fff; padding: .75rem 1rem; text-align: left; font-weight: 600; }
.table-wrap td { padding: .75rem 1rem; border-bottom: 1px solid #eef2f7; color: var(--text); }
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover td { background: #f8fbff; }

/* --- 子页面追加 --- */
/* 页面专属微调（沿用主站配色变量） */
        .legal-section {
            background: var(--bg);
            border-radius: var(--radius-lg);
            padding: 2.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
        }
.legal-section h2 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            border-bottom: 1px solid rgba(37, 99, 235, 0.2);
            padding-bottom: 0.6rem;
        }
.legal-section p, .legal-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 1rem;
        }
.legal-section ul {
            padding-left: 1.2rem;
            list-style-type: square;
        }
.legal-highlight {
            background: rgba(6, 182, 212, 0.08);
            border-radius: var(--radius-sm);
            padding: 0.3rem 0.8rem;
            color: var(--accent);
            font-weight: 600;
        }
.footer-disclaimer {
            font-size: 0.9rem;
            color: #6c7a9a;
            background: #eef4ff;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            margin-top: 2rem;
            border: 1px solid rgba(37, 99, 235, 0.15);
        }
/* 导航高亮当前页 */
        .navbar .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
            border-bottom: 2px solid var(--primary);
        }
.legal-section { padding: 1.5rem; }

/* --- 子页面追加 --- */
/* 保证任何卡片/面板都继承射雕英雄传之重生大闹郭伯母配色 */
        .card, .card-body, .card-header, .card-footer,
        .list-group-item, .accordion-item, .accordion-button,
        .form-control, .form-select {
            background: var(--card-bg, #ffffff);
            color: var(--text, #0f1e3d);
            border-color: var(--border-color, #e2e8f0);
        }
/* 深色模式下适配 */
        .navbar, .navbar-brand, .nav-link, .btn-pill {
            color: var(--text) !important;
        }
/* 站点地图专用样式 */
        .sitemap-hero {
            background: linear-gradient(145deg, #f4f8ff 0%, #eef4ff 100%);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
.sitemap-section {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 1.5rem 1.25rem;
            box-shadow: var(--shadow);
            margin-bottom: 1.8rem;
            border-left: 6px solid var(--primary);
        }
.sitemap-section h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.sitemap-section h2 i {
            color: var(--accent);
        }
.sitemap-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem 1.2rem;
        }
.sitemap-list li a {
            display: inline-block;
            text-decoration: none;
            color: var(--text);
            background: rgba(37, 99, 235, 0.04);
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid transparent;
            width: 100%;
        }
.sitemap-list li a:hover {
            background: rgba(37, 99, 235, 0.12);
            border-color: var(--primary);
            color: var(--primary);
        }
.sitemap-list li a i {
            margin-right: 0.4rem;
            color: var(--accent);
            width: 1.2rem;
        }
.badge-sitemap {
            background: var(--primary);
            color: white;
            font-size: 0.7rem;
            padding: 0.25rem 0.75rem;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 0.3px;
            vertical-align: middle;
            margin-left: 0.4rem;
        }
.friend-links h3 {
            font-weight: 700;
            color: var(--text);
            font-size: 1.2rem;
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#0f1e3d !important; border-color:rgba(0,0,0,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#0f1e3d !important; }
.accordion-body { background:transparent !important; color:#0f1e3d !important; }
.accordion-header { background:transparent !important; }
