:root {
            --primary: #e50914;
            --accent: #f5c518;
            --bg-dark: #0b0b0f;
            --text-light: #f5f5f7;
            --radius: 8px;
            --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
            --shadow-hover: 0 12px 24px rgba(229, 9, 20, 0.15);
            --font-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, monospace;
        }

        * { box-sizing: border-box; }

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

        /* 全屏背景剧照氛围 */
        .cinema-bg {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: url('{随机图片}') center/cover no-repeat;
            opacity: 0.06;
            pointer-events: none;
            z-index: 0;
        }
        .content-wrapper {
            position: relative;
            z-index: 2;
            padding-bottom: 2rem;
        }

        /* 导航 */
        .navbar-custom {
            background: rgba(11, 11, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--accent) !important;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(245,197,24,0.3);
        }
        .navbar-brand i {
            color: var(--primary);
            margin-right: 6px;
        }
        .nav-link {
            color: #d0d0d8 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: 0.2s;
        }
        .nav-link:hover {
            color: var(--accent) !important;
        }
        .navbar-toggler {
            border-color: rgba(255,255,255,0.3);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* 打字机Hero */
        .hero-title {
            font-size: clamp(2.2rem, 8vw, 4.2rem);
            font-weight: 900;
            color: #fff;
            min-height: 3em;
        }
        .typewriter {
            border-right: 3px solid var(--accent);
            display: inline-block;
            padding-right: 8px;
            animation: blink 0.8s step-end infinite;
        }
        @keyframes blink { 50% { border-color: transparent; } }

        /* 卡片通用 */
        .movie-card {
            background: #15151d;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid #2a2a35;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: var(--shadow-sm);
        }
        .movie-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .poster-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2/3;
            background: #1c1c26;
        }
        .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
            opacity: 0;
            animation: fadeIn 0.6s forwards;
        }
        @keyframes fadeIn { to { opacity: 1; } }
        .movie-card:hover .poster-wrap img {
            transform: scale(1.05);
        }
        .play-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s;
            border-radius: var(--radius);
        }
        .movie-card:hover .play-overlay {
            opacity: 1;
        }
        .play-overlay i {
            font-size: 3.2rem;
            color: white;
            text-shadow: 0 2px 12px rgba(0,0,0,0.8);
            background: rgba(229, 9, 20, 0.7);
            border-radius: 50%;
            padding: 0.6rem 1rem 0.6rem 1.2rem;
            backdrop-filter: blur(4px);
        }
        .card-badge {
            position: absolute;
            top: 8px; left: 8px;
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .rating-badge {
            position: absolute;
            bottom: 8px; right: 8px;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(4px);
            color: var(--accent);
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 2px 8px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .info-panel {
            padding: 12px 10px 14px;
            background: #0f0f15;
        }
        .movie-title {
            font-weight: 700;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
            color: #f5f5f7;
        }
        .meta {
            display: flex;
            justify-content: space-between;
            color: #9a9aab;
            font-size: 0.75rem;
            font-family: var(--font-mono);
        }

        /* 区块标题 */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #262632;
            padding-bottom: 0.6rem;
        }
        .section-title {
            font-weight: 900;
            font-size: 1.7rem;
            color: #fff;
            letter-spacing: -0.02em;
        }
        .section-title i {
            color: var(--accent);
            margin-right: 6px;
        }

        /* 手风琴说明 */
        .accordion-item {
            background: #101018;
            border: 1px solid #2a2a36;
            border-radius: var(--radius) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .accordion-button {
            background: #15151f;
            color: var(--text-light);
            font-weight: 600;
            box-shadow: none;
        }
        .accordion-button:not(.collapsed) {
            background: #1c1c28;
            color: var(--accent);
        }
        .accordion-body {
            background: #0c0c12;
            color: #c5c5d3;
            font-size: 0.95rem;
        }

        /* 特色列表 */
        .feature-list i {
            color: var(--accent);
            margin-right: 12px;
            width: 22px;
            text-align: center;
        }
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #282834;
        }

        /* 等宽数字 */
        .num-highlight {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--accent);
        }
        .stat-item {
            display: inline-flex;
            align-items: baseline;
            gap: 5px;
            background: #15151f;
            padding: 6px 16px;
            border-radius: 30px;
        }

        /* 页脚 */
        .footer {
            border-top: 1px solid #20202c;
            padding-top: 2rem;
            margin-top: 3rem;
            color: #8d8d9e;
            font-size: 0.9rem;
        }

        /* 翻转弹窗 */
        .flip-dialog-backdrop {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .flip-dialog-card {
            background: #15151f;
            border-radius: 16px;
            max-width: 460px;
            width: 100%;
            padding: 24px;
            border: 1px solid #2a2a3a;
            position: relative;
            box-shadow: 0 30px 40px rgba(0,0,0,0.6);
            animation: flipIn 0.4s;
        }
        @keyframes flipIn {
            from { transform: rotateY(90deg); opacity: 0; }
            to { transform: rotateY(0); opacity: 1; }
        }
        .dialog-close {
            position: absolute;
            top: 12px; right: 18px;
            font-size: 2rem;
            color: #aaa;
            background: none;
            border: none;
            cursor: pointer;
            line-height: 1;
        }
        .dialog-close:hover { color: var(--primary); }

        /* 懒加载图片占位渐显 */
        img[lazy] {
            background: #1c1c28;
            position: relative;
        }

        .btn-watch { background: var(--primary); border: none; }

        @media (max-width: 768px) {
            .section-title { font-size: 1.3rem; }
        }

/* --- 子页面追加 --- */
/* 排行榜页面专属样式 */
        .ranking-page-wrapper {
            padding-top: 120px;
            padding-bottom: 60px;
        }
.ranking-hero {
            text-align: center;
            margin-bottom: 50px;
        }
.ranking-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.ranking-hero p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
.ranking-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }
.ranking-tab-btn {
            padding: 10px 28px;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.ranking-tab-btn:hover,
        .ranking-tab-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
        }
