:root {
            --primary: #e50914;
            --accent: #f5c518;
            --bg: #0b0b0f;
            --text: #f5f5f7;
            --radius-lg: 24px;
            --radius-md: 16px;
            --shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
        }

        * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

        body {
            background-color: var(--bg);
            color: var(--text);
            letter-spacing: 0.2px;
            overflow-x: hidden;
        }

        /* 滚动条暗色 */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #12121a; }
        ::-webkit-scrollbar-thumb { background: #2a2a35; border-radius: 10px; }

        /* 通用圆角卡片 */
        .poster-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #16161f;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
            height: 100%;
            border: 1px solid rgba(255,255,255,0.03);
        }
        .poster-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 24px 48px rgba(229, 9, 20, 0.15), 0 10px 30px rgba(0,0,0,0.8);
            border-color: rgba(245, 197, 24, 0.2);
        }
        .poster-card img {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            background: linear-gradient(145deg, #2c2c3a, #1e1e28);
            display: block;
            transition: opacity 0.3s ease;
        }
        .poster-card .card-body {
            padding: 1rem;
            background: linear-gradient(0deg, #12121a, transparent);
        }
        .badge-hd {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px);
            color: var(--accent);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 30px;
            letter-spacing: 0.5px;
            border: 1px solid rgba(245,197,24,0.3);
        }
        .rating-star {
            color: var(--accent);
            font-weight: 600;
        }

        /* 超大标题 */
        .display-hero {
            font-size: clamp(2.8rem, 8vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        /* 柔和弥散阴影 */
        .soft-glow {
            box-shadow: 0 20px 60px rgba(229, 9, 20, 0.2), 0 20px 40px rgba(0,0,0,0.5);
        }

        /* 角标标清晰度 */
        .corner-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(229, 9, 20, 0.85);
            padding: 4px 10px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        /* 按钮流动效果 */
        .btn-special {
            background: linear-gradient(90deg, var(--primary), #ff3d3d, var(--primary));
            background-size: 200% 100%;
            transition: background-position 0.5s ease, transform 0.2s ease;
            border: none;
            font-weight: 700;
            border-radius: 60px;
            padding: 0.75rem 2rem;
            color: white;
            box-shadow: 0 6px 18px rgba(229,9,20,0.4);
        }
        .btn-special:hover {
            background-position: 100% 0;
            transform: scale(1.02);
        }
        .btn-outline-glow {
            border: 1px solid rgba(245,197,24,0.6);
            background: transparent;
            border-radius: 60px;
            color: var(--accent);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-outline-glow:hover {
            background: rgba(245,197,24,0.1);
            border-color: var(--accent);
        }

        /* 导航折叠 */
        .navbar-dark { background-color: rgba(11, 11, 15, 0.8); backdrop-filter: blur(12px); }
        .navbar-brand { font-weight: 800; font-size: 1.5rem; }
        .navbar-brand i { color: var(--primary); }

        /* 回到顶部 */
        #backToTop {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            font-size: 1.2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 1000;
            box-shadow: 0 6px 20px rgba(229,9,20,0.5);
        }
        #backToTop.show {
            opacity: 1;
            pointer-events: auto;
        }

        /* 详情弹窗 - 全屏沉浸 */
        .movie-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .movie-modal.show { display: flex; }
        .modal-content-box {
            background: rgba(20, 20, 28, 0.8);
            border-radius: 32px;
            max-width: 700px;
            width: 100%;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: var(--shadow);
            position: relative;
            backdrop-filter: blur(10px);
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--text);
            cursor: pointer;
        }
        .modal-rating { color: var(--accent); font-weight: 800; }

        /* 手风琴、专题 */
        .accordion-item {
            background-color: #16161f;
            border-radius: var(--radius-md) !important;
            border: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 12px;
        }
        .accordion-button {
            background: transparent;
            color: var(--text);
            border-radius: var(--radius-md) !important;
            font-weight: 600;
        }
        .accordion-button:not(.collapsed) {
            background: rgba(229,9,20,0.15);
            color: var(--accent);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* 图片渐显 */
        img.lazy-load {
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        img.lazy-load.loaded {
            opacity: 1;
        }

/* --- 子页面追加 --- */
/* 保证所有bootstrap组件继承暗色, 即使意外使用也不破相 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .form-label, .input-group-text,
        .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
        .nav-link, .navbar, .navbar-brand, .btn-light, .btn-outline-* {
            background-color: var(--bg) !important;
            color: var(--text) !important;
            border-color: rgba(245, 197, 24, 0.2) !important;
        }
.accordion-button:focus {
            box-shadow: 0 0 0 0.2rem rgba(229, 9, 20, 0.2);
        }
/* 页面微调 */
        .about-hero {
            background: radial-gradient(circle at 20% 30%, rgba(229,9,20,0.18), transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(245,197,24,0.08), transparent 40%);
            border-bottom: 1px solid rgba(245,197,24,0.1);
        }
.about-section {
            border-bottom: 1px dashed rgba(245,197,24,0.15);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.stat-number {
            font-weight: 900;
            color: var(--accent);
            font-size: 2.4rem;
            line-height: 1.2;
        }
.feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(229,9,20,0.12);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent);
            margin-right: 1rem;
            flex-shrink: 0;
        }
.genre-tag {
            background: rgba(229,9,20,0.15);
            border: 1px solid rgba(245,197,24,0.25);
            border-radius: 30px;
            padding: 0.4rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text);
            margin: 0.3rem;
            display: inline-block;
        }
.genre-tag i {
            color: var(--accent);
            margin-right: 6px;
        }
.footer-links a {
            color: var(--text);
            opacity: 0.8;
            transition: 0.2s;
            text-decoration: none;
            margin-right: 1.5rem;
        }
.footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }

/* --- 子页面追加 --- */
/* 让声明卡片边缘更贴合本站圆角风格 */
        .legal-card {
            background: var(--card-bg, rgba(255,255,255,0.03));
            border: 1px solid var(--border-color, rgba(255,255,255,0.1));
            border-radius: var(--radius-lg, 24px);
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow, 0 18px 40px rgba(0,0,0,0.6));
        }
