:root {
            --main: #06b6d4;
            --accent: #ec4899;
            --bg: #0c0a1a;
            --text: #e0f2fe;
            --card-bg: #1a152b;
            --shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
            --glow: 0 0 20px rgba(6, 182, 212, 0.3);
        }

        * { font-family: 'Inter', sans-serif; }
        body {
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* 思源宋体标题 */
        h1, h2, h3, .font-serif {
            font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
            font-weight: 700;
        }

        /* 滚动吸顶导航 */
        .navbar {
            transition: all 0.4s ease;
            background: rgba(12, 10, 26, 0.7) !important;
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(6, 182, 212, 0.2);
            z-index: 1000;
        }
        .navbar.scrolled {
            background: rgba(12, 10, 26, 0.95) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }

        /* 品牌名 */
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--main), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(6,182,212,0.3);
        }

        /* 导航链接 */
        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            margin: 0 0.3rem;
            transition: 0.2s;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-link:hover::after { width: 100%; }

        /* 区块标题 */
        .section-title {
            border-left: 6px solid var(--accent);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
        }

        /* 海报卡片 */
        .poster-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(6,182,212,0.1);
            position: relative;
            min-width: 180px;
            max-width: 220px;
            flex-shrink: 0;
        }
        .poster-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0,0,0,0.8), var(--glow);
            border-color: var(--main);
        }
        .poster-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
        }
        .badge-quality {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(236,72,153,0.5);
        }
        .badge-quality.hd { background: #0284c7; }
        .poster-info {
            padding: 0.75rem;
        }
        .poster-info h5 {
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .poster-info .meta {
            font-size: 0.8rem;
            color: #9db8d0;
            display: flex;
            justify-content: space-between;
        }

        /* 横向滚动容器 */
        .h-scroll {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: 1rem;
            scrollbar-width: thin;
            scrollbar-color: var(--main) transparent;
        }
        .h-scroll::-webkit-scrollbar { height: 6px; }
        .h-scroll::-webkit-scrollbar-thumb { background: var(--main); border-radius: 10px; }

        /* 对比表格 */
        .compare-table {
            background: rgba(26, 21, 43, 0.7);
            border-radius: 20px;
            padding: 1.5rem;
        }
        .compare-table table { color: var(--text); }
        .compare-table td { border-color: rgba(6,182,212,0.2); }
        .compare-table .highlight { color: var(--accent); font-weight: 700; }

        /* 英雄区大数字 */
        .hero-stats {
            background: radial-gradient(circle at 20% 30%, rgba(6,182,212,0.2), transparent 50%);
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(6,182,212,0.2);
        }
        .stat-item .number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--main), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* 按钮光泽 */
        .btn-glow {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--main), var(--accent));
            border: none;
            color: #fff;
            font-weight: 700;
            z-index: 1;
            transition: all 0.3s;
        }
        .btn-glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
            z-index: -1;
        }
        .btn-glow:hover::after { left: 100%; }
        .btn-glow:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--main); }

        /* 弹窗遮罩 */
        .movie-modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(12px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .movie-modal.active { display: flex; opacity: 1; }
        .modal-content-card {
            background: var(--card-bg);
            max-width: 500px;
            width: 90%;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--main);
            box-shadow: 0 0 40px rgba(6,182,212,0.3);
        }
        .modal-content-card h4 { color: var(--accent); }
        .modal-content-card .rating { font-size: 1.6rem; color: #fbbf24; font-weight: 800; }

        /* 编号清单 */
        .custom-list {
            padding-left: 1.5rem;
        }
        .custom-list li {
            margin-bottom: 0.8rem;
            list-style-type: none;
            position: relative;
        }
        .custom-list li::before {
            content: counter(item);
            counter-increment: item;
            background: var(--main);
            color: #000;
            border-radius: 50%;
            font-weight: 900;
            width: 24px; height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            position: absolute;
            left: -30px;
            top: 2px;
        }
        .custom-list { counter-reset: item; }

        /* 友情链接 */
        .friend-links a {
            color: var(--text);
            margin-right: 1.2rem;
            opacity: 0.7;
            text-decoration: none;
            transition: 0.2s;
        }
        .friend-links a:hover { opacity: 1; color: var(--main); }

        /* 页脚 */
        footer {
            border-top: 1px solid rgba(6,182,212,0.1);
            padding: 2rem 0;
        }

/* --- 子页面追加 --- */
/* 确保 Bootstrap 组件不出现白底黑字，强制跟随站点变量 */
        .about-section .card, 
        .about-section .list-group-item,
        .about-section .accordion-item,
        .about-section .accordion-button,
        .about-section .accordion-body {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--main);
        }
