:root {
            --primary: #e50914;
            --accent: #f5c518;
            --bg: #0b0b0f;
            --text: #f5f5f7;
            --card-bg: #16161d;
            --muted: #9a9aa5;
        }
        * { margin:0; padding:0; box-sizing:border-box; }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            overflow-x:hidden;
        }
        h1,h2,h3,h4,h5 { font-weight:900; letter-spacing: -0.02em; }
        .navbar {
            background: linear-gradient(180deg, #0b0b0f 0%, rgba(11,11,15,0.95) 70%, rgba(11,11,15,0.85) 100%);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(245,197,24,0.2);
            z-index: 1000;
            padding: 12px 0;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent) !important;
            letter-spacing: -0.03em;
            text-shadow: 0 0 20px rgba(245,197,24,0.3);
        }
        .navbar-brand i { color: var(--primary); margin-right: 8px; }
        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            margin: 0 6px;
            padding: 8px 14px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .nav-link:hover {
            color: var(--accent) !important;
            background: rgba(245,197,24,0.08);
        }
        .navbar-toggler { border-color: rgba(245,197,24,0.4); }
        .navbar-toggler:focus { box-shadow: none; }
        /* Hero 视差背景 */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('{随机图片}') center center / cover fixed no-repeat;
            position: relative;
            isolation: isolate;
            border-bottom: 1px solid rgba(245,197,24,0.15);
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11,11,15,0.6) 0%, rgba(11,11,15,0.8) 60%, var(--bg) 100%);
            z-index: -1;
        }
        .hero-title {
            font-size: clamp(2.8rem, 8vw, 5.5rem);
            font-weight: 900;
            color: var(--accent);
            text-shadow: 0 0 40px rgba(245,197,24,0.5);
            margin-bottom: 20px;
            line-height: 1.1;
        }
        .hero-sub {
            font-size: 1.2rem;
            color: var(--text);
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.02em;
        }
        .typewriter { display: inline-block; overflow: hidden; white-space: nowrap; border-right: 3px solid var(--accent); animation: blink 0.8s step-end infinite; }
        @keyframes blink { 50% { border-color: transparent; } }
        /* 区块通用 */
        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 12px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 60px; height: 3px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 3px;
        }
        .section-title i {
            color: var(--accent);
            font-size: 1.4rem;
        }
        .section-title h2 {
            font-size: 1.8rem;
            font-weight: 900;
            margin: 0;
            color: var(--text);
        }
        /* 海报卡片 */
        .movie-card {
            background: var(--card-bg);
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            cursor: pointer;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            position: relative;
        }
        .movie-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,197,24,0.2);
        }
        .movie-poster {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2/3;
            background: #1e1e28;
        }
        .movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .movie-card:hover .movie-poster img {
            transform: scale(1.08);
        }
        .movie-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .movie-card:hover .movie-overlay { opacity: 1; }
        .play-btn {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%,-50%);
            width: 50px; height: 50px;
            background: rgba(229,9,20,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            box-shadow: 0 0 30px rgba(229,9,20,0.6);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .movie-card:hover .play-btn { opacity: 1; }
        .movie-info {
            padding: 14px;
            background: linear-gradient(180deg, rgba(22,22,29,0.95), var(--card-bg));
        }
        .movie-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--text);
        }
        .movie-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--muted);
        }
        .rating {
            color: var(--accent);
            font-weight: 700;
            font-family: 'Consolas', 'Courier New', monospace;
        }
        .badge-type {
            background: rgba(229,9,20,0.2);
            color: #ff6b6b;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        /* 排行榜 */
        .rank-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .rank-num {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--accent);
            width: 40px;
            text-align: center;
            font-family: 'Consolas', monospace;
        }
        .rank-info { flex: 1; }
        .rank-info h5 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .rank-info p {
            font-size: 0.8rem;
            color: var(--muted);
            margin: 0;
        }
        .rank-view {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.85rem;
            font-family: 'Consolas', monospace;
        }
        /* 对比表格 */
        .comparison-table {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .comparison-table table {
            margin: 0;
            color: var(--text);
        }
        .comparison-table th {
            background: rgba(245,197,24,0.1);
            color: var(--accent);
            font-weight: 700;
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .comparison-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .comparison-table tr:last-child td { border-bottom: none; }
        /* 编号清单 */
        .numbered-list {
            list-style: none;
            counter-reset: custom-counter;
        }
        .numbered-list li {
            counter-increment: custom-counter;
            padding: 12px 0 12px 45px;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .numbered-list li::before {
            content: counter(custom-counter);
            position: absolute;
            left: 0; top: 12px;
            width: 30px; height: 30px;
            background: var(--accent);
            color: var(--bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
        }
        /* 侧边弹窗 */
        .detail-panel {
            position: fixed;
            top: 0; right: -100%;
            width: 100%;
            max-width: 420px;
            height: 100vh;
            background: var(--card-bg);
            z-index: 2000;
            transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            box-shadow: -10px 0 40px rgba(0,0,0,0.6);
            overflow-y: auto;
            border-left: 1px solid rgba(245,197,24,0.1);
        }
        .detail-panel.active { right: 0; }
        .detail-panel .poster-bg {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .detail-panel .poster-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, var(--card-bg) 100%);
        }
        .detail-content { padding: 25px; position: relative; margin-top: -60px; z-index: 2; }
        .detail-content h3 {
            font-weight: 900;
            margin-bottom: 10px;
            color: var(--accent);
        }
        .detail-meta {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }
        .detail-meta span {
            background: rgba(245,197,24,0.15);
            color: var(--accent);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .detail-field {
            margin-bottom: 12px;
        }
        .detail-field .label {
            color: var(--muted);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 4px;
        }
        .detail-field .value {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .close-detail {
            position: fixed;
            top: 20px; right: 30px;
            width: 40px; height: 40px;
            background: rgba(0,0,0,0.6);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2100;
            transition: all 0.3s ease;
        }
        .close-detail:hover { background: var(--primary); transform: rotate(90deg); }
        .overlay-mask {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px);
            z-index: 1990;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .overlay-mask.active { opacity: 1; visibility: visible; }
        /* 友链 */
        .friend-links {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 20px;
            margin-top: 40px;
        }
        .friend-links h4 {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .friend-links .link-list { color: var(--muted); font-size: 0.85rem; }
        /* 页脚 */
        footer {
            border-top: 1px solid rgba(245,197,24,0.1);
            padding: 40px 0 20px;
            margin-top: 60px;
            background: #08080b;
        }
        footer a {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover { color: var(--accent); }
        .data-font { font-family: 'Consolas', 'Courier New', monospace; }
        /* 动画 */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in-up { animation: fadeInUp 0.6s ease forwards; }
        /* 数字滚动 */
        .stat-number {
            font-family: 'Consolas', monospace;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent);
        }
        /* 分类标签 */
        .category-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .category-tab {
            padding: 6px 18px;
            border-radius: 20px;
            background: rgba(255,255,255,0.05);
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .category-tab:hover, .category-tab.active {
            background: rgba(245,197,24,0.15);
            color: var(--accent);
            border-color: var(--accent);
        }
        .row.g-4 { --bs-gutter-y: 1.5rem; }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
            .section-title h2 { font-size: 1.4rem; }
            .movie-title { font-size: 0.9rem; }
        }

/* --- 子页面追加 --- */
/* 保证与首页视觉完全一致——Bootstrap组件覆盖 */
        .card, .card-body, .list-group-item, .accordion-item, .accordion-button, .accordion-body {
            background: var(--card-bg);
            color: var(--text);
            border-color: #2a2a35;
        }
.form-control, .form-select {
            background: rgba(0,0,0,.35);
            color: var(--text);
            border: 1px solid #2a2a35;
        }
.form-control::placeholder { color: rgba(255,255,255,.45); }
.nav-link, .navbar-brand { color: var(--text) !important; }
.nav-link.active { color: var(--accent) !important; font-weight: 600; }
/* 本页专属小修饰 */
        .about-hero { padding: 3.5rem 0 2rem; border-bottom: 1px solid #1f1f2a; }
.about-section { padding: 3rem 0; }
.about-section + .about-section { border-top: 1px solid #1c1c26; }
.feature-icon { font-size: 2rem; color: var(--accent); margin-right: .75rem; }
.highlight-number { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-right: .3rem; }
.inline-logo { font-weight: 800; letter-spacing: -0.02em; }
.list-unstyled-custom { list-style: none; padding-left: 0; }
.list-unstyled-custom li { padding: .5rem 0; border-bottom: 1px dashed #2a2a35; color: var(--text); }
.list-unstyled-custom li i { color: var(--accent); margin-right: .7rem; }
.small-muted { color: var(--muted); }

/* --- 子页面追加 --- */
/* 确保所有卡片/表单等组件使用本站深色配色，无白底黑字 */
        .card, .card-body, .card-header, .card-footer,
        .form-control, .form-select, .list-group-item,
        .accordion-item, .accordion-button, .accordion-body,
        .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: var(--border-color, #2a2a35) !important;
        }
.accordion-button:not(.collapsed) {
            background: rgba(229, 9, 20, 0.15) !important;
            color: var(--accent) !important;
            box-shadow: none;
        }
.accordion-button::after {
            filter: invert(1);
        }
.btn-outline-light {
            border-color: var(--muted);
            color: var(--text);
        }
.btn-outline-light:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
/* 列表组和表格的边框颜色微调 */
        .list-group-item {
            border-color: var(--border-color, #2a2a35) !important;
        }
.table {
            --bs-table-bg: transparent;
            --bs-table-color: var(--text);
            --bs-table-border-color: var(--border-color, #2a2a35);
        }
/* 小标题统一风格 */
        .guide-section h2, .guide-section h3 {
            color: var(--accent);
            font-weight: 700;
            letter-spacing: -0.01em;
            border-left: 4px solid var(--primary);
            padding-left: 12px;
            margin-bottom: 1.2rem;
        }
.guide-section h2 {
            font-size: 1.6rem;
            margin-top: 2.5rem;
        }
.guide-section h3 {
            font-size: 1.25rem;
            margin-top: 1.8rem;
            border-left-color: var(--muted);
        }
/* 高亮导航当前页 */
        .navbar-nav .nav-link.active {
            color: var(--accent) !important;
            font-weight: 700;
        }
/* 步骤卡片 */
        .step-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color, #2a2a35);
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            height: 100%;
            transition: transform .2s, box-shadow .2s;
        }
.step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
.step-num {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            margin-bottom: 12px;
        }
.tip-box {
            background: rgba(245, 197, 24, 0.08);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.2rem;
            border-radius: 0 12px 12px 0;
            color: var(--text);
        }

/* --- 子页面追加 --- */
.privacy-section {
            padding: 60px 0;
        }
.privacy-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.08);
        }
.privacy-content h2 {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            margin-top: 40px;
            position: relative;
            padding-bottom: 12px;
        }
.privacy-content h2:first-child {
            margin-top: 0;
        }
.privacy-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
.privacy-content p {
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 16px;
            font-size: 1.05rem;
        }
.privacy-content ul {
            color: var(--text);
            margin-bottom: 20px;
            padding-left: 20px;
        }
.privacy-content li {
            margin-bottom: 10px;
            line-height: 1.8;
        }
.privacy-content strong {
            color: var(--accent);
        }
.privacy-header {
            background: linear-gradient(135deg, rgba(229,9,20,0.15) 0%, rgba(11,11,15,0) 100%);
            padding: 60px 0 30px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
.privacy-header h1 {
            color: var(--text);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
.privacy-header p {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 700px;
        }
.last-updated {
            color: var(--muted);
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
.highlight-box {
            background: rgba(229,9,20,0.08);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
.highlight-box p {
            margin-bottom: 0;
        }
.contact-privacy {
            background: rgba(245,197,24,0.08);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
.privacy-content {
                padding: 25px 20px;
                margin: 0 15px;
            }
.privacy-header h1 {
                font-size: 2rem;
            }
.privacy-content h2 {
                font-size: 1.4rem;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-header { background:transparent !important; }
