:root {
            --primary: #f97316;
            --accent: #facc15;
            --bg-dark: #1a1410;
            --text-light: #fff7ed;
            --card-radius: 1.25rem;
            --shadow-soft: 0 10px 25px rgba(0,0,0,0.4);
            --shadow-hover: 0 20px 35px rgba(0,0,0,0.6);
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.2px;
        }

        h1, h2, h3, h4, h5, .navbar-brand {
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .navbar {
            background-color: rgba(26, 20, 16, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary);
            padding: 0.8rem 0;
        }

        .navbar-brand {
            font-size: 1.7rem;
            font-weight: 900;
            color: var(--primary) !important;
            text-shadow: 2px 2px 10px rgba(249, 115, 22, 0.4);
        }

        .navbar .nav-link {
            color: var(--text-light);
            font-weight: 500;
            margin: 0 0.7rem;
            border-radius: 30px;
            padding: 0.4rem 1rem;
            transition: all 0.2s;
        }

        .navbar .nav-link:hover {
            color: var(--primary);
            background: rgba(249, 115, 22, 0.15);
        }

        .btn-capsule {
            border-radius: 50rem;
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            transition: 0.2s;
        }

        .btn-capsule-primary {
            background-color: var(--primary);
            border: none;
            color: #fff;
        }

        .btn-capsule-primary:hover {
            background-color: #ea6a0e;
            transform: scale(1.05);
        }

        .btn-capsule-accent {
            background-color: var(--accent);
            color: #1a1410;
            border: none;
        }

        .btn-capsule-accent:hover {
            background-color: #e0b912;
            transform: scale(1.05);
        }

        .hero-section {
            padding: 5rem 0 4rem;
            background: linear-gradient(145deg, #241b14 0%, #1a1410 90%);
            border-bottom: 4px solid var(--primary);
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--primary);
            text-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
        }

        .hero-sub {
            font-size: 1.3rem;
            opacity: 0.85;
            max-width: 700px;
            margin: 1.5rem 0 2rem;
        }

        .hero-metric {
            font-family: 'Courier New', monospace;
            font-weight: 700;
            font-size: 2.2rem;
            background: #2b2018;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            border: 1px solid #4a3420;
            color: var(--accent);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            border-left: 8px solid var(--primary);
            padding-left: 1.2rem;
            margin: 3rem 0 2rem;
            color: var(--text-light);
            position: relative;
        }

        .section-title i {
            color: var(--primary);
            margin-right: 0.3rem;
        }

        .movie-card {
            background: #2b2018;
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow-soft);
            border: 1px solid #3d2e21;
            margin-bottom: 2rem;
            cursor: pointer;
            position: relative;
            opacity: 0;
            animation: fadeUp 0.6s forwards;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .movie-card:nth-child(2) { animation-delay: 0.05s; }
        .movie-card:nth-child(3) { animation-delay: 0.1s; }
        .movie-card:nth-child(4) { animation-delay: 0.15s; }
        .movie-card:nth-child(5) { animation-delay: 0.2s; }
        .movie-card:nth-child(6) { animation-delay: 0.25s; }
        .movie-card:nth-child(7) { animation-delay: 0.3s; }
        .movie-card:nth-child(8) { animation-delay: 0.35s; }

        .movie-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .card-img-wrapper {
            width: 100%;
            aspect-ratio: 2 / 3;
            background: #1e1712;
            overflow: hidden;
            position: relative;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
            opacity: 0;
        }

        .card-img-wrapper img.loaded {
            opacity: 1;
        }

        .card-img-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7));
            z-index: 1;
        }

        .quality-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary);
            color: #000;
            font-weight: 800;
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem;
            border-radius: 30px;
            z-index: 3;
        }

        .quality-4k {
            background: var(--accent);
            color: #1a1410;
        }

        .card-body {
            padding: 1rem 0.9rem;
        }

        .card-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .card-meta {
            font-size: 0.8rem;
            color: #aaa;
            display: flex;
            justify-content: space-between;
        }

        .score {
            font-family: 'Courier New', monospace;
            font-weight: 700;
            color: var(--accent);
            font-size: 1.2rem;
        }

        /* 时间线 */
        .timeline {
            border-left: 4px solid var(--primary);
            margin-left: 1.5rem;
            padding-left: 2rem;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            width: 16px;
            height: 16px;
            background: var(--primary);
            border-radius: 50%;
            position: absolute;
            left: -2.6rem;
            top: 0.3rem;
            border: 3px solid #1a1410;
        }
        .timeline-time {
            font-family: monospace;
            font-size: 1.2rem;
            color: var(--accent);
            font-weight: 600;
        }

        /* 标签页切换 */
        .nav-tabs .nav-link {
            border-radius: 30px;
            background: transparent;
            border: 1px solid #4a3420;
            color: var(--text-light);
            font-weight: 600;
            padding: 0.4rem 1.5rem;
            margin: 0.2rem;
        }
        .nav-tabs .nav-link.active {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #000;
        }

        /* 影片详情弹窗(全屏沉浸式) */
        .movie-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(26, 20, 16, 0.85);
            backdrop-filter: blur(15px);
            justify-content: center;
            align-items: center;
        }

        .movie-modal.show {
            display: flex;
        }

        .modal-content-large {
            background: #2b2018;
            max-width: 850px;
            width: 90%;
            border-radius: 2rem;
            border: 1px solid var(--primary);
            padding: 2rem 2rem 2.5rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.7);
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2.5rem;
            color: var(--primary);
            cursor: pointer;
            background: transparent;
            border: none;
            line-height: 1;
        }

        .modal-score-big {
            font-family: 'Courier New', monospace;
            font-size: 4rem;
            color: var(--accent);
            font-weight: 800;
        }

        .modal-meta span {
            background: #3d2e21;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        footer {
            background: #120d0a;
            padding: 2rem 0;
            border-top: 3px solid var(--primary);
            color: #aaa;
        }

        footer a {
            color: var(--primary);
        }

        .friend-links {
            background: #241b14;
            padding: 1.5rem 0;
            border-radius: 1rem;
            margin: 2rem 0;
        }

        .link-placeholder {
            background: #2f231a;
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            margin: 0.2rem;
        }

        /* 卡片错落 */
        .poster-grid .row {
            display: flex;
            flex-wrap: wrap;
        }
        .poster-grid .col-md-3 {
            display: flex;
            justify-content: center;
        }
        .movie-card {
            width: 100%;
        }

        .list-section {
            background: #1e1712;
            border-radius: 1.5rem;
            padding: 1.5rem;
            border: 1px solid #3a2a1d;
        }

