:root {
            --main-color: #6d5dfc;
            --accent-color: #22d3ee;
            --bg-color: #0f1020;
            --text-color: #e8eaf6;
            --card-bg: #1b1e30;
            --card-hover-shadow: 0 20px 30px -8px rgba(0,0,0,0.9);
        }
        * { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
        body { background-color: var(--bg-color); color: var(--text-color); }
        h1,h2,h3,h4,h5 { font-weight: 700; letter-spacing: -0.02em; }
        .text-accent { color: var(--accent-color) !important; }
        .text-main { color: var(--main-color) !important; }
        .navbar-custom {
            background: rgba(15,16,32,0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2e4a;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .navbar-brand { font-weight: 800; font-size: 1.8rem; color: #fff !important; letter-spacing: -0.03em; }
        .navbar-brand i { color: var(--accent-color); margin-right: 6px; }
        .nav-link { color: #b0b6d0 !important; font-weight: 500; }
        .nav-link:hover { color: var(--accent-color) !important; }
        .hero-section {
            background-image: linear-gradient(rgba(0,0,0,0.7), rgba(15,16,32,0.9)), url('{随机图片}');
            background-size: cover; background-position: center;
            padding: 7rem 0 5rem; position: relative;
            border-bottom: 3px solid var(--main-color);
            box-shadow: inset 0 -30px 60px rgba(0,0,0,0.6);
        }
        .hero-section h1 { font-size: 3.5rem; font-weight: 800; text-shadow: 0 5px 20px rgba(0,0,0,0.8); }
        .hero-section p { color: #c5cbdf; font-size: 1.2rem; }
        .section-title {
            position: relative; display: inline-block; margin-bottom: 1.8rem;
            font-weight: 800; font-size: 2rem;
        }
        .section-title::after {
            content: ''; display: block; width: 50%; height: 4px;
            background: linear-gradient(90deg, var(--main-color), var(--accent-color));
            margin-top: 8px; border-radius: 4px;
        }
        .toplist-badge {
            background: linear-gradient(145deg, var(--main-color), #4a3fc0);
            border-radius: 50px; padding: 6px 14px; font-weight: 700;
            box-shadow: 0 4px 12px rgba(109, 93, 252, 0.6);
        }
        .movie-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            cursor: pointer;
            position: relative;
            border: 1px solid #2b2f4a;
        }
        .movie-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-hover-shadow);
        }
        .movie-card img { width: 100%; height: 280px; object-fit: cover; display: block; background: #33375a; }
        .card-badge {
            position: absolute; top: 10px; left: 10px;
            background: rgba(0,0,0,0.8); color: var(--accent-color);
            font-size: 0.75rem; font-weight: 700; padding: 4px 10px;
            border-radius: 30px; backdrop-filter: blur(4px);
            border: 1px solid #3b405e; letter-spacing: 0.5px;
        }
        .rating-star {
            color: #ffb400; font-size: 0.9rem;
            text-shadow: 0 0 6px rgba(255,180,0,0.5);
        }
        .heat-number { background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 20px; font-size: 0.75rem; }
        .rank-number {
            font-weight: 900; font-size: 1.4rem; color: var(--accent-color);
            text-shadow: 0 0 12px rgba(34,211,238,0.6); margin-right: 8px;
        }
        .drawer-modal {
            position: fixed; bottom: -100%; left: 0; right: 0;
            background: #1a1d2f; border-top-left-radius: 28px; border-top-right-radius: 28px;
            transition: bottom 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
            z-index: 1050; max-height: 80vh; overflow-y: auto;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
            border: 1px solid #2e3452;
        }
        .drawer-modal.show { bottom: 0; }
        .drawer-backdrop {
            position: fixed; inset: 0; background: rgba(0,0,0,0.7);
            opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 1040;
            backdrop-filter: blur(2px);
        }
        .drawer-backdrop.show { opacity: 1; visibility: visible; }
        .accordion-button { background-color: #1f233a; color: var(--text-color); font-weight: 600; }
        .accordion-button:not(.collapsed) { background-color: #282e4e; color: var(--accent-color); }
        .accordion-body { background-color: #191c2e; color: #c9cee0; }
        .footer-custom { background-color: #0c0d18; border-top: 2px solid #242849; padding: 2rem 0; }
        .footer-custom a { color: #a5aacb; text-decoration: none; }
        .footer-custom a:hover { color: var(--accent-color); }
        .friend-links a { color: #a5aacb; margin-right: 1rem; }
        .friend-links a:hover { color: var(--accent-color); }
        .lazy-img { background: linear-gradient(135deg, #2a2e4a, #1b1e30); }
        .cat-tags .tag { background: #242845; padding: 8px 18px; border-radius: 40px; font-weight: 500; cursor: pointer; transition: 0.2s; }
        .cat-tags .tag:hover { background: var(--main-color); }
        .stat-number { font-size: 2.5rem; font-weight: 900; color: var(--accent-color); }
        .btn-outline-accent { border-color: var(--accent-color); color: var(--accent-color); }
        .btn-outline-accent:hover { background: var(--accent-color); color: #000; }

/* --- 子页面追加 --- */
/* 保证Bootstrap组件不被白底覆盖 - 本页刻意避开 .card 等，但为防万一仍加保护 */
        .navbar, .navbar-collapse, .nav-link, .navbar-brand { background: transparent !important; color: var(--text-color) !important; }
.about-hero { padding: 4rem 0 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.about-block { background: var(--card-bg); border-radius: 24px; padding: 2rem 2rem; margin-bottom: 2rem; border-left: 4px solid var(--accent-color); }
.about-block h2, .about-block h3 { color: var(--text-color); font-weight: 700; letter-spacing: -0.01em; }
.about-block p, .about-block li { color: rgba(232,234,246,0.85); line-height: 1.8; }
.about-block i { color: var(--accent-color); margin-right: 0.5rem; }
.badge-accent { background: rgba(34,211,238,0.15); color: var(--accent-color); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.stat-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.stat-item { background: rgba(0,0,0,0.2); border-radius: 16px; padding: 1.2rem 1.5rem; flex: 1 1 160px; border: 1px solid rgba(255,255,255,0.05); }
.stat-label { color: rgba(232,234,246,0.7); font-size: 0.9rem; }
.about-timeline { list-style: none; padding-left: 0; }
.about-timeline li { position: relative; padding-left: 2rem; margin-bottom: 1.2rem; border-left: 2px solid rgba(34,211,238,0.3); }
.about-timeline li::before { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: -0.6rem; top: 0.2rem; color: var(--accent-color); font-size: 0.8rem; background: var(--bg-color); border-radius: 50%; }
.about-quote { font-size: 1.1rem; font-style: italic; color: var(--text-color); border-left: 4px solid var(--main-color); padding-left: 1.5rem; margin: 2rem 0; }
.list-check { list-style: none; padding-left: 0; }
.list-check li { padding: 0.4rem 0; }
.list-check li i { margin-right: 0.8rem; color: var(--accent-color); }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15) 0%, rgba(34, 211, 238, 0.08) 100%);
            border-bottom: 1px solid rgba(109, 93, 252, 0.2);
        }
.disclaimer-section {
            padding: 30px 0;
            border-bottom: 1px solid rgba(109, 93, 252, 0.15);
        }
.disclaimer-section:last-child {
            border-bottom: none;
        }
.disclaimer-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 20px;
            position: relative;
            padding-left: 18px;
        }
.disclaimer-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 24px;
            background: var(--main-color);
            border-radius: 3px;
        }
.disclaimer-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-color);
            margin: 18px 0 12px;
        }
.disclaimer-section p {
            color: rgba(232, 234, 246, 0.8);
            line-height: 1.8;
            margin-bottom: 14px;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }
.disclaimer-section ul li {
            color: rgba(232, 234, 246, 0.8);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 8px;
            position: relative;
        }
.disclaimer-section ul li::marker {
            color: var(--accent-color);
        }
.highlight-box {
            background: rgba(109, 93, 252, 0.1);
            border: 1px solid rgba(109, 93, 252, 0.3);
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
        }
.highlight-box p {
            margin-bottom: 8px;
        }
.highlight-box p:last-child {
            margin-bottom: 0;
        }
.icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(109, 93, 252, 0.15);
            color: var(--main-color);
            margin-right: 12px;
            flex-shrink: 0;
        }
.last-updated {
            display: inline-block;
            background: rgba(34, 211, 238, 0.1);
            color: var(--accent-color);
            border: 1px solid rgba(34, 211, 238, 0.3);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 24px;
        }

/* --- 子页面追加 --- */
/* 站点地图页面专属微调 */
        .sitemap-section { padding: 3rem 0; }
.sitemap-card { background: var(--card-bg); border-radius: 12px; padding: 1.8rem; height: 100%; transition: transform .3s ease, box-shadow .3s ease; border: 1px solid rgba(109, 93, 252, .15); }
.sitemap-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.sitemap-card h3 { color: var(--accent-color); font-weight: 700; font-size: 1.3rem; margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 2px solid rgba(109, 93, 252, .25); }
.sitemap-card ul { list-style: none; padding: 0; margin: 0; }
.sitemap-card ul li { margin-bottom: .7rem; }
.sitemap-card ul li a { color: var(--text-color); text-decoration: none; transition: color .2s ease, padding-left .2s ease; display: inline-block; }
.sitemap-card ul li a:hover { color: var(--accent-color); padding-left: 6px; }
.sitemap-card ul li a i { color: var(--main-color); margin-right: 8px; font-size: .85rem; width: 16px; }
.sitemap-hero { background: linear-gradient(135deg, rgba(109,93,252,.15) 0%, rgba(34,211,238,.1) 100%); border-radius: 16px; padding: 2.5rem; margin: 2rem 0 3rem; border: 1px solid rgba(109, 93, 252, .2); }
.sitemap-hero h1 { color: var(--text-color); font-weight: 800; font-size: 2rem; margin-bottom: .8rem; }
.sitemap-hero h1 span { color: var(--accent-color); }
.sitemap-hero p { color: rgba(232, 234, 246, .8); font-size: 1.05rem; max-width: 700px; }
.quick-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }
.quick-link-item { background: rgba(109, 93, 252, .15); border: 1px solid rgba(109, 93, 252, .3); padding: 8px 18px; border-radius: 30px; color: var(--text-color); text-decoration: none; font-size: .9rem; transition: all .3s ease; }
.quick-link-item:hover { background: var(--main-color); color: #fff; transform: translateY(-2px); }
.page-badge { background: rgba(34, 211, 238, .15); color: var(--accent-color); font-size: .75rem; padding: 2px 10px; border-radius: 20px; margin-left: 8px; vertical-align: middle; }
.current-page { color: var(--accent-color) !important; font-weight: 600; }
.current-page i { color: var(--accent-color) !important; }
.footer-sitemap-link { color: rgba(232,234,246,.6); }
.footer-sitemap-link:hover { color: var(--accent-color); }

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