.about-section .accordion-button:not(.collapsed) {
            background: rgba(6, 182, 212, 0.15);
            color: var(--text);
        }
.about-section .accordion-button:focus {
            box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);
        }
.about-section .accordion-button::after {
            filter: invert(80%) sepia(30%) saturate(400%) hue-rotate(140deg);
        }
.about-section .list-group-item {
            background: rgba(26, 21, 43, 0.7);
        }
/* 自定义列表微调 */
        .custom-list .badge {
            background: var(--accent);
        }
.about-section .section-title {
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
        }
.about-highlight {
            background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(236,72,153,0.1));
            border: 1px solid rgba(6,182,212,0.3);
        }
.about-stats i {
            color: var(--accent);
        }
.about-stats .hero-stats span {
            color: var(--main);
        }

/* --- 子页面追加 --- */
.disclaimer-wrap {
            padding: 60px 0;
            max-width: 900px;
            margin: 0 auto;
        }
.disclaimer-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text);
        }
.disclaimer-subtitle {
            color: var(--main);
            font-size: 1rem;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }
.disclaimer-section {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
            border-left: 4px solid var(--main);
            box-shadow: var(--shadow);
        }
.disclaimer-section h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--main);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-section h2 i {
            color: var(--accent);
        }
.disclaimer-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
            color: var(--text);
            line-height: 1.8;
        }
.disclaimer-section li {
            margin-bottom: 8px;
        }
.disclaimer-highlight {
            background: rgba(6, 182, 212, 0.1);
            border-radius: 8px;
            padding: 15px 20px;
            margin: 15px 0;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }
.disclaimer-highlight strong {
            color: var(--accent);
        }
.disclaimer-wrap {
                padding: 40px 15px;
            }
.disclaimer-section {
                padding: 20px;
            }
.disclaimer-title {
                font-size: 1.6rem;
            }

/* --- 子页面追加 --- */
/* 页面专属样式——隐私页 */
        .privacy-hero {
            padding: 4rem 0 2rem;
            text-align: center;
        }
.privacy-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--main), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.8rem;
        }
.privacy-hero .subtitle {
            color: var(--text);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
.privacy-section {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 1.8rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(6, 182, 212, 0.15);
        }
.privacy-section h2 {
            color: var(--main);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.privacy-section h2 i {
            color: var(--accent);
            font-size: 1.3rem;
        }
.privacy-section p, .privacy-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            opacity: 0.9;
        }
.privacy-section ul, .privacy-section ol {
            padding-left: 1.2rem;
            margin-bottom: 1rem;
        }
.privacy-section li {
            margin-bottom: 0.5rem;
        }
.privacy-badge {
            display: inline-block;
            background: rgba(6, 182, 212, 0.15);
            color: var(--main);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
.privacy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
.privacy-card {
            background: rgba(6, 182, 212, 0.06);
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
.privacy-card:hover {
            background: rgba(6, 182, 212, 0.12);
            transform: translateY(-4px);
            box-shadow: var(--glow);
        }
.privacy-card i {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
.privacy-card h3 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }
.privacy-card p {
            font-size: 0.85rem;
            opacity: 0.8;
            line-height: 1.6;
        }
.last-updated {
            text-align: center;
            color: var(--text);
            opacity: 0.6;
            font-size: 0.85rem;
            margin: 2rem 0 1rem;
            padding: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
.back-home {
            text-align: center;
            margin: 2rem 0 3rem;
        }
.back-home a {
            display: inline-block;
            padding: 0.8rem 2.5rem;
            background: linear-gradient(135deg, var(--main), var(--accent));
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
.back-home a:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
        }

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