.legal-card h2 {
            color: var(--accent, #f5c518);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.2rem;
            border-left: 4px solid var(--primary, #e50914);
            padding-left: 1.2rem;
        }
.legal-card p, .legal-card li {
            color: rgba(245,245,247,0.88);
            line-height: 1.8;
            font-size: 1rem;
        }
.legal-card a {
            color: var(--accent, #f5c518);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
.legal-card a:hover {
            color: #fff;
        }
.legal-list {
            list-style: none;
            padding-left: 0;
        }
.legal-list li {
            padding-left: 1.8rem;
            position: relative;
            margin-bottom: 0.8rem;
        }
.legal-list li::before {
            content: "◆";
            color: var(--primary, #e50914);
            position: absolute;
            left: 0;
            font-size: 0.9rem;
            top: 0.2rem;
        }
.muted-legal {
            color: rgba(245,245,247,0.5);
            font-size: 0.9rem;
        }
.footer-disclaimer {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 2rem;
            padding-top: 1.5rem;
            font-size: 0.9rem;
            color: rgba(245,245,247,0.6);
        }
/* 覆盖 bootstrap 可能带来的白底 */
        .navbar, .navbar-dark, .navbar-brand, .nav-link {
            background: transparent !important;
        }
.collapse {
            background: transparent;
        }

/* --- 子页面追加 --- */
/* 本页专属微调：隐私版块间距与卡片风格延续首页暗色 */
        .privacy-section { padding: 2.5rem 0; }
.privacy-card {
            background: var(--bg);
            border: 1px solid rgba(245, 197, 24, 0.15);
            border-radius: var(--radius-md);
            padding: 1.8rem 1.5rem;
            box-shadow: var(--shadow);
            height: 100%;
            transition: border-color 0.2s;
        }
.privacy-card:hover { border-color: rgba(245, 197, 24, 0.4); }
.privacy-card h3 {
            color: var(--accent);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.privacy-card h3 i { font-size: 1.1rem; color: var(--primary); }
.privacy-card p, .privacy-card li {
            color: rgba(245, 245, 247, 0.85);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.privacy-card ul { padding-left: 1.2rem; }
.privacy-card ul li { margin-bottom: 0.4rem; }
.privacy-top-wrap {
            background: rgba(0,0,0,0.2);
            border-radius: var(--radius-lg);
            padding: 2rem 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.05);
        }
.navbar-dark .navbar-nav .nav-link.active { color: var(--accent) !important; }
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }
hr { border-color: rgba(255,255,255,0.1); }
.list-unstyled li { margin-bottom: 0.4rem; }

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