:root {
        --primary: #e50914;
        --accent: #f5c518;
        --bg: #0b0b0f;
        --text: #f5f5f7;
        --text-dim: #a0a0a8;
        --border-light: #2a2a35;
        --card-bg: #15151c;
        --radius: 8px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
        background-color: var(--bg);
        color: var(--text);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        overflow-x: hidden;
        line-height: 1.6;
    }
    /* 导航 */
    .navbar-custom {
        background: rgba(11, 11, 15, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-light);
        padding: 0.6rem 0;
        z-index: 1000;
    }
    .navbar-brand {
        font-weight: 900;
        font-size: 1.8rem;
        letter-spacing: 1px;
        color: var(--text) !important;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .navbar-brand i {
        color: var(--accent);
        font-size: 1.6rem;
    }
    .navbar-nav .nav-link {
        color: var(--text-dim);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        transition: all 0.3s;
        border-radius: 20px;
        margin: 0 2px;
    }
    .navbar-nav .nav-link:hover {
        color: var(--accent);
        background: rgba(245, 197, 24, 0.08);
    }
    .navbar-toggler {
        border: 1px solid var(--border-light);
        color: var(--text);
    }
    .navbar-toggler-icon {
        filter: invert(1);
    }
    /* Hero */
    .hero-section {
        position: relative;
        padding: 100px 0 60px;
        background: radial-gradient(circle at 20% 30%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(245, 197, 24, 0.1) 0%, transparent 40%);
        overflow: hidden;
    }
    .hero-title {
        font-size: clamp(3rem, 7vw, 4.5rem);
        font-weight: 900;
        line-height: 1.1;
        background: linear-gradient(120deg, var(--text) 0%, var(--accent) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
    .hero-sub {
        font-size: 1.2rem;
        color: var(--text-dim);
        max-width: 600px;
        margin: 20px auto 0;
    }
    .hero-float {
        position: absolute;
        font-size: 2rem;
        opacity: 0.12;
        animation: floatUp 6s ease-in-out infinite;
    }
    @keyframes floatUp {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(5deg); }
    }
    /* 分类胶囊 */
    .category-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 30px 0 10px;
    }
    .category-pill {
        padding: 8px 22px;
        border-radius: 50px;
        background: var(--card-bg);
        border: 1px solid var(--border-light);
        color: var(--text-dim);
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
    }
    .category-pill:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(245, 197, 24, 0.06);
    }
    /* 区块通用 */
    .section-title {
        font-size: 2rem;
        font-weight: 900;
        margin-bottom: 25px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .section-title i {
        color: var(--primary);
        font-size: 1.6rem;
    }
    .section-title .en {
        color: var(--text-dim);
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .section-block { padding: 50px 0; border-top: 1px solid var(--border-light); }
    /* 海报卡片 */
    .poster-card {
        background: var(--card-bg);
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--border-light);
        transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
        cursor: pointer;
        height: 100%;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
    }
    .poster-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .poster-card:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        border-color: var(--accent);
    }
    .poster-img-wrapper {
        aspect-ratio: 2/3;
        background: linear-gradient(135deg, #1a1a24, #242432);
        position: relative;
        overflow: hidden;
    }
    .poster-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s;
    }
    .poster-rating {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(11, 11, 15, 0.85);
        backdrop-filter: blur(4px);
        padding: 3px 10px;
        border-radius: 30px;
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .poster-body {
        padding: 12px 14px;
    }
    .poster-title {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .poster-meta {
        font-size: 0.8rem;
        color: var(--text-dim);
        display: flex;
        gap: 8px;
        align-items: center;
        font-family: 'Courier New', monospace;
    }
    /* 横向滚动 */
    .poster-row {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 10px 5px 20px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--card-bg);
    }
    .poster-row::-webkit-scrollbar {
        height: 6px;
    }
    .poster-row::-webkit-scrollbar-track {
        background: var(--card-bg);
        border-radius: 10px;
    }
    .poster-row::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
    .poster-row .poster-card {
        min-width: 180px;
        flex-shrink: 0;
    }
    /* 排行榜 */
    .rank-list {
        list-style: none;
        padding: 0;
    }
    .rank-item {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: var(--card-bg);
        border-radius: var(--radius);
        margin-bottom: 8px;
        transition: background 0.3s;
        border: 1px solid transparent;
    }
    .rank-item:hover {
        background: rgba(245, 197, 24, 0.04);
        border-color: var(--border-light);
    }
    .rank-number {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 800;
        font-size: 1rem;
        margin-right: 15px;
        flex-shrink: 0;
    }
    .rank-gold { background: linear-gradient(135deg, #ffd700, #ffb800); color: #1a1a1a; }
    .rank-silver { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); color: #1a1a1a; }
    .rank-bronze { background: linear-gradient(135deg, #cd7f32, #b8722c); color: #1a1a1a; }
    .rank-other { background: var(--border-light); color: var(--text-dim); }
    .rank-info { flex: 1; }
    .rank-name { font-weight: 600; }
    .rank-score { color: var(--accent); font-weight: 700; font-family: 'Courier New', monospace; }
    /* 标签页 */
    .tab-nav {
        display: flex;
        gap: 5px;
        border-bottom: 1px solid var(--border-light);
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    .tab-btn {
        background: transparent;
        border: none;
        color: var(--text-dim);
        padding: 10px 20px;
        font-weight: 600;
        border-bottom: 3px solid transparent;
        transition: all 0.3s;
        cursor: pointer;
    }
    .tab-btn.active {
        color: var(--accent);
        border-bottom-color: var(--accent);
    }
    .tab-content {
        display: none;
    }
    .tab-content.active {
        display: block;
        animation: fadeIn 0.4s;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    /* 时间线 */
    .timeline {
        position: relative;
        padding-left: 30px;
    }
    .timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border-light);
    }
    .timeline-item {
        position: relative;
        margin-bottom: 25px;
    }
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -27px;
        top: 6px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
        border: 2px solid var(--bg);
    }
    .timeline-date {
        font-size: 0.85rem;
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 4px;
        font-family: 'Courier New', monospace;
    }
    .timeline-text {
        color: var(--text-dim);
    }
    /* 弹窗 */
    .modal-custom {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .modal-custom.show {
        display: flex;
    }
    .modal-card {
        background: var(--card-bg);
        border-radius: 12px;
        max-width: 700px;
        width: 100%;
        border: 1px solid var(--border-light);
        display: flex;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
        position: relative;
        animation: modalIn 0.3s;
    }
    @keyframes modalIn {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }
    .modal-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        color: var(--text);
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
    }
    .modal-close:hover {
        background: var(--primary);
    }
    .modal-left {
        width: 40%;
        min-height: 300px;
        flex-shrink: 0;
        position: relative;
        background: linear-gradient(135deg, #1a1a24, #242432);
    }
    .modal-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .modal-right {
        flex: 1;
        padding: 30px 25px;
    }
    .modal-title {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 8px;
    }
    .modal-info {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    .modal-info span {
        background: rgba(245, 197, 24, 0.12);
        padding: 3px 12px;
        border-radius: 30px;
        color: var(--accent);
        font-weight: 600;
    }
    .modal-plot {
        color: var(--text-dim);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 15px 0;
    }
    .modal-actors {
        font-size: 0.9rem;
        color: var(--text-dim);
    }
    .modal-actors strong {
        color: var(--text);
    }
    /* 回到顶部 */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 46px;
        height: 46px;
        background: var(--primary);
        color: var(--text);
        border: none;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
    }
    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
    /* 科普 & 贴士 */
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .info-card {
        background: var(--card-bg);
        border-radius: var(--radius);
        padding: 25px;
        border: 1px solid var(--border-light);
    }
    .info-card h4 {
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--accent);
    }
    .info-card p {
        color: var(--text-dim);
        font-size: 0.95rem;
        line-height: 1.8;
    }
    .tips-list {
        list-style: none;
        padding: 0;
    }
    .tips-list li {
        padding: 10px 0;
        border-bottom: 1px dashed var(--border-light);
        color: var(--text-dim);
        display: flex;
        gap: 10px;
        align-items: baseline;
    }
    .tips-list li i {
        color: var(--accent);
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    /* 页脚 */
    .footer {
        background: #08080c;
        border-top: 1px solid var(--border-light);
        padding: 50px 0 20px;
    }
    .footer-links a {
        color: var(--text-dim);
        text-decoration: none;
        margin: 0 15px;
        transition: color 0.3s;
    }
    .footer-links a:hover {
        color: var(--accent);
    }
    .friend-links {
        border-top: 1px solid var(--border-light);
        padding: 25px 0;
        margin-top: 30px;
    }
    .friend-links h5 {
        color: var(--text-dim);
        font-size: 0.9rem;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    .friend-links .links {
        color: var(--text-dim);
        font-size: 0.9rem;
        line-height: 2;
    }
    /* 响应式 */
    @media (max-width: 768px) {
        .hero-section { padding: 70px 0 40px; }
        .hero-title { font-size: 2.5rem; }
        .section-title { font-size: 1.5rem; }
        .poster-row .poster-card { min-width: 140px; }
        .info-grid { grid-template-columns: 1fr; }
        .modal-card { flex-direction: column; }
        .modal-left { width: 100%; min-height: 200px; }
    }

/* --- 子页面追加 --- */
/* 关于页面专属轻量样式 */
        .about-hero { padding: 60px 0 30px; }
.about-hero h1 { color: var(--text); font-weight: 800; font-size: 2.4rem; }
.about-hero h1 span { color: var(--primary); }
.about-hero p.lead { color: var(--text-dim); max-width: 800px; }
.about-section { padding: 40px 0; }
.about-section h2 { color: var(--accent); font-weight: 700; font-size: 1.8rem; margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 15px; }
.about-section p, .about-section li { color: var(--text); line-height: 1.8; }
.about-section li { margin-bottom: 8px; }
.about-card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 25px; height: 100%; transition: transform .2s; }
.about-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.about-card i { color: var(--primary); font-size: 2.2rem; margin-bottom: 15px; }
.about-card h3 { color: var(--text); font-weight: 600; font-size: 1.2rem; margin-bottom: 12px; }
.about-card p { color: var(--text-dim); font-size: .95rem; margin-bottom: 0; }
.value-list li i { color: var(--accent); margin-right: 10px; width: 20px; }
.about-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-item .num { color: var(--primary); font-size: 2.5rem; font-weight: 800; }
.stat-item .label { color: var(--text-dim); font-size: .9rem; }
.about-hero h1 { font-size: 1.8rem; }
.about-section h2 { font-size: 1.5rem; }
.about-card { margin-bottom: 20px; }
.about-stats { gap: 20px; }

/* --- 子页面追加 --- */
/* 本页专属少量样式 */
        .legal-section {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 1.8rem;
            transition: border-color .3s;
        }
.legal-section:hover {
            border-color: var(--primary);
        }
.legal-section h2 {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: .6rem;
        }
.legal-section h2 i {
            color: var(--primary);
        }
.legal-section p {
            color: var(--text-dim);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: .95rem;
        }
.legal-section strong {
            color: var(--text);
        }
.legal-list {
            list-style: none;
            padding-left: 0;
        }
.legal-list li {
            color: var(--text-dim);
            padding: .4rem 0;
            padding-left: 1.6rem;
            position: relative;
            line-height: 1.7;
            font-size: .95rem;
        }
.legal-list li::before {
            content: "\f061";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            position: absolute;
            left: 0;
            top: .4rem;
            font-size: .85rem;
        }
.legal-note {
            background: rgba(229, 9, 20, .08);
            border-left: 3px solid var(--primary);
            padding: 1rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
            color: var(--text-dim);
            font-size: .9rem;
            line-height: 1.7;
        }
.legal-note i {
            color: var(--accent);
            margin-right: .5rem;
        }
.contact-chip {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(245, 197, 24, .1);
            border: 1px solid rgba(245, 197, 24, .3);
            color: var(--accent);
            padding: .4rem 1rem;
            border-radius: 50px;
            font-size: .85rem;
            font-weight: 600;
            margin-top: .5rem;
        }
.legal-section {
                padding: 1.5rem;
            }

/* --- 子页面追加 --- */
/* 页面专属样式，自动合并进站点CSS */
        .privacy-hero {
            padding: 120px 0 60px;
            background: linear-gradient(180deg, rgba(229, 9, 20, 0.08) 0%, transparent 100%);
            border-bottom: 1px solid var(--border-light);
            text-align: center;
        }
.privacy-hero .hero-sub {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-dim);
            font-size: 1.1rem;
            line-height: 1.7;
        }
.privacy-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 0;
        }
.privacy-section {
            margin-bottom: 48px;
            padding: 36px;
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            transition: border-color 0.3s;
        }
.privacy-section:hover {
            border-color: rgba(229, 9, 20, 0.4);
        }
.privacy-section h2 {
            color: var(--text);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
.privacy-section h2 i {
            color: var(--accent);
            margin-right: 10px;
        }
.privacy-section p {
            color: var(--text-dim);
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
.privacy-section ul {
            color: var(--text-dim);
            line-height: 1.8;
            padding-left: 20px;
            margin-bottom: 16px;
        }
.privacy-section ul li {
            margin-bottom: 8px;
            position: relative;
        }
.privacy-section ul li::before {
            content: "→";
            color: var(--accent);
            margin-right: 8px;
            font-weight: 600;
        }
.privacy-section strong {
            color: var(--text);
            font-weight: 600;
        }
.privacy-section .highlight {
            color: var(--accent);
            font-weight: 600;
        }
.last-updated {
            color: var(--text-dim);
            font-size: 0.85rem;
            text-align: center;
            margin-top: -30px;
            margin-bottom: 40px;
            font-style: italic;
        }
.contact-box {
            background: rgba(229, 9, 20, 0.05);
            border: 1px solid rgba(229, 9, 20, 0.2);
            border-radius: var(--radius);
            padding: 24px;
            margin-top: 24px;
        }
.contact-box p {
            margin-bottom: 8px;
        }
.privacy-hero {
                padding: 80px 0 40px;
            }
.privacy-content {
                padding: 40px 0;
            }
.privacy-section {
                padding: 24px;
                margin-bottom: 32px;
            }

/* --- 子页面追加 --- */
/* 网站地图页面专属样式 */
        .sitemap-hero {
            background: linear-gradient(135deg, rgba(229,9,20,.15) 0%, rgba(11,11,15,.9) 60%);
            border-bottom: 1px solid var(--border-light);
        }
.sitemap-hero .hero-title {
            font-weight: 800;
            color: var(--text);
            margin-bottom: .5rem;
        }
.sitemap-hero .hero-sub {
            color: var(--text-dim);
            max-width: 720px;
        }
.map-section {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin-bottom: 24px;
            transition: border-color .2s;
        }
.map-section:hover {
            border-color: var(--primary);
        }
.map-section h2 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.map-section h2 i {
            color: var(--primary);
            font-size: 1.15rem;
        }
.map-section h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-top: 18px;
            margin-bottom: 8px;
            padding-left: 12px;
            border-left: 3px solid var(--accent);
        }
.map-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
.map-list li {
            padding: 7px 0;
            border-bottom: 1px dashed rgba(255,255,255,.06);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .95rem;
        }
.map-list li:last-child {
            border-bottom: none;
        }
.map-list li i {
            color: var(--accent);
            font-size: .75rem;
            width: 16px;
            text-align: center;
        }
.map-list li a {
            color: var(--text);
            text-decoration: none;
            transition: color .2s;
            font-weight: 500;
        }
.map-list li a:hover {
            color: var(--primary);
        }
.map-list li span.dim {
            color: var(--text-dim);
            font-size: .85rem;
            font-weight: 400;
            margin-left: auto;
            padding-left: 12px;
            white-space: nowrap;
        }
.map-tag {
            display: inline-block;
            background: rgba(229,9,20,.12);
            color: var(--primary);
            font-size: .72rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            margin-left: 8px;
            letter-spacing: .3px;
        }
.map-tag.gold {
            background: rgba(245,197,24,.15);
            color: var(--accent);
        }
.breadcrumb-nav {
            font-size: .85rem;
            color: var(--text-dim);
            padding: 18px 0 0;
        }
.breadcrumb-nav a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color .2s;
        }
.breadcrumb-nav a:hover {
            color: var(--primary);
        }
.breadcrumb-nav .sep {
            margin: 0 8px;
            color: rgba(255,255,255,.25);
        }
.map-section {
                padding: 20px 18px;
            }
.map-list li span.dim {
                display: none;
            }