/* --- 子页面追加 --- */
/* 保证与站点CSS变量完全一致 */
        .ranking-hero {
            background: linear-gradient(145deg, var(--bg-dark) 0%, #2a1e16 100%);
            border-bottom: 2px solid rgba(249,115,22,0.25);
        }
.rank-badge {
            background: var(--primary);
            color: #1a1410;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.75rem;
            min-width: 2.6rem;
            height: 2.6rem;
            padding: 0 0.5rem;
            box-shadow: var(--shadow-soft);
        }
.rank-card {
            background: rgba(255,247,237,0.04);
            border: 1px solid rgba(249,115,22,0.2);
            border-radius: var(--card-radius);
            padding: 1.2rem 1.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.rank-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
.rank-index {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            opacity: 0.8;
            line-height: 1;
        }
.rank-title {
            font-weight: 700;
            color: var(--text-light);
            font-size: 1.15rem;
        }
.rank-sub {
            color: rgba(255,247,237,0.6);
            font-size: 0.85rem;
        }
.score-tag {
            background: rgba(250,204,21,0.15);
            color: var(--accent);
            border-radius: 2rem;
            padding: 0.15rem 0.9rem;
            font-weight: 700;
            font-size: 0.9rem;
            border: 1px solid rgba(250,204,21,0.3);
        }
.list-group-flush-custom .rank-card + .rank-card {
            margin-top: 0.75rem;
        }
/* 导航高亮当前页 */
        .navbar .nav-link.active-rank {
            color: var(--accent) !important;
            font-weight: 700;
        }
.footer-link {
            color: rgba(255,247,237,0.7);
            text-decoration: none;
        }
.footer-link:hover {
            color: var(--primary);
        }

/* --- 子页面追加 --- */
/* 关于页专属补充样式 */
        .about-hero { background: linear-gradient(135deg, rgba(26,20,16,.95) 0%, rgba(249,115,22,.15) 100%); border-bottom: 1px solid rgba(249,115,22,.2); padding: 4rem 0 3rem; }
.about-section { padding: 3.5rem 0; border-bottom: 1px solid rgba(249,115,22,.08); }
.about-section:last-of-type { border-bottom: none; }
.about-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: rgba(249,115,22,.15); color: var(--primary); margin-bottom: 1rem; }
.feature-tag { display: inline-block; padding: .3rem .9rem; border-radius: 2rem; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.3); color: var(--primary); font-size: .85rem; font-weight: 600; margin: .2rem .35rem .2rem 0; }
.timeline-num { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-label { color: rgba(255,247,237,.7); font-size: .9rem; }
.content-card { background: rgba(249,115,22,.05); border: 1px solid rgba(249,115,22,.12); border-radius: var(--card-radius); padding: 1.8rem; height: 100%; transition: all .3s ease; }
.content-card:hover { background: rgba(249,115,22,.09); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.content-card p { color: rgba(255,247,237,.8); line-height: 1.8; }
.content-card h4 { color: var(--text-light); margin-bottom: .8rem; }
.quote-box { border-left: 3px solid var(--primary); padding: .8rem 1.2rem; background: rgba(249,115,22,.06); border-radius: 0 .8rem .8rem 0; margin: 1.2rem 0; }
.quote-box p { margin: 0; color: rgba(255,247,237,.85); font-style: italic; }

/* --- 子页面追加 --- */
/* 本页专属样式 —— 免责声明页 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(26,20,16,0.95) 0%, rgba(26,20,16,0.75) 100%);
            padding: 4rem 0 2.5rem;
            border-bottom: 1px solid rgba(249,115,22,0.15);
        }
.disclaimer-hero .hero-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
.disclaimer-hero .hero-sub {
            color: rgba(255,247,237,0.7);
            font-size: 1.05rem;
            max-width: 720px;
            margin: 0 auto;
            font-weight: 400;
        }
.disclaimer-section {
            padding: 2.2rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
.disclaimer-section:last-of-type {
            border-bottom: none;
        }
.disclaimer-section h2 {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            letter-spacing: -0.01em;
        }
.disclaimer-section h2 i {
            font-size: 1.2rem;
            color: var(--accent);
        }
.disclaimer-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-light);
            margin: 1.4rem 0 0.6rem;
        }
.disclaimer-section p {
            color: rgba(255,247,237,0.8);
            line-height: 1.85;
            font-size: 0.98rem;
            margin-bottom: 0.9rem;
            font-weight: 300;
        }
.disclaimer-section ul {
            color: rgba(255,247,237,0.8);
            padding-left: 1.2rem;
            margin-bottom: 1rem;
        }
.disclaimer-section ul li {
            margin-bottom: 0.5rem;
            line-height: 1.75;
            font-weight: 300;
            font-size: 0.96rem;
        }
.highlight-box {
            background: rgba(249,115,22,0.08);
            border-left: 3px solid var(--primary);
            padding: 1.2rem 1.4rem;
            border-radius: 0 0.8rem 0.8rem 0;
            margin: 1.4rem 0;
        }
.highlight-box p {
            margin-bottom: 0;
        }
.last-updated {
            color: rgba(255,247,237,0.5);
            font-size: 0.85rem;
            font-weight: 400;
            margin-top: 0.6rem;
        }
.disclaimer-hero .hero-title { font-size: 1.8rem; }
.disclaimer-section h2 { font-size: 1.3rem; }