:root {
        --primary: #e50914;
        --accent: #f5c518;
        --bg: #0b0b0f;
        --text: #f5f5f7;
        --border: rgba(245, 245, 247, 0.15);
        --muted: rgba(245, 245, 247, 0.7);
        --card-bg: #111118;
        --mono: 'SF Mono', 'Fira Code', monospace;
    }
    * { box-sizing: border-box; }
    body {
        background-color: var(--bg);
        color: var(--text);
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        line-height: 1.6;
        scroll-behavior: smooth;
        margin: 0;
        padding: 0;
    }
    /* 滚动进度条 */
    #scrollProgress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: var(--accent);
        z-index: 9999;
        transition: width 0.1s;
    }
    /* 导航 */
    .navbar-custom {
        background: rgba(11, 11, 15, 0.85);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--border);
        padding: 0.8rem 0;
        z-index: 999;
    }
    .navbar-brand {
        font-weight: 900;
        font-size: 1.6rem;
        color: var(--text) !important;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .navbar-brand i {
        color: var(--accent);
        font-size: 1.8rem;
    }
    .navbar-nav .nav-link {
        color: var(--text) !important;
        font-weight: 500;
        margin: 0 0.75rem;
        font-size: 1rem;
        border-bottom: 2px solid transparent;
        transition: 0.2s;
        padding: 0.25rem 0 !important;
    }
    .navbar-nav .nav-link:hover {
        border-bottom-color: var(--accent);
        color: var(--accent) !important;
    }
    /* 通用区 */
    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: center;
        padding: 3rem 0 1rem;
    }
    .stat-item {
        font-family: var(--mono);
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--accent);
    }
    .stat-item span {
        font-size: 0.9rem;
        color: var(--muted);
        font-weight: 400;
        display: block;
        letter-spacing: 1px;
    }
    .section-title {
        font-weight: 800;
        font-size: 2.5rem;
        letter-spacing: -1px;
        border-left: 6px solid var(--primary);
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }
    .section-sub {
        color: var(--muted);
        margin-top: -0.5rem;
        margin-bottom: 2rem;
    }
    /* 电影卡片 */
    .movie-card {
        background: transparent;
        border: 1px solid var(--border);
        border-radius: 0; /* 直角极简 */
        transition: all 0.25s ease;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        margin-bottom: 1.5rem;
        height: 100%;
    }
    .movie-card:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        border-color: var(--accent);
    }
    .poster-wrapper {
        position: relative;
        aspect-ratio: 2/3;
        background: #1a1a22;
        overflow: hidden;
    }
    .poster-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .poster-wrapper .play-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.2s;
    }
    .movie-card:hover .play-overlay {
        opacity: 1;
    }
    .play-overlay i {
        font-size: 3rem;
        color: white;
        background: rgba(229, 9, 20, 0.8);
        border-radius: 50%;
        padding: 1rem;
    }
    .quality-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.7);
        color: var(--accent);
        font-family: var(--mono);
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        border: 1px solid var(--accent);
        letter-spacing: 1px;
    }
    .card-info {
        padding: 0.8rem 0.6rem 0.9rem;
        background: transparent;
    }
    .card-title {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .card-meta {
        font-size: 0.8rem;
        color: var(--muted);
        display: flex;
        justify-content: space-between;
        font-family: var(--mono);
    }
    /* 侧滑弹窗 */
    .side-drawer {
        position: fixed;
        top: 0;
        right: -480px;
        width: 460px;
        max-width: 92vw;
        height: 100vh;
        background: #0f0f15;
        border-left: 1px solid var(--border);
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        overflow-y: auto;
        padding: 2rem 1.5rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.7);
    }
    .side-drawer.active {
        right: 0;
    }
    .drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: 0.2s;
    }
    .drawer-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }
    .drawer-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.6rem;
        color: var(--text);
        cursor: pointer;
        background: none;
        border: none;
    }
    .drawer-poster img {
        width: 100%;
        border: 1px solid var(--border);
    }
    .drawer-fields {
        margin-top: 1.5rem;
    }
    .drawer-fields p {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
    .drawer-fields strong {
        color: var(--accent);
        width: 80px;
        display: inline-block;
    }
    .rating-star {
        color: var(--accent);
    }
    /* 标签页切换 */
    .tab-pills .nav-link {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text);
        margin-right: 0.5rem;
        border-radius: 0;
        font-weight: 500;
    }
    .tab-pills .nav-link.active {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }
    /* 时间线 */
    .timeline {
        border-left: 2px solid var(--border);
        margin-left: 1rem;
        padding-left: 1.5rem;
    }
    .timeline-item {
        margin-bottom: 1.5rem;
        position: relative;
    }
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -1.85rem;
        top: 0.3rem;
        width: 10px;
        height: 10px;
        background: var(--accent);
        border-radius: 50%;
    }
    /* 友链 */
    .friend-links {
        border-top: 1px solid var(--border);
        padding: 2rem 0;
        margin-top: 3rem;
    }
    .friend-links h5 {
        font-size: 0.9rem;
        letter-spacing: 2px;
        color: var(--muted);
    }
    /* 回到顶部 */
    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 48px;
        height: 48px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        cursor: pointer;
        z-index: 999;
        box-shadow: 0 2px 12px rgba(229, 9, 20, 0.4);
    }
    #backToTop.show {
        opacity: 1;
        visibility: visible;
    }
    /* 其他 */
    .category-card {
        background: transparent;
        border: 1px solid var(--border);
        padding: 1rem;
        text-align: center;
        transition: 0.2s;
    }
    .category-card:hover {
        border-color: var(--accent);
        background: rgba(245, 197, 24, 0.03);
    }
    .btn-outline-accent {
        border: 1px solid var(--accent);
        color: var(--accent);
        border-radius: 0;
        padding: 0.4rem 1rem;
    }
    .btn-outline-accent:hover {
        background: var(--accent);
        color: #0b0b0f;
    }
    footer {
        border-top: 1px solid var(--border);
        padding: 2rem 0;
        color: var(--muted);
        font-size: 0.9rem;
    }
    .mono { font-family: var(--mono); }
    @media (max-width: 768px) {
        .section-title { font-size: 2rem; }
        .hero-stats { gap: 1.5rem; }
        .stat-item { font-size: 1.6rem; }
        .side-drawer { width: 85vw; }
    }

