:root {
            --primary: #e50914;
            --accent: #f5c518;
            --bg: #0b0b0f;
            --text: #f5f5f7;
            --card-bg: #16161d;
            --muted: #9b9ba7;
            --border: rgba(245, 197, 24, 0.25);
            --shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
        }
        * { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
        body {
            background-color: var(--bg);
            color: var(--text);
            background-image: radial-gradient(circle at 20% 30%, rgba(229, 9, 20, 0.15) 0%, transparent 25%),
                              radial-gradient(circle at 90% 10%, rgba(245, 197, 24, 0.1) 0%, transparent 20%);
            background-attachment: fixed;
            overflow-x: hidden;
        }
        /* 拟物厚重感: 渐变高光, 投影 */
        .card-movie {
            background: linear-gradient(145deg, #1d1d24, #141419);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            overflow: hidden;
            cursor: pointer;
        }
        .card-movie:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        .card-movie .poster-wrapper {
            position: relative;
            aspect-ratio: 2 / 3;
            overflow: hidden;
            background: #0d0d12;
        }
        .card-movie img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card-movie:hover img { transform: scale(1.05); }
        .badge-ep {
            position: absolute; top: 8px; left: 8px;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(4px);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 30px;
            border-left: 2px solid var(--accent);
            letter-spacing: 0.5px;
        }
        .score-badge {
            position: absolute; bottom: 8px; right: 8px;
            background: rgba(0,0,0,0.8);
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
            padding: 2px 8px;
            border-radius: 20px;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(245,197,24,0.4);
        }
        .heat-badge {
            background: rgba(229, 9, 20, 0.2);
            border: 1px solid rgba(229, 9, 20, 0.5);
            border-radius: 30px;
            padding: 2px 10px;
            font-size: 12px;
            font-weight: 600;
            color: #ff8a8a;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .section-title {
            font-weight: 800;
            letter-spacing: -0.5px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 5px solid var(--primary);
            padding-left: 12px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
        }
        .section-title i { color: var(--accent); }
        .navbar-movie {
            background: rgba(10, 10, 16, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .navbar-movie .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            background: linear-gradient(45deg, #f5c518, #e50914, #f5c518);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 6s ease infinite;
            letter-spacing: 0.5px;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .navbar-movie .nav-link {
            color: #ddd !important;
            font-weight: 500;
            margin: 0 6px;
        }
        .navbar-movie .nav-link:hover { color: var(--accent) !important; }

        /* 渐变文字hero */
        .hero-gradient-text {
            background: linear-gradient(120deg, #fff 0%, #f5c518 40%, #e50914 80%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            font-weight: 900;
            font-size: 2.5rem;
            letter-spacing: -0.02em;
        }

        /* 时间线 */
        .timeline {
            border-left: 3px solid var(--accent);
            padding-left: 24px;
            margin-left: 8px;
            position: relative;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 20px;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -30px;
            top: 8px;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            border: 2px solid var(--accent);
        }

        /* 回到顶部按钮 */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            border: none;
            font-size: 20px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s, background 0.2s;
            box-shadow: 0 8px 16px rgba(0,0,0,0.6);
        }
        #backToTop.show { opacity: 1; visibility: visible; }
        #backToTop:hover { background: #b00610; }

        /* 弹窗 */
        .modal-movie-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(3px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .modal-movie-card {
            background: #17171e;
            max-width: 700px;
            width: 90%;
            border-radius: 24px;
            box-shadow: 0 30px 50px rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
            display: flex;
            position: relative;
            max-height: 90vh;
        }
        .modal-movie-card img { width: 40%; object-fit: cover; }
        .modal-info { padding: 24px; flex: 1; overflow-y: auto; }
        .modal-close {
            position: absolute; top: 12px; right: 16px;
            background: none; border: none; color: #aaa; font-size: 28px; cursor: pointer; z-index: 2;
        }
        .modal-close:hover { color: #fff; }

        /* 心情标签 */
        .mood-tag {
            background: #22222a;
            padding: 6px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            border: 1px solid #3a3a45;
        }
        .mood-tag.active { background: var(--primary); border-color: var(--primary); }

        /* 友链区 */
        .friend-links a {
            color: var(--muted);
            margin-right: 16px;
            text-decoration: none;
            font-size: 14px;
        }
        .friend-links a:hover { color: var(--accent); }

        /* 按钮hover光泽 */
        .btn-shine {
            position: relative;
            overflow: hidden;
        }
        .btn-shine::after {
            content: "";
            position: absolute;
            top: 0;
            left: -80%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-20deg);
            transition: 0.5s;
        }
        .btn-shine:hover::after { left: 130%; }

        .tab-pane { padding-top: 12px; }
        .nav-tabs .nav-link { color: #aaa; }
        .nav-tabs .nav-link.active { background: var(--card-bg); color: var(--accent); border-color: var(--border); }

        footer { border-top: 1px solid #222; }
        .star-rating i { color: var(--accent); font-size: 12px; }

        @media (max-width: 768px) {
            .modal-movie-card { flex-direction: column; overflow-y: auto; }
            .modal-movie-card img { width: 100%; height: 220px; }
        }

/* --- 子页面追加 --- */
/* 本页专属少量样式，自动合并进站点CSS */
        .about-hero {
            padding: 80px 0 50px;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }
.about-section {
            padding: 50px 0;
            border-bottom: 1px solid rgba(245,197,24,0.1);
        }
.about-section:last-child {
            border-bottom: none;
        }
.stat-box {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
.stat-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
.stat-label {
            color: var(--muted);
            font-size: 0.9rem;
            margin-top: 8px;
        }
.value-item {
            padding: 20px;
            background: var(--card-bg);
            border-radius: 12px;
            border-left: 4px solid var(--primary);
            height: 100%;
            transition: transform 0.3s;
        }
.value-item:hover {
            transform: translateX(5px);
        }
.value-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 12px;
        }
.timeline-about {
            position: relative;
            padding-left: 30px;
        }
.timeline-about::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
.timeline-about .tl-item {
            position: relative;
            margin-bottom: 30px;
        }
.timeline-about .tl-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 2px solid var(--accent);
        }
.tl-year {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.1rem;
        }
.about-cta {
            background: linear-gradient(135deg, rgba(229,9,20,0.15), rgba(245,197,24,0.1));
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明页 */
        .disclaimer-hero {
            padding: 100px 0 60px;
            background: linear-gradient(180deg, rgba(229,9,20,0.08) 0%, transparent 60%);
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
.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 {
            color: var(--primary);
            font-size: 1.3rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--muted);
            line-height: 1.9;
            font-size: 0.95rem;
        }
.disclaimer-card strong {
            color: var(--text);
        }
.disclaimer-card ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-card li {
            margin-bottom: 10px;
        }
.alert-box {
            background: rgba(229,9,20,0.08);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 25px 0;
        }
.alert-box p {
            margin: 0;
            color: var(--text);
            font-size: 0.95rem;
        }
.last-updated {
            text-align: center;
            color: var(--muted);
            font-size: 0.85rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
.disclaimer-hero {
                padding: 80px 0 40px;
            }
.disclaimer-card {
                padding: 25px;
            }
.disclaimer-card h2 {
                font-size: 1.2rem;
            }