:root {
            --primary: #10b981;
            --accent: #fbbf24;
            --bg-dark: #0a1410;
            --text-light: #ecfdf5;
        }

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

        /* 导航 */
        .navbar-dark {
            background-color: rgba(10, 20, 16, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(16, 185, 129, 0.15);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: -0.5px;
        }
        .navbar-brand .brand-icon {
            color: var(--primary);
            margin-right: 6px;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-light) !important;
            padding-left: 1rem !important;
            padding-right: 1rem !important;
            transition: color 0.2s;
        }
        .nav-link:hover {
            color: var(--primary) !important;
        }

        /* 渐变文字 */
        .gradient-text {
            background: linear-gradient(135deg, #10b981, #fbbf24, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shine 6s ease infinite;
            background-size: 200% auto;
        }
        @keyframes shine {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        /* 浮动装饰 */
        .floating-decor {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }
        .floating-decor span {
            position: absolute;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.2);
            filter: blur(40px);
            animation: float 8s infinite;
        }
        .floating-decor span:nth-child(1) { width: 250px; height: 250px; left: 5%; top: 20%; animation-delay: 0s; }
        .floating-decor span:nth-child(2) { width: 180px; height: 180px; left: 80%; top: 60%; background: rgba(251, 191, 36, 0.15); animation-delay: 2s; }
        .floating-decor span:nth-child(3) { width: 120px; height: 120px; left: 40%; top: 80%; background: rgba(16, 185, 129, 0.2); animation-delay: 4s; }
        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.05); }
        }

        .hero-section {
            padding: 6rem 0 4rem;
            position: relative;
        }

        /* 卡片圆角+阴影 */
        .movie-card {
            background: #0e1b16;
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 0 2px rgba(16, 185, 129, 0.4);
            border-color: var(--primary);
        }
        .movie-poster {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2/3;
            background: #1a2e26;
        }
        .movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .movie-card:hover .movie-poster img {
            transform: scale(1.05);
        }
        .badge-quality {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px);
            padding: 3px 8px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent);
            border: 1px solid rgba(251, 191, 36, 0.3);
        }
        .movie-info {
            padding: 0.8rem 0.9rem 1rem;
        }
        .movie-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: rgba(236, 253, 245, 0.6);
        }
        .rating {
            color: var(--accent);
            font-weight: 600;
        }

        /* 区块标题 */
        .section-title {
            font-weight: 700;
            font-size: 1.6rem;
            letter-spacing: -0.3px;
            margin: 2.5rem 0 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .section-title i {
            color: var(--primary);
        }

        /* 排行榜列表 */
        .rank-list {
            background: #0e1b16;
            border-radius: 1.2rem;
            padding: 1.2rem;
            border: 1px solid rgba(16, 185, 129, 0.1);
        }
        .rank-item {
            display: flex;
            align-items: center;
            padding: 0.6rem 0.2rem;
            border-bottom: 1px dashed rgba(255,255,255,0.05);
        }
        .rank-item:last-child { border-bottom: none; }
        .rank-num {
            font-weight: 800;
            font-size: 1.1rem;
            width: 2.2rem;
            color: var(--primary);
        }
        .rank-title {
            flex: 1;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .rank-score {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* 对比表格 */
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            background: #0e1b16;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(0,0,0,0.3);
        }
        .compare-table th, .compare-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            text-align: left;
        }
        .compare-table th {
            background: rgba(16, 185, 129, 0.15);
            font-weight: 600;
            color: var(--primary);
        }

        /* 编号清单 */
        .numbered-list {
            list-style: none;
            padding-left: 0;
            counter-reset: step;
        }
        .numbered-list li {
            counter-increment: step;
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 0.7rem;
            font-weight: 400;
        }
        .numbered-list li::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0.2rem;
            background: var(--primary);
            color: #0a1410;
            font-weight: 800;
            width: 1.8rem;
            height: 1.8rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        /* 弹窗 */
        .modal-overlay {
            position: fixed;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            z-index: 1050;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .modal-overlay.active { display: flex; }
        .modal-card {
            background: #0f1f19;
            border-radius: 1.5rem;
            max-width: 720px;
            width: 100%;
            padding: 1.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            border: 1px solid rgba(16,185,129,0.2);
            position: relative;
        }
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1.2rem;
            font-size: 1.8rem;
            color: var(--text-light);
            background: none;
            border: none;
            cursor: pointer;
            opacity: 0.7;
            transition: 0.2s;
        }
        .modal-close:hover { opacity: 1; }

        /* 胶囊按钮 */
        .pill-btn {
            border-radius: 50px;
            background: var(--primary);
            color: #0a1410;
            font-weight: 600;
            border: none;
            padding: 0.5rem 1.4rem;
            transition: all 0.2s;
        }
        .pill-btn:hover { background: var(--accent); }

        /* 分类入口 */
        .cat-icon {
            background: #13251e;
            border-radius: 20px;
            padding: 0.8rem 0.6rem;
            text-align: center;
            transition: 0.2s;
        }
        .cat-icon i { font-size: 1.6rem; color: var(--primary); }
        .cat-icon span { display: block; font-size: 0.8rem; margin-top: 0.4rem; }

        footer {
            background: #071009;
            border-top: 1px solid rgba(16,185,129,0.2);
            padding: 2.5rem 0 1.5rem;
            margin-top: 4rem;
        }
        .friend-links {
            background: #0e1b16;
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .link-item {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            color: var(--text-light);
            opacity: 0.8;
        }

        /* 滚动渐显 */
        .scroll-fade {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .scroll-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* --- 子页面追加 --- */
/* 保证 Bootstrap 不干扰深色背景 */
        .rank-page .list-group-item {
            background: transparent;
            color: var(--text-light);
            border: none;
            padding: 0;
        }
.rank-page .progress-bar {
            background: var(--primary);
        }
.rank-page .badge-accent {
            background: var(--accent);
            color: #0a1410;
            font-weight: 600;
        }
/* 排行榜卡片 */
        .rank-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 1.2rem 1.2rem;
            backdrop-filter: blur(4px);
        }
.rank-card:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
        }
.rank-poster {
            width: 60px;
            height: 84px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            background: #1c2b24;
        }
.rank-pos {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent);
            width: 45px;
            text-align: center;
        }