/* --- 子页面追加 --- */
.about-hero {
            padding: 80px 0 50px;
            background: linear-gradient(180deg, rgba(229, 9, 20, 0.12) 0%, transparent 100%);
        }
.about-section {
            margin-bottom: 60px;
        }
.about-section h2 {
            color: var(--text);
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            padding-left: 18px;
        }
.about-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            bottom: 8px;
            width: 4px;
            background: var(--primary);
            border-radius: 4px;
        }
.about-section p, .about-section li {
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.8;
        }
.about-section strong {
            color: var(--text);
        }
.about-highlight {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            margin-top: 25px;
        }
.about-highlight .stat-item {
            text-align: center;
        }
.about-highlight .stat-item .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            font-family: var(--mono);
        }
.about-highlight .stat-item .stat-label {
            color: var(--muted);
            font-size: 0.9rem;
            margin-top: 5px;
        }
.timeline-item .timeline-title {
            color: var(--text);
            font-weight: 600;
            font-size: 1.15rem;
        }
.timeline-item .timeline-date {
            color: var(--accent);
            font-size: 0.85rem;
            font-family: var(--mono);
            margin-bottom: 8px;
        }
.feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.feature-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
.feature-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
.feature-item i {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
.feature-item h4 {
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
.feature-item p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 — 免责声明页 */
        .disclaimer-hero { padding: 100px 0 50px; background: linear-gradient(180deg, rgba(229, 9, 20, 0.08) 0%, transparent 100%); }
.disclaimer-hero .section-title { font-size: 2.6rem; font-weight: 800; margin-bottom: 16px; }
.disclaimer-hero .section-sub { max-width: 680px; margin: 0 auto; }
.disclaimer-content { padding: 50px 0 70px; }
.disclaimer-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 40px 44px; margin-bottom: 28px; transition: border-color .3s ease; }
.disclaimer-card:hover { border-color: rgba(229, 9, 20, 0.4); }
.disclaimer-card h2 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.disclaimer-card h2 i { color: var(--primary); font-size: 1.3rem; width: 28px; text-align: center; }
.disclaimer-card p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.98rem; }
.disclaimer-card p:last-child { margin-bottom: 0; }
.disclaimer-card ul { padding-left: 20px; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }
.disclaimer-card ul li { margin-bottom: 6px; }
.disclaimer-card ul li::marker { color: var(--primary); }
.disclaimer-card .highlight { color: var(--text); font-weight: 500; }
.disclaimer-card .tag { display: inline-block; background: rgba(229, 9, 20, 0.12); color: var(--primary); padding: 2px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-right: 8px; margin-bottom: 6px; }
.update-info { font-family: var(--mono); font-size: 0.8rem; color: rgba(245, 245, 247, 0.4); margin-top: 30px; text-align: center; }
.contact-box { background: rgba(229, 9, 20, 0.06); border: 1px solid rgba(229, 9, 20, 0.2); border-radius: 12px; padding: 20px 24px; margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-box i { font-size: 1.8rem; color: var(--primary); }
.contact-box span { color: var(--text); font-weight: 500; }
.contact-box .btn-outline-accent { margin-left: auto; }
.disclaimer-hero { padding: 70px 0 30px; }
.disclaimer-hero .section-title { font-size: 1.9rem; }
.disclaimer-card { padding: 28px 22px; }
.disclaimer-card h2 { font-size: 1.25rem; }
.contact-box { flex-direction: column; align-items: flex-start; }
.contact-box .btn-outline-accent { margin-left: 0; }

/* --- 子页面追加 --- */
/* 页面专属样式 */
        .privacy-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px 80px;
        }
