:root {
            --primary: #f472b6;
            --accent: #fbbf24;
            --bg: #fff5f7;
            --text: #4a2530;
            --radius: 8px;
            --shadow: 0 4px 12px rgba(244, 114, 182, 0.12);
            --shadow-hover: 0 12px 24px rgba(244, 114, 182, 0.22);
            --border: #fadbe6;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 1rem;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .navbar-brand {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .navbar {
            backdrop-filter: blur(12px);
            background-color: rgba(255, 245, 247, 0.85);
            border-bottom: 1px solid var(--border);
            transition: background-color 0.3s, box-shadow 0.3s;
            z-index: 1000;
        }
        .navbar.scrolled {
            background-color: rgba(255, 245, 247, 0.95);
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
        }
        .navbar-brand {
            font-weight: 900;
            color: var(--text);
            font-size: 1.5rem;
        }
        .navbar-brand i {
            color: var(--primary);
            margin-right: 8px;
        }
        .nav-link {
            color: var(--text);
            font-weight: 500;
            margin: 0 0.25rem;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .btn-primary-custom {
            background-color: var(--primary);
            border: none;
            color: white;
            border-radius: var(--radius);
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        .btn-primary-custom:hover {
            background-color: #e05ba3;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .hero-stats {
            background: linear-gradient(135deg, #ffeef4, #fff7fa);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid var(--border);
            margin-bottom: 2rem;
        }
        .stat-item {
            text-align: center;
            font-weight: 800;
            color: var(--primary);
        }
        .stat-item span {
            display: block;
            font-size: 2.8rem;
            line-height: 1.2;
        }
        .section-title {
            font-weight: 800;
            font-size: 1.9rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid var(--primary);
            padding-left: 1rem;
        }
        .movie-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .movie-poster {
            position: relative;
            aspect-ratio: 2 / 3;
            overflow: hidden;
            background-color: #fce4ee;
        }
        .movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .badge-ep {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
            font-weight: 500;
        }
        .rating-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: var(--accent);
            color: #4a2530;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        .movie-info {
            padding: 0.8rem 0.9rem 1rem;
        }
        .movie-title {
            font-weight: 700;
            margin-bottom: 0.2rem;
            font-size: 1.05rem;
            line-height: 1.3;
        }
        .movie-meta {
            color: #7c5c66;
            font-size: 0.85rem;
        }
        .card-category {
            font-size: 0.8rem;
            background: #fdeaf1;
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            color: var(--primary);
            font-weight: 600;
        }
        .filter-sidebar {
            position: sticky;
            top: 90px;
            background: #fff;
            border-radius: var(--radius);
            padding: 1.2rem;
            border: 1px solid var(--border);
        }
        .filter-sidebar a {
            display: block;
            padding: 0.4rem 0.8rem;
            margin: 0.2rem 0;
            border-radius: 30px;
            color: var(--text);
            font-weight: 500;
            text-decoration: none;
        }
        .filter-sidebar a:hover, .filter-sidebar a.active {
            background: var(--primary);
            color: white;
        }
        .faq-item {
            background: white;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            margin-bottom: 0.8rem;
            padding: 1rem 1.2rem;
        }
        .faq-question {
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            margin-top: 0.8rem;
            color: #6d4e58;
        }
        .footer {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .footer a {
            color: var(--text);
            text-decoration: none;
        }
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.2rem;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }
        .modal-full {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1050;
        }
        .modal-content-box {
            background: white;
            max-width: 650px;
            width: 90%;
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text);
        }
        .movie-poster .genre-tag {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(244, 114, 182, 0.9);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            color: white;
        }
        .btn-accordion {
            background: transparent;
            border: none;
            font-weight: 700;
        }
        .collapse-icon {
            transition: transform 0.2s;
        }
        .list-icon {
            color: var(--primary);
            margin-right: 8px;
        }
        .hover-lift {
            transition: transform 0.2s;
        }
        .hover-lift:hover {
            transform: translateY(-3px);
        }

/* --- 子页面追加 --- */
/* 关于页专属样式 */
        .about-hero {
            background: linear-gradient(135deg, #fff5f7 0%, #fce7f3 50%, #fdf0f5 100%);
            border-bottom: 2px solid var(--border);
            padding: 4rem 0 3rem;
        }
.about-hero h1 {
            color: var(--primary);
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
.about-hero .lead {
            color: var(--text);
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-section {
            padding: 3.5rem 0;
            border-bottom: 1px solid var(--border);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section h2 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
.about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
.about-section p {
            color: var(--text);
            line-height: 1.9;
            font-size: 1rem;
            margin-bottom: 1.2rem;
        }
.about-section ul {
            color: var(--text);
            line-height: 2;
            padding-left: 1.2rem;
        }
.about-section ul li {
            margin-bottom: 0.5rem;
        }
.about-section ul li i {
            color: var(--primary);
            margin-right: 8px;
        }
.feature-box {
            background: #fff;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
.feature-box:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.feature-box i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
.feature-box h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.feature-box p {
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 0;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
.timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px var(--primary);
        }
.timeline-item .year {
            font-weight: 800;
            color: var(--accent);
            font-size: 1.1rem;
        }
.timeline-item .title {
            font-weight: 700;
            color: var(--text);
            font-size: 1rem;
            margin-top: 0.3rem;
        }
.timeline-item .desc {
            color: var(--text);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 0.4rem;
            opacity: 0.85;
        }
.stat-box {
            text-align: center;
            padding: 2rem 1rem;
            background: #fff;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 1rem;
        }
.stat-box .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
        }
.stat-box .label {
            font-size: 0.9rem;
            color: var(--text);
            margin-top: 0.4rem;
        }
.team-card {
            background: #fff;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
            height: 100%;
        }
.team-card:hover {
            transform: translateY(-4px);
        }
.team-card .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
        }
.team-card .name {
            font-weight: 700;
            color: var(--text);
            font-size: 1.05rem;
            margin-bottom: 0.3rem;
        }
.team-card .role {
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
.team-card .bio {
            font-size: 0.85rem;
            color: var(--text);
            line-height: 1.6;
        }
.value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.8rem;
        }
.value-item .icon-wrap {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            margin-right: 1rem;
            box-shadow: 0 4px 12px rgba(244, 114, 182, 0.25);
        }
.value-item .text-wrap h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.4rem;
        }
.value-item .text-wrap p {
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 0;
            opacity: 0.85;
        }

/* --- 子页面追加 --- */
/* 排行榜页面专属样式 */
        .rank-hero {
            background: linear-gradient(135deg, var(--bg) 0%, #ffe4ec 100%);
            border-bottom: 2px solid var(--border);
            padding: 60px 0 40px;
        }
.rank-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 12px;
        }
.rank-hero p {
            color: var(--text);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
        }
.rank-section {
            padding: 50px 0;
        }
.rank-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 40px;
        }
.rank-tab-btn {
            padding: 10px 24px;
            border: 2px solid var(--border);
            border-radius: 50px;
            background: #fff;
            color: var(--text);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.rank-tab-btn:hover, .rank-tab-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            box-shadow: var(--shadow);
        }
.rank-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }
.rank-item {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            gap: 20px;
        }
.rank-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
.rank-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent);
            min-width: 55px;
            text-align: center;
            font-style: italic;
        }
