:root {
            --primary: #6d5dfc;
            --accent: #22d3ee;
            --bg-dark: #0f1020;
            --text-light: #e8eaf6;
            --card-bg: #1b1d35;
            --border-subtle: rgba(232,234,246,0.08);
            --shadow: 0 8px 20px rgba(0,0,0,0.5);
        }
        * { scroll-behavior: smooth; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            letter-spacing: 0.01em;
        }
        /* 滚动进度条 */
        #scroll-progress {
            position: fixed;
            top: 0; left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            width: 0%;
            z-index: 9999;
            border-radius: 2px;
        }
        /* 导航 */
        .navbar-custom {
            background: rgba(15,16,32,0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 12px 0;
        }
        .navbar-brand-custom {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--text-light);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .navbar-brand-custom i { color: var(--accent); }
        .nav-link-custom {
            color: rgba(232,234,246,0.8);
            font-weight: 500;
            margin: 0 12px;
            transition: 0.2s;
        }
        .nav-link-custom:hover { color: var(--accent); }
        /* Hero 数字区 */
        .hero-stats {
            background: radial-gradient(circle at 20% 20%, rgba(109,93,252,0.15), transparent 50%);
            border-bottom: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
        }
        .stat-number {
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1.2;
        }
        .stat-label {
            color: rgba(232,234,246,0.7);
            font-weight: 400;
        }
        /* 区块标题 */
        .section-title {
            font-weight: 800;
            font-size: 1.9rem;
            border-left: 6px solid var(--accent);
            padding-left: 16px;
            margin: 40px 0 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-title i { color: var(--primary); }
        /* 影片卡片 */
        .movie-card {
            background: var(--card-bg);
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            height: 100%;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px rgba(0,0,0,0.7);
        }
        .poster-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2 / 3;
            background: #252848;
        }
        .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .badge-quality {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(0,0,0,0.75);
            color: var(--accent);
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 6px;
            border: 1px solid var(--accent);
            font-weight: 700;
        }
        .movie-info {
            padding: 12px 10px;
            background: var(--card-bg);
            flex-grow: 1;
        }
        .movie-title {
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 6px;
        }
        .movie-meta {
            font-size: 0.8rem;
            color: rgba(232,234,246,0.6);
            display: flex;
            gap: 8px;
        }
        .movie-rating { color: #fbbf24; font-weight: 700; }
        /* 横向滚动 */
        .horizontal-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: thin;
        }
        .horizontal-scroll::-webkit-scrollbar { height: 6px; }
        .horizontal-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }
        .h-scroll-item { flex: 0 0 200px; }
        /* 分类入口 */
        .category-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1b1d35;
            border: 1px solid var(--border-subtle);
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.2s;
            cursor: default;
        }
        .category-chip i { color: var(--primary); }
        .category-chip:hover { background: #262a4a; }
        /* 排行榜 */
        .rank-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 8px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .rank-num {
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--accent);
            width: 45px;
            text-align: center;
        }
        /* 折叠面板 */
        .accordion-custom .accordion-item {
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            margin-bottom: 12px;
        }
        .accordion-custom .accordion-button {
            background: var(--card-bg);
            color: var(--text-light);
            box-shadow: none;
            font-weight: 600;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: #23264a;
            color: var(--accent);
        }
        /* 侧边弹窗 */
        .side-drawer {
            position: fixed;
            top: 0; right: -480px;
            width: 400px;
            height: 100%;
            background: var(--card-bg);
            z-index: 1050;
            transition: right 0.35s ease;
            box-shadow: -10px 0 40px rgba(0,0,0,0.7);
            border-left: 1px solid var(--border-subtle);
            padding: 28px;
            overflow-y: auto;
        }
        .side-drawer.active { right: 0; }
        .drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            z-index: 1040;
        }
        .drawer-backdrop.active { opacity: 1; pointer-events: auto; }
        .drawer-close {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            float: right;
        }
        .footer-custom {
            border-top: 1px solid var(--border-subtle);
            padding: 30px 0 20px;
            background: #0a0b18;
        }
        .friend-links a { margin: 0 8px; color: var(--accent); text-decoration: none; font-size: 0.9rem; }

/* --- 子页面追加 --- */
/* 本页专属样式 - 关于我们页面 */
        .about-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15) 0%, rgba(34, 211, 238, 0.08) 50%, transparent 100%);
        }
.about-section {
            padding: 60px 0;
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.about-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            margin-bottom: 20px;
        }
.about-stat {
            text-align: center;
            padding: 30px 20px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            margin-bottom: 20px;
        }
.about-stat .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
.about-stat .stat-label {
            font-size: 0.9rem;
            color: rgba(232, 234, 246, 0.7);
            margin-top: 8px;
        }
.about-timeline {
            position: relative;
            padding-left: 30px;
        }
.about-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
        }
.timeline-item {
            position: relative;
            padding-bottom: 40px;
            padding-left: 20px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 2px solid var(--bg-dark);
        }
.timeline-year {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
        }
.value-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.value-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 12px;
        }
.value-list li:last-child {
            border-bottom: none;
        }
.value-list i {
            color: var(--accent);
            font-size: 1.1rem;
        }
.section-title h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--text-light) 0%, rgba(232, 234, 246, 0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
.section-title p {
            color: rgba(232, 234, 246, 0.6);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
.cta-box {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.2), rgba(34, 211, 238, 0.1));
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            margin: 40px 0;
        }
.cta-box h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
.cta-box p {
            color: rgba(232, 234, 246, 0.7);
            max-width: 600px;
            margin: 0 auto 30px;
        }
.about-hero {
                padding: 80px 0 40px;
            }
.about-card {
                padding: 25px;
                margin-bottom: 20px;
            }
.cta-box {
                padding: 30px 20px;
            }
.section-title h2 {
                font-size: 1.6rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式,补充站点样式表未覆盖的部分 */
        .disclaimer-hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1c3a 100%);
            padding: 80px 0 50px;
            border-bottom: 1px solid var(--border-subtle);
        }
.disclaimer-hero h1 {
            color: var(--text-light);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
.disclaimer-hero h1 span {
            color: var(--accent);
        }
.disclaimer-hero p {
            color: rgba(232,234,246,0.7);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }
.disclaimer-section {
            padding: 50px 0;
            background: var(--bg-dark);
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 35px 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.2s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-3px);
        }
.disclaimer-card h2 {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-card h2 i {
            font-size: 1.3rem;
            color: var(--primary);
        }
.disclaimer-card p, .disclaimer-card li {
            color: rgba(232,234,246,0.85);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 12px;
        }
.disclaimer-card ul {
            padding-left: 20px;
            list-style-type: none;
        }
.disclaimer-card ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
        }
.disclaimer-card ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
.disclaimer-card strong {
            color: var(--text-light);
            font-weight: 600;
        }
.disclaimer-card a {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px dashed rgba(34,211,238,0.3);
            transition: border-color 0.2s;
        }
.disclaimer-card a:hover {
            border-bottom-color: var(--accent);
        }
.update-tag {
            display: inline-block;
            background: rgba(109,93,252,0.2);
            color: var(--accent);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid rgba(109,93,252,0.3);
        }
.disclaimer-hero {
                padding: 60px 0 40px;
            }
.disclaimer-hero h1 {
                font-size: 1.8rem;
            }
.disclaimer-card {
                padding: 25px 20px;
            }
.disclaimer-card h2 {
                font-size: 1.2rem;
            }

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