.rank-pos.top1 {
            color: #ffc93c;
            text-shadow: 0 0 15px rgba(255,201,60,0.5);
        }
.rank-pos.top2 {
            color: #c0c0c0;
            text-shadow: 0 0 10px rgba(192,192,192,0.4);
        }
.rank-pos.top3 {
            color: #cd7f32;
            text-shadow: 0 0 8px rgba(205,127,50,0.4);
        }
.rank-meta {
            font-size: 0.8rem;
            color: rgba(236,253,245,0.6);
        }
.rank-up {
            color: var(--primary);
            font-size: 0.8rem;
        }
.rank-down {
            color: #f87171;
            font-size: 0.8rem;
        }
.rank-same {
            color: rgba(255,255,255,0.5);
            font-size: 0.8rem;
        }
.tag-mini {
            background: rgba(16,185,129,0.2);
            color: var(--primary);
            border-radius: 20px;
            padding: 0.15rem 0.7rem;
            font-size: 0.7rem;
            font-weight: 500;
        }
.tag-accent {
            background: rgba(251,191,36,0.2);
            color: var(--accent);
        }
.section-head {
            border-left: 4px solid var(--primary);
            padding-left: 0.8rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
.btn-ghost {
            background: transparent;
            border: 1px solid rgba(16,185,129,0.4);
            color: var(--primary);
            border-radius: 40px;
            padding: 0.3rem 1.2rem;
            transition: 0.2s;
        }
.btn-ghost:hover {
            background: rgba(16,185,129,0.15);
            border-color: var(--primary);
            color: #ecfdf5;
        }
.footer-link {
            color: rgba(236,253,245,0.7);
            text-decoration: none;
            font-size: 0.9rem;
        }
.footer-link:hover {
            color: var(--primary);
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .about-hero { padding: 120px 0 60px; background: linear-gradient(135deg, rgba(16,185,129,.15), transparent 60%); }
.about-section { padding: 60px 0; }
.about-section h2 { font-size: 1.8rem; margin-bottom: 24px; position: relative; padding-left: 20px; }
.about-section h2::before { content: ''; position: absolute; left: 0; top: 8px; width: 4px; height: 24px; background: var(--primary); border-radius: 2px; }
.about-section p { line-height: 1.9; color: var(--text-light); opacity: .85; margin-bottom: 16px; }
.about-card { background: rgba(16,185,129,.06); border: 1px solid rgba(16,185,129,.2); border-radius: 12px; padding: 32px; margin-bottom: 24px; transition: transform .3s, box-shadow .3s; }
.about-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(16,185,129,.15); }
.about-card i { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.about-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary); }
.about-card p { font-size: .95rem; line-height: 1.8; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--text-light); opacity: .9; }
.feature-list li::before { content: '✦'; position: absolute; left: 0; color: var(--accent); }
.stat-row { text-align: center; padding: 40px 0; }
.stat-item { padding: 20px; }
.stat-item .stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-item .stat-label { color: var(--text-light); opacity: .7; margin-top: 4px; font-size: .9rem; }
.about-footer-note { text-align: center; padding: 40px 0 80px; }
.about-footer-note i { color: var(--accent); margin: 0 4px; }