.rank-number.top-1 {
            color: #fbbf24;
            font-size: 2.6rem;
        }
.rank-number.top-2 {
            color: #94a3b8;
            font-size: 2.3rem;
        }
.rank-number.top-3 {
            color: #d97706;
            font-size: 2.1rem;
        }
.rank-item-poster {
            width: 70px;
            height: 95px;
            object-fit: cover;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }
.rank-item-info {
            flex: 1;
        }
.rank-item-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }
.rank-item-meta {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 6px;
        }
.rank-item-desc {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.7;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
.rank-item-score {
            text-align: center;
            flex-shrink: 0;
            min-width: 70px;
        }
.rank-item-score .score {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
        }
.rank-item-score .label {
            font-size: 0.75rem;
            color: #888;
        }
.rank-category {
            font-size: 0.75rem;
            background: var(--bg);
            border: 1px solid var(--border);
            color: var(--primary);
            padding: 2px 10px;
            border-radius: 20px;
            display: inline-block;
            margin-right: 6px;
        }
.rank-insight {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            margin-top: 50px;
            box-shadow: var(--shadow);
        }
.rank-insight h3 {
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 20px;
        }
.insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
.insight-card {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 20px;
            border: 1px solid var(--border);
        }
.insight-card i {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
.insight-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.insight-card p {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.7;
            line-height: 1.6;
            margin-bottom: 0;
        }
.rank-hero h1 {
                font-size: 2rem;
            }
.rank-item {
                flex-wrap: wrap;
                padding: 12px;
            }
.rank-item-poster {
                width: 50px;
                height: 68px;
            }
.rank-number {
                font-size: 1.4rem;
                min-width: 35px;
            }
.rank-item-score {
                min-width: 55px;
            }
.rank-item-score .score {
                font-size: 1.2rem;
            }
.rank-item-desc {
                -webkit-line-clamp: 1;
            }

/* --- 子页面追加 --- */
.disclaimer-hero {
            background: linear-gradient(135deg, var(--bg) 0%, #ffe8f0 100%);
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 2px solid var(--border);
        }
.disclaimer-hero h1 {
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
.disclaimer-hero .subtitle {
            color: #a06b7a;
            max-width: 700px;
            margin: 0 auto;
        }
.disclaimer-content {
            padding: 60px 0;
        }
.disclaimer-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
            border: 1px solid var(--border);
            transition: box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-card h2 {
            color: var(--text);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            position: relative;
        }
.disclaimer-card h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.disclaimer-card p, .disclaimer-card li {
            color: #6b3a4a;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-card ul, .disclaimer-card ol {
            padding-left: 20px;
            margin-bottom: 16px;
        }
.disclaimer-card li {
            margin-bottom: 8px;
        }
.highlight-box {
            background: #fff0f5;
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
.highlight-box p {
            margin-bottom: 0;
        }
.notice-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 16px;
        }
.footer-links a {
            color: var(--primary);
            text-decoration: none;
            margin: 0 8px;
            transition: color 0.2s;
        }
.footer-links a:hover {
            color: var(--accent);
        }
.disclaimer-card h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--primary);
        }

/* --- 子页面追加 --- */
.privacy-section { background: var(--bg); padding: 60px 0; }
.privacy-wrap { max-width: 900px; margin: 0 auto; }
.privacy-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 28px; box-shadow: var(--shadow); transition: box-shadow .3s; }
.privacy-block:hover { box-shadow: var(--shadow-hover); }
.privacy-block h2 { color: var(--primary); font-weight: 700; font-size: 1.45rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.privacy-block p, .privacy-block li { color: var(--text); line-height: 1.8; font-size: .95rem; }
.privacy-block ul { padding-left: 20px; }
.privacy-block li { margin-bottom: 8px; }
.privacy-block strong { color: var(--primary); font-weight: 600; }
.privacy-badge { display: inline-block; background: var(--primary); color: #fff; font-size: .8rem; font-weight: 600; padding: 4px 14px; border-radius: 30px; margin-bottom: 20px; letter-spacing: .5px; }
.privacy-date { color: #888; font-size: .85rem; margin-bottom: 28px; }
.privacy-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: var(--radius); padding: 28px; text-align: center; margin-top: 32px; }
.privacy-cta p { color: #fff; font-weight: 600; font-size: 1.05rem; margin-bottom: 14px; }
.privacy-cta .btn { background: #fff; color: var(--primary); border: none; font-weight: 600; padding: 10px 28px; border-radius: 30px; text-decoration: none; transition: transform .2s; }
.privacy-cta .btn:hover { transform: scale(1.05); }
.updated-note { background: var(--border); border-radius: 8px; padding: 12px 20px; font-size: .85rem; color: var(--text); margin-bottom: 24px; }
.privacy-block { padding: 22px; }
.privacy-block h2 { font-size: 1.2rem; }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.list-group-item { background:rgba(0,0,0,.03) !important; color:#4a2530 !important; border-color:rgba(0,0,0,.12) !important; }
.accordion-item { background:rgba(0,0,0,.03) !important; color:#4a2530 !important; border-color:rgba(0,0,0,.12) !important; }
.accordion-button { background:rgba(0,0,0,.03) !important; color:#4a2530 !important; }
.accordion-body { background:transparent !important; color:#4a2530 !important; }
.accordion-header { background:transparent !important; }
