:root {
            --primary: #6d5dfc;
            --accent: #22d3ee;
            --bg: #0f1020;
            --text: #e8eaf6;
            --text-muted: rgba(232, 234, 246, 0.65);
            --border: rgba(232, 234, 246, 0.12);
            --card-bg: rgba(255, 255, 255, 0.03);
        }
        * { box-sizing: border-box; }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 400;
            line-height: 1.6;
            margin: 0;
            letter-spacing: 0.01em;
        }
        /* 极简无阴影，纯描边分割 */
        .navbar, .section, footer, .hero-section, .movie-card, .list-group-item, .faq-item {
            box-shadow: none !important;
            border: none;
        }
        .section {
            border-top: 1px solid var(--border);
            padding: 3rem 0;
        }
        .section-header {
            font-weight: 800;
            font-size: 2.2rem;
            letter-spacing: -0.02em;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
            display: inline-block;
        }
        .text-accent { color: var(--accent); }
        .text-primary-custom { color: var(--primary); }
        .bg-custom-dark { background-color: #0b0c1a; }
        .btn-outline-custom {
            border: 1px solid var(--primary);
            color: var(--text);
            padding: 0.5rem 1.5rem;
            border-radius: 0;
            transition: all 0.2s;
            background: transparent;
            font-weight: 600;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-accent-custom {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.6rem 1.8rem;
            transition: background 0.3s, transform 0.2s;
            border-radius: 0;
        }
        .btn-accent-custom:hover {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            transform: scale(1.02);
        }
        /* 海报卡片 */
        .movie-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 0;
            transition: transform 0.15s, border-color 0.15s;
            cursor: pointer;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 1.2rem;
        }
        .movie-card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        .movie-card .poster-wrap {
            position: relative;
            aspect-ratio: 2 / 3;
            background: #1e1f2e;
            overflow: hidden;
        }
        .movie-card .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .movie-card .poster-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70%;
            background: linear-gradient(to top, rgba(15,16,32,0.95) 0%, rgba(15,16,32,0) 90%);
            pointer-events: none;
        }
        .movie-card .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15,16,32,0.3);
            opacity: 0;
            transition: opacity 0.2s;
        }
        .movie-card:hover .play-overlay { opacity: 1; }
        .movie-card .play-overlay i {
            font-size: 2.5rem;
            color: white;
            background: rgba(109, 93, 252, 0.7);
            border-radius: 50%;
            padding: 1rem;
        }
        .movie-info {
            padding: 0.8rem 0.8rem 1rem;
            border-top: 1px solid var(--border);
            background: transparent;
            flex-grow: 1;
        }
        .movie-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.25rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
        }
        .rating-badge { color: #ffc107; font-weight: 600; }
        /* 分类入口 */
        .cat-icon {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }
        .cat-item {
            text-align: center;
            padding: 1rem 0.5rem;
            border: 1px solid var(--border);
            border-radius: 0;
            background: transparent;
            transition: all 0.2s;
        }
        .cat-item:hover { border-color: var(--accent); background: rgba(34, 211, 238, 0.05); }
        /* 排行榜 */
        .rank-list {
            list-style: none;
            padding-left: 0;
            counter-reset: rank;
        }
        .rank-list li {
            counter-increment: rank;
            border-bottom: 1px solid var(--border);
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .rank-list li::before {
            content: counter(rank);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            width: 2.5rem;
            text-align: center;
        }
        /* 手风琴 */
        .accordion-item {
            background: transparent;
            border: 1px solid var(--border) !important;
            border-radius: 0 !important;
        }
        .accordion-button {
            background: transparent;
            color: var(--text);
            font-weight: 600;
            box-shadow: none;
            border-bottom: 1px solid var(--border);
        }
        .accordion-button:not(.collapsed) {
            background: rgba(109, 93, 252, 0.1);
            color: var(--accent);
        }
        .accordion-body { background: transparent; color: var(--text-muted); }
        /* 图标列表 */
        .icon-list {
            list-style: none;
            padding-left: 0;
        }
        .icon-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed var(--border);
            display: flex;
            gap: 0.8rem;
        }
        .icon-list i { color: var(--accent); width: 1.5rem; margin-top: 0.2rem; }
        /* hero */
        .hero-parallax {
            background-image: linear-gradient(rgba(15,16,32,0.7), rgba(15,16,32,0.9)), url('{随机图片}');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            padding: 6rem 0;
            border-bottom: 1px solid var(--border);
        }
        .hero-title {
            font-size: 3.8rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        /* 回到顶部 */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1rem;
            z-index: 99;
            display: none;
            transition: all 0.2s;
        }
        /* 弹窗 */
        .modal-custom-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 10, 20, 0.75);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
        }
        .modal-custom-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        .modal-custom-card {
            background: #fff;
            color: #1e1e2f;
            max-width: 720px;
            width: 90%;
            border-radius: 0;
            display: flex;
            flex-direction: row;
            overflow: hidden;
            position: relative;
            border: 1px solid #ddd;
        }
        .modal-custom-close {
            position: absolute;
            top: 8px;
            right: 12px;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 10;
            line-height: 1;
            color: #333;
            background: none;
            border: none;
        }
        .modal-custom-poster {
            width: 45%;
            background: #eee;
        }
        .modal-custom-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .modal-custom-info {
            padding: 1.8rem;
            flex: 1;
        }
        .modal-custom-info h3 { font-weight: 800; margin-bottom: 0.5rem; }
        .modal-custom-info p { margin-bottom: 0.3rem; font-size: 0.9rem; }
        @media (max-width: 600px) {
            .modal-custom-card { flex-direction: column; max-height: 90vh; overflow-y: auto; }
            .modal-custom-poster { width: 100%; height: 200px; }
        }
        /* footer */
        .footer-links a { color: var(--text-muted); margin-right: 1.2rem; text-decoration: none; }
        .footer-links a:hover { color: var(--accent); }
        .friend-links { border-top: 1px solid var(--border); padding-top: 2rem; margin-top: 2rem; }
        .navbar { background-color: #0b0c1a !important; border-bottom: 1px solid var(--border); }
        .navbar-brand { font-weight: 800; font-size: 1.6rem; color: var(--text) !important; }
        .navbar-nav .nav-link { color: var(--text-muted) !important; font-weight: 500; }
        .navbar-nav .nav-link:hover { color: var(--accent) !important; }
        .navbar-toggler { border-color: rgba(232,234,246,0.3); }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .about-hero {
            padding: 80px 0 60px;
            text-align: center;
        }
.about-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
.about-hero h1 span {
            color: var(--accent);
        }
.about-hero .lead {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-section {
            padding: 50px 0;
        }
.about-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
            padding-left: 18px;
        }
.about-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 4px;
            height: 24px;
            background: var(--primary);
            border-radius: 2px;
        }