.privacy-hero {
            text-align: center;
            padding: 60px 20px 40px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 50px;
            background: linear-gradient(180deg, rgba(229, 9, 20, 0.08) 0%, transparent 100%);
        }
.privacy-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.3;
        }
.privacy-hero h1 span {
            color: var(--primary);
        }
.privacy-hero .subtitle {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
.privacy-block {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 35px 40px;
            margin-bottom: 30px;
            transition: border-color 0.3s ease;
        }
.privacy-block:hover {
            border-color: rgba(229, 9, 20, 0.4);
        }
.privacy-block h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
.privacy-block h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.privacy-block h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 12px;
        }
.privacy-block p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.privacy-block ul, .privacy-block ol {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 15px;
            padding-left: 20px;
        }
.privacy-block li {
            margin-bottom: 8px;
        }
.privacy-block strong {
            color: var(--text);
        }
.privacy-block .highlight {
            background: rgba(229, 9, 20, 0.1);
            border-left: 3px solid var(--primary);
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
.privacy-block .highlight p {
            margin-bottom: 0;
            color: var(--text);
        }
.privacy-block .highlight i {
            color: var(--accent);
            margin-right: 8px;
        }
.privacy-block .table-custom {
            width: 100%;
            margin: 20px 0;
            border-collapse: collapse;
        }
.privacy-block .table-custom th,
        .privacy-block .table-custom td {
            padding: 12px 15px;
            border: 1px solid var(--border);
            color: var(--muted);
            font-size: 0.9rem;
        }
.privacy-block .table-custom th {
            background: rgba(229, 9, 20, 0.1);
            color: var(--text);
            font-weight: 600;
        }
.privacy-updated {
            text-align: center;
            color: var(--muted);
            font-size: 0.85rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
.privacy-updated .mono {
            font-family: var(--mono);
            color: var(--accent);
        }
.privacy-hero h1 {
                font-size: 1.8rem;
            }
.privacy-block {
                padding: 25px 20px;
            }
.privacy-block .table-custom {
                display: block;
                overflow-x: auto;
            }
/* 导航高亮当前页 */
        .nav-link.active {
            color: var(--primary) !important;
            font-weight: 600;
        }