/* --- 子页面追加 --- */
/* 隐私政策页面专属样式 */
        .privacy-hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #0f2a1f 100%);
            padding: 80px 0 50px;
            position: relative;
            overflow: hidden;
        }
.privacy-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
.privacy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px 80px;
        }
.privacy-card {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
.privacy-card:hover {
            border-color: rgba(16, 185, 129, 0.35);
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
        }
.privacy-card h2 {
            color: var(--primary);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.privacy-card h2 i {
            color: var(--accent);
            font-size: 1.4rem;
        }
.privacy-card h3 {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 12px;
        }
.privacy-card p {
            color: rgba(236, 253, 245, 0.85);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.privacy-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 15px;
        }
.privacy-card ul li {
            color: rgba(236, 253, 245, 0.85);
            padding: 8px 0 8px 28px;
            position: relative;
            line-height: 1.7;
            font-size: 0.95rem;
        }
.privacy-card ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.2rem;
        }
.privacy-highlight {
            background: rgba(251, 191, 36, 0.1);
            border-left: 3px solid var(--accent);
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
.privacy-highlight p {
            margin: 0;
            color: var(--accent);
            font-weight: 500;
        }
.privacy-updated {
            text-align: center;
            color: rgba(236, 253, 245, 0.6);
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(16, 185, 129, 0.2);
        }
.privacy-card {
                padding: 25px;
            }
.privacy-card h2 {
                font-size: 1.3rem;
            }
.privacy-container {
                padding: 40px 15px 60px;
            }

/* --- 子页面追加 --- */
.disclaimer-section { padding: 60px 0; }
.disclaimer-title { font-size: 2.5rem; font-weight: 800; color: var(--text-light); margin-bottom: 20px; }
.disclaimer-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 25px; margin-bottom: 20px; transition: all 0.3s ease; }
.disclaimer-card:hover { background: rgba(255,255,255,0.08); border-color: var(--primary); transform: translateY(-3px); }
.disclaimer-card h3 { color: var(--primary); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.disclaimer-card h3 i { margin-right: 8px; color: var(--accent); }
.disclaimer-card p { color: rgba(236,253,245,0.8); line-height: 1.8; margin-bottom: 8px; }
.disclaimer-card ul { padding-left: 20px; color: rgba(236,253,245,0.8); line-height: 1.8; }
.disclaimer-card li { margin-bottom: 5px; }
.highlight-text { color: var(--accent); font-weight: 600; }
.contact-email { color: var(--primary); text-decoration: none; font-weight: 500; }
.contact-email:hover { color: var(--accent); text-decoration: underline; }
.alert-box { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3); border-radius: 10px; padding: 20px; margin-bottom: 30px; }
.alert-box i { color: var(--accent); margin-right: 8px; }
.alert-box p { color: rgba(236,253,245,0.9); margin: 0; line-height: 1.7; }
.disclaimer-title { font-size: 2rem; }
.disclaimer-card { padding: 20px; }