.about-section p {
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 16px;
            font-size: 0.98rem;
        }
.icon-list li i {
            color: var(--accent);
            margin-top: 4px;
        }
.feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px 24px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
.feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
.feature-card .icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
.feature-card .icon-wrap i {
            color: #fff;
            font-size: 1.2rem;
        }
.feature-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
        }
.feature-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }
.timeline {
            position: relative;
            padding-left: 24px;
            margin-left: 8px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 2px;
            height: calc(100% - 8px);
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            opacity: 0.4;
            border-radius: 1px;
        }
.timeline-item {
            position: relative;
            padding-bottom: 28px;
            padding-left: 16px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -29px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 2px solid var(--bg);
            box-shadow: 0 0 0 2px var(--primary);
        }
.timeline-item h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }
.timeline-item p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }
.stats-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 40px 0 20px;
        }
.stat-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 32px;
            text-align: center;
            min-width: 160px;
        }
.stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.stat-item .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 6px;
        }
.cta-box {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15), rgba(34, 211, 238, 0.15));
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            margin: 40px 0 20px;
        }
.cta-box h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.cta-box p {
            color: var(--text-muted);
            margin-bottom: 20px;
        }
.about-hero h1 { font-size: 1.8rem; }
.about-section h2 { font-size: 1.3rem; }
.stats-wrap { gap: 12px; }
.stat-item { padding: 16px 20px; min-width: 120px; }
.stat-item .num { font-size: 1.5rem; }
.cta-box { padding: 24px; }

/* --- 子页面追加 --- */
/* 由于站点全局CSS已经定义了大部分组件样式，这里仅补充本页特有细节 */
        .disclaimer-hero {
            padding: 3rem 0 1.5rem;
            border-bottom: 1px solid var(--border);
        }
.disclaimer-hero .hero-title {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
.disclaimer-hero .lead-muted {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 1.05rem;
        }
.disclaimer-section {
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--border);
        }
.disclaimer-section:last-of-type {
            border-bottom: none;
        }
.disclaimer-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.disclaimer-section h2 i {
            color: var(--primary);
            font-size: 1.4rem;
        }
.disclaimer-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
.disclaimer-section p {
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1rem;
        }
.disclaimer-section ul, .disclaimer-section ol {
            color: var(--text-muted);
            line-height: 1.8;
            padding-left: 1.2rem;
            margin-bottom: 1.2rem;
        }
.disclaimer-section li {
            margin-bottom: 0.4rem;
        }
.icon-list li::before {
            content: "\f058"; /* fa-circle-check */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 1rem;
            top: 0.2rem;
        }
.badge-soft {
            background: rgba(109, 93, 252, 0.15);
            color: var(--primary);
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(109, 93, 252, 0.3);
        }
.alert-custom-note {
            background: rgba(34, 211, 238, 0.07);
            border-left: 4px solid var(--accent);
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            color: var(--text);
        }
.alert-custom-note i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
/* 导航高亮当前页 */
        .navbar .nav-link.active-page {
            color: var(--primary) !important;
            font-weight: 600;
        }
.disclaimer-hero .hero-title {
                font-size: 1.6rem;
            }
.disclaimer-section h2 {
                font-size: 1.3rem;
            }

/* --- 子页面追加 --- */
.privacy-section {
            padding: 70px 0;
        }
.privacy-box {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 32px;
            margin-bottom: 30px;
        }
.privacy-box h3 {
            color: var(--text);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.privacy-box h3 i {
            color: var(--primary);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
.privacy-box p, .privacy-box li {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }
.privacy-box ul, .privacy-box ol {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-box strong {
            color: var(--text);
        }
.privacy-update {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.12), rgba(34, 211, 238, 0.08));
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 28px;
            margin-top: 40px;
        }
.privacy-update p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
.privacy-update i {
            color: var(--accent);
            margin-right: 8px;
        }
.section-title-custom {
            margin-bottom: 20px;
        }
.privacy-section {
                padding: 40px 0;
            }
.privacy-box {
                padding: 20px 18px;
            }

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