.ranking-section {
            margin-bottom: 50px;
        }
.ranking-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.ranking-section-title i {
            color: var(--accent);
        }
.ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.ranking-item {
            display: flex;
            align-items: center;
            padding: 18px 24px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
.ranking-item:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--primary);
            transform: translateX(5px);
            box-shadow: var(--shadow-hover);
        }
.ranking-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            width: 55px;
            flex-shrink: 0;
            font-family: var(--font-mono);
        }
.ranking-number.top-3 {
            color: var(--primary);
            font-size: 1.8rem;
        }
.ranking-info {
            flex: 1;
            margin-left: 15px;
        }
.ranking-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
.ranking-meta {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            display: flex;
            align-items: center;
            gap: 15px;
        }
.ranking-meta i {
            color: var(--accent);
            margin-right: 4px;
        }
.ranking-score {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent);
            margin-left: auto;
            padding-left: 20px;
            font-family: var(--font-mono);
        }
.ranking-trend {
            color: #4ade80;
            font-size: 0.9rem;
            margin-left: 15px;
        }
.ranking-trend.down {
            color: #f87171;
        }
.ranking-note {
            text-align: center;
            padding: 25px;
            margin-top: 30px;
            background: rgba(255,255,255,0.03);
            border: 1px dashed var(--border-color);
            border-radius: var(--radius);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
.ranking-note i {
            color: var(--accent);
            margin-right: 8px;
        }
.ranking-hero h1 {
                font-size: 2rem;
            }
.ranking-item {
                padding: 14px 16px;
                flex-wrap: wrap;
            }
.ranking-number {
                width: 40px;
                font-size: 1.2rem;
            }
.ranking-title {
                font-size: 1rem;
            }
.ranking-score {
                font-size: 1rem;
                padding-left: 10px;
            }
.ranking-meta {
                font-size: 0.75rem;
                gap: 10px;
                flex-wrap: wrap;
            }
.ranking-trend {
                margin-left: 0;
                width: 100%;
                margin-top: 5px;
            }

/* --- 子页面追加 --- */
/* 本页专属微调 —— 仅补充少量样式，所有变量沿用站点CSS */
        .about-hero {
            padding: 3.5rem 0 2.5rem;
            border-bottom: 1px solid rgba(245, 197, 24, 0.15);
        }
.about-hero .hero-title {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
.about-section {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.about-section h2 i {
            color: var(--accent);
            font-size: 1.6rem;
        }
.about-section p {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(245, 245, 247, 0.85);
            max-width: 800px;
        }
.about-section ul {
            list-style: none;
            padding-left: 0;
        }
.about-section li {
            padding: 0.4rem 0;
            display: flex;
            align-items: baseline;
            gap: 0.6rem;
            color: rgba(245, 245, 247, 0.9);
        }
.about-section li i {
            color: var(--accent);
            font-size: 0.8rem;
            width: 1.2rem;
            flex-shrink: 0;
        }
.stat-box {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.03);
            border-radius: var(--radius);
            border-left: 3px solid var(--primary);
        }
.stat-item .num-highlight {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            font-family: var(--font-mono);
        }
.stat-item span:not(.num-highlight) {
            display: block;
            font-size: 0.8rem;
            color: rgba(245,245,247,0.6);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
.quote-block {
            background: rgba(229, 9, 20, 0.08);
            border-left: 4px solid var(--primary);
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.8rem 0;
            font-style: italic;
            color: var(--text-light);
        }
.quote-block p {
            margin: 0;
        }
/* 导航高亮当前页 */
        .navbar-custom .nav-link.active {
            color: var(--accent) !important;
            font-weight: 600;
        }

/* --- 子页面追加 --- */
.privacy-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
.privacy-content h2 {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            margin-top: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
.privacy-content h2:first-child {
            margin-top: 0;
        }
.privacy-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
            opacity: 0.85;
        }
.privacy-content ul {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            opacity: 0.85;
        }
.privacy-content li {
            margin-bottom: 0.5rem;
        }
.privacy-content strong {
            color: var(--accent);
            font-weight: 600;
        }
.privacy-highlight {
            background: rgba(229, 9, 20, 0.08);
            border-left: 3px solid var(--primary);
            padding: 1.25rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }
.privacy-highlight p {
            margin-bottom: 0;
        }
.privacy-date {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
.privacy-content {
                padding: 1.5rem;
            }
.privacy-content h2 {
                font-size: 1.25rem;
            }

/* --- 子页面追加 --- */
/* 针对免责声明页的少量定制，保持与站点风格一致 */
        .disclaimer-hero {
            padding: 3rem 0 1.5rem;
        }
.disclaimer-section {
            background: rgba(255,255,255,0.02);
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .25s ease;
        }
.disclaimer-section:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.2rem;
            letter-spacing: -0.01em;
            border-bottom: 1px solid rgba(245,197,24,0.2);
            padding-bottom: .6rem;
        }
.disclaimer-section h2 i {
            color: var(--accent);
            margin-right: .5rem;
        }
.disclaimer-section p, .disclaimer-section li {
            color: rgba(245,245,247,0.88);
            line-height: 1.75;
            font-size: 1rem;
        }
.disclaimer-section ul {
            padding-left: 1.2rem;
        }
.disclaimer-section a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
.disclaimer-section a:hover {
            color: #fff;
        }
.highlight-term {
            color: var(--accent);
            font-weight: 500;
        }
.footer-brand-mini {
            color: var(--accent);
        }
/* 覆盖 bootstrap 默认白底（以防万一） */
        .disclaimer-section, .disclaimer-section * {
            background: transparent;
        }

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