:root {
        --main-color: #2563eb;
        --accent-color: #06b6d4;
        --bg-color: #f4f8ff;
        --text-color: #0f1e3d;
    }
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        line-height: 1.7;
        overflow-x: hidden;
    }
    h1, h2, h3, h4, .brand-font {
        font-weight: 800;
        letter-spacing: -0.02em;
    }
    /* 滚动进度条 */
    #scroll-progress {
        position: fixed;
        top: 0; left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--main-color), var(--accent-color));
        z-index: 9999;
        width: 0%;
        border-radius: 0 2px 2px 0;
    }
    /* Hero 区域 */
    .hero-section {
        background: linear-gradient(135deg, #e0edff 0%, var(--bg-color) 50%, #d8f8ff 100%);
        padding: 4rem 0 3rem;
        position: relative;
        overflow: hidden;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%; left: -20%;
        width: 140%; height: 200%;
        background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
        transform: translateY(0);
        transition: transform 0.2s ease-out;
        will-change: transform;
        z-index: 0;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    .hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
        margin-top: 1.2rem;
    }
    .hero-tags .badge {
        background: rgba(255, 255, 255, 0.7);
        color: var(--text-color);
        border: 1px solid rgba(37, 99, 235, 0.15);
        backdrop-filter: blur(5px);
        padding: 0.5rem 1rem;
        font-weight: 500;
        font-size: 0.9rem;
        border-radius: 50rem;
        animation: floatTag 6s ease-in-out infinite;
    }
    .hero-tags .badge:nth-child(2n) { animation-delay: 1s; }
    .hero-tags .badge:nth-child(3n) { animation-delay: 2s; }
    @keyframes floatTag {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }
    /* 胶囊导航 */
    .navbar-capsule {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        padding: 0.8rem 0;
    }
    .navbar-capsule .navbar-brand {
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--main-color);
    }
    .navbar-capsule .nav-link {
        border-radius: 50rem;
        padding: 0.5rem 1.2rem;
        margin: 0 0.2rem;
        font-weight: 500;
        color: var(--text-color);
        transition: all 0.2s ease;
    }
    .navbar-capsule .nav-link:hover, .navbar-capsule .nav-link.active {
        background: var(--main-color);
        color: #fff;
    }
    /* 区块样式 */
    .section-block {
        padding: 3.5rem 0;
    }
    .section-title {
        font-size: 1.9rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -8px; left: 0;
        width: 50px; height: 4px;
        background: linear-gradient(90deg, var(--main-color), var(--accent-color));
        border-radius: 2px;
    }
    /* 电影卡片 */
    .movie-card {
        border: none;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(15, 30, 61, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
        height: 100%;
        cursor: pointer;
        position: relative;
    }
    .movie-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(15, 30, 61, 0.15);
    }
    .movie-card .img-wrapper {
        position: relative;
        overflow: hidden;
        aspect-ratio: 2 / 3;
    }
    .movie-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .movie-card:hover img {
        transform: scale(1.08);
    }
    .movie-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(15, 30, 61, 0.85) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1rem;
        color: #fff;
    }
    .movie-card:hover .movie-overlay {
        opacity: 1;
    }
    .movie-overlay p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .movie-overlay .rating-star {
        color: #fbbf24;
        font-size: 0.9rem;
    }
    .card-body {
        padding: 0.8rem 1rem;
    }
    .card-body .movie-title {
        font-weight: 700;
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .card-body .movie-meta {
        font-size: 0.75rem;
        color: #64748b;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    /* 榜单 */
    .rank-item {
        display: flex;
        align-items: center;
        padding: 0.8rem 1rem;
        background: #fff;
        border-radius: 0.75rem;
        margin-bottom: 0.6rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 2px 8px rgba(15, 30, 61, 0.04);
    }
    .rank-item:hover {
        transform: translateX(6px);
        box-shadow: 0 4px 12px rgba(15, 30, 61, 0.1);
    }
    .rank-medal {
        width: 2.2rem;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 900;
        color: #cbd5e1;
        flex-shrink: 0;
    }
    .rank-item:nth-child(1) .rank-medal { color: #fbbf24; }
    .rank-item:nth-child(2) .rank-medal { color: #94a3b8; }
    .rank-item:nth-child(3) .rank-medal { color: #d97706; }
    .rank-info {
        flex: 1;
        margin-left: 0.8rem;
        min-width: 0;
    }
    .rank-info .rank-title {
        font-weight: 600;
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .rank-info .rank-sub {
        font-size: 0.8rem;
        color: #64748b;
    }
    .rank-score {
        font-weight: 800;
        color: var(--main-color);
        font-size: 1.1rem;
        margin-left: 0.5rem;
        flex-shrink: 0;
    }
    /* 分类筛选区 */
    .category-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 2rem;
    }
    .filter-btn {
        border: 1px solid #d1d5db;
        background: #fff;
        color: var(--text-color);
        border-radius: 50rem;
        padding: 0.4rem 1.1rem;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    .filter-btn:hover, .filter-btn.active {
        background: var(--main-color);
        border-color: var(--main-color);
        color: #fff;
    }
    /* 对比表格 */
    .compare-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(15, 30, 61, 0.08);
        background: #fff;
    }
    .compare-table th, .compare-table td {
        padding: 1rem 1.2rem;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
    }
    .compare-table th {
        background: #f8fafc;
        font-weight: 700;
        color: var(--text-color);
    }
    .compare-table tr:last-child th, .compare-table tr:last-child td {
        border-bottom: none;
    }
    .compare-table .featured-col {
        background: rgba(37, 99, 235, 0.03);
    }
    .compare-table .fa-check {
        color: #22c55e;
        font-size: 1.1rem;
    }
    .compare-table .fa-times {
        color: #ef4444;
    }
    /* 编号清单 */
    .steps-list {
        counter-reset: step-counter;
        list-style: none;
        padding-left: 0;
    }
    .steps-list li {
        counter-increment: step-counter;
        padding: 0.8rem 0 0.8rem 2.5rem;
        position: relative;
        font-size: 0.95rem;
        border-bottom: 1px dashed #e2e8f0;
    }
    .steps-list li:last-child { border-bottom: none; }
    .steps-list li::before {
        content: counter(step-counter);
        position: absolute;
        left: 0; top: 0.8rem;
        width: 1.6rem; height: 1.6rem;
        background: var(--main-color);
        color: #fff;
        border-radius: 50%;
        font-size: 0.8rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* 心情标签 */
    .mood-tag {
        display: inline-block;
        padding: 0.5rem 1.2rem;
        background: linear-gradient(135deg, var(--main-color), var(--accent-color));
        color: #fff;
        border-radius: 50rem;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    }
    .mood-tag:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(37, 99, 235, 0.35);
    }
    /* 弹窗 */
    .modal-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(15, 30, 61, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1050;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }
    .modal-overlay.show {
        display: flex;
    }
    .movie-modal {
        background: #fff;
        border-radius: 1.5rem;
        max-width: 700px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 25px 60px rgba(15, 30, 61, 0.3);
        animation: modalIn 0.3s ease;
    }
    @keyframes modalIn {
        from { transform: scale(0.95) translateY(20px); opacity: 0; }
        to { transform: scale(1) translateY(0); opacity: 1; }
    }
    .modal-close {
        position: absolute;
        top: 1rem; right: 1rem;
        width: 2.2rem; height: 2.2rem;
        border-radius: 50%;
        background: rgba(0,0,0,0.1);
        border: none;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: background 0.2s ease;
    }
    .modal-close:hover { background: rgba(0,0,0,0.2); }
    .modal-content-wrapper {
        display: flex;
        flex-direction: column;
    }
    .modal-poster {
        aspect-ratio: 2/3;
        width: 100%;
        object-fit: cover;
        border-radius: 1.5rem 1.5rem 0 0;
    }
    .modal-info {
        padding: 1.5rem;
    }
    .modal-title {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }
    .modal-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        font-size: 0.85rem;
        color: #64748b;
        margin-bottom: 0.8rem;
    }
    .modal-meta .badge {
        background: rgba(37, 99, 235, 0.1);
        color: var(--main-color);
        font-weight: 600;
    }
    .modal-rating {
        color: #fbbf24;
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 0.8rem;
    }
    .modal-plot {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #334155;
    }
    .modal-actors {
        font-size: 0.85rem;
        color: #64748b;
        margin-top: 0.8rem;
    }
    @media (min-width: 768px) {
        .modal-content-wrapper {
            flex-direction: row;
        }
        .modal-poster {
            width: 35%;
            border-radius: 1.5rem 0 0 1.5rem;
        }
        .modal-info {
            width: 65%;
        }
    }
    /* 页脚 */
    .footer {
        background: #0f1e3d;
        color: #94a3b8;
        padding: 2rem 0;
        margin-top: 3rem;
    }
    .footer a {
        color: #cbd5e1;
        text-decoration: none;
    }
    .footer a:hover { color: #fff; }
    .friend-links {
        background: rgba(255,255,255,0.8);
        border-radius: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(37, 99, 235, 0.1);
    }
    .friend-links h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: var(--text-color);
    }
    /* 通用 */
    .pill-card {
        border-radius: 1.5rem;
        border: none;
        box-shadow: 0 4px 20px rgba(15, 30, 61, 0.06);
    }
    .btn-main {
        background: var(--main-color);
        color: #fff;
        border-radius: 50rem;
        border: none;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .btn-main:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
        color: #fff;
    }
    .text-main { color: var(--main-color); }
    .text-accent { color: var(--accent-color); }

/* --- 子页面追加 --- */
/* 确保Bootstrap组件与站点配色一致（深色卡片/文字） */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .form-label, .input-group-text,
        .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
        .nav-link, .navbar, .navbar-brand, .btn-light, .btn-outline-* {
            background: transparent;
            color: var(--text-color);
            border-color: rgba(15, 30, 61, 0.1);
        }
.navbar {
            background: rgba(244, 248, 255, 0.85) !important;
            backdrop-filter: blur(8px);
        }
.btn-outline-primary {
            border-color: var(--main-color);
            color: var(--main-color);
        }
.btn-outline-primary:hover {
            background: var(--main-color);
            color: #fff;
        }
.section-title h2 {
            color: var(--text-color);
        }
.about-lead {
            color: var(--text-color);
            opacity: 0.9;
        }
.feature-box {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(4px);
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid rgba(37, 99, 235, 0.15);
            transition: all 0.2s ease;
            height: 100%;
        }
.feature-box:hover {
            border-color: var(--main-color);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
            transform: translateY(-3px);
        }
.feature-box i {
            color: var(--main-color);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
.feature-box h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-color);
        }
.feature-box p {
            color: var(--text-color);
            opacity: 0.75;
            font-size: 0.95rem;
        }
.about-quote {
            background: rgba(6, 182, 212, 0.06);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem 2rem;
            border-radius: 0 20px 20px 0;
            font-size: 1.1rem;
            color: var(--text-color);
            font-style: italic;
            margin: 2rem 0;
        }
.team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
.team-item {
            text-align: center;
            padding: 1.2rem 0.8rem;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 16px;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }
.team-item i {
            font-size: 2.4rem;
            color: var(--main-color);
            margin-bottom: 0.4rem;
        }
.team-item span {
            display: block;
            font-weight: 600;
            color: var(--text-color);
        }
.team-item small {
            color: var(--text-color);
            opacity: 0.6;
        }
.footer-links a {
            color: var(--text-color);
            opacity: 0.8;
            text-decoration: none;
            margin: 0 0.5rem;
        }
.footer-links a:hover {
            opacity: 1;
            color: var(--main-color);
        }
/* 确保卡片内文字可见 */
        .card-body {
            background: rgba(255,255,255,0.6);
            border-radius: 12px;
        }

/* --- 子页面追加 --- */
/* 确保 bootstrap 卡片/组件与站点深色风格融合 (覆盖默认白底) */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer {
            background: var(--card-bg, #1e2a4a);
            color: var(--text-color, #f4f8ff);
            border-color: var(--border-color, #2d3b5e);
        }
.rank-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
            color: #fff;
        }
.rank-info .rank-meta {
            font-size: 0.85rem;
            opacity: 0.75;
        }
.category-filters .filter-btn {
            background: transparent;
            border: 1px solid var(--main-color);
            color: var(--text-color);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
.category-filters .filter-btn.active, .category-filters .filter-btn:hover {
            background: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
        }
.ranking-tip {
            background: rgba(6, 182, 212, 0.08);
            border-radius: 40px;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            border: 1px dashed var(--accent-color);
            display: inline-block;
            margin-bottom: 1.5rem;
        }
/* 确保表格/列表颜色适配深色背景 */
        .list-group-item {
            background: transparent;
            color: var(--text-color);
            border-color: rgba(255,255,255,0.1);
        }

/* --- 子页面追加 --- */
/* 覆盖bootstrap默认白底黑字，确保与成人网络播放器配色统一 */
        .card, .card-body, .card-header, .card-footer,
        .form-control, .form-select, .input-group-text,
        .table, .list-group-item, .accordion-item, .accordion-button,
        .accordion-body, .modal-content, .modal-header, .modal-body,
        .dropdown-menu, .dropdown-item {
            background: var(--bg-color) !important;
            color: var(--text-color) !important;
            border-color: rgba(37, 99, 235, 0.15) !important;
        }
.form-control::placeholder {
            color: rgba(15, 30, 61, 0.5) !important;
        }
.btn-outline-primary, .btn-outline-secondary {
            border-color: var(--main-color) !important;
            color: var(--main-color) !important;
        }
.btn-outline-primary:hover, .btn-outline-secondary:hover {
            background: var(--main-color) !important;
            color: #fff !important;
        }
/* 确保卡片内标题可读 */
        .card-title, .card-text {
            color: var(--text-color) !important;
        }
/* 导航胶囊复用 */
        .navbar-capsule {
            background: rgba(255,255,255,0.7) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(37,99,235,0.1);
        }
.navbar-capsule .nav-link.active,
        .navbar-capsule .nav-link:hover {
            color: var(--main-color) !important;
        }
/* 分类筛选按钮颜色 */
        .category-filters .filter-btn {
            background: var(--bg-color);
            border: 1px solid rgba(37,99,235,0.2);
            color: var(--text-color);
        }
.category-filters .filter-btn.active,
        .category-filters .filter-btn:hover {
            background: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
        }
/* 表格覆盖 */
        .table {
            --bs-table-bg: transparent;
        }
/* 片单小标签 */
        .tag-pill {
            background: rgba(6, 182, 212, 0.12);
            color: var(--accent-color);
            border-radius: 20px;
            padding: 2px 12px;
            font-size: 0.8rem;
        }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .page-hero {
            background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
            padding: 80px 0 60px;
            color: #fff;
        }
.page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
.page-hero p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 700px;
        }
.tv-filter-bar {
            background: #fff;
            border-radius: 16px;
            padding: 20px 24px;
            margin-top: -30px;
            position: relative;
            z-index: 10;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
            border: 1px solid rgba(37, 99, 235, 0.1);
        }
.tv-section-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: 28px;
            position: relative;
            padding-left: 18px;
        }
.tv-section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--accent-color);
            border-radius: 4px;
        }
.tv-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(15, 30, 61, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid rgba(37, 99, 235, 0.08);
        }
.tv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(37, 99, 235, 0.18);
        }
.tv-card-poster {
            position: relative;
            padding-top: 140%;
            overflow: hidden;
        }
.tv-card-poster img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.tv-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(37, 99, 235, 0.9);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }
.tv-card-info {
            padding: 16px;
        }
.tv-card-info h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.tv-card-meta {
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.tv-card-rating {
            color: #f59e0b;
            font-weight: 600;
        }
.tv-special-section {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
            border-radius: 20px;
            padding: 32px;
            margin: 40px 0;
        }
.tv-tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            background: #fff;
            border: 1px solid rgba(37, 99, 235, 0.15);
            color: var(--text-color);
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 8px 12px 0;
        }
.tv-tag:hover, .tv-tag.active {
            background: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
        }
.tv-feature-box {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid rgba(37, 99, 235, 0.1);
            box-shadow: 0 4px 16px rgba(15, 30, 61, 0.06);
            height: 100%;
        }
.tv-feature-box i {
            font-size: 2rem;
            color: var(--main-color);
            margin-bottom: 16px;
        }
.tv-feature-box h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 12px;
        }
.tv-feature-box p {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.7;
        }
.tv-rank-item {
            display: flex;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid rgba(15, 30, 61, 0.08);
        }
.tv-rank-item:last-child {
            border-bottom: none;
        }
.tv-rank-num {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--main-color), var(--accent-color));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            margin-right: 16px;
            flex-shrink: 0;
        }
.tv-rank-title {
            flex: 1;
            font-weight: 600;
            color: var(--text-color);
        }
.tv-rank-score {
            font-weight: 700;
            color: #f59e0b;
            margin-left: 12px;
        }

/* --- 子页面追加 --- */
/* 本页专属样式补充 */
        .topic-hero {
            background: linear-gradient(135deg, var(--bg-color) 0%, #e8f0fe 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        }
.topic-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: 15px;
        }
.topic-hero p {
            color: #5a6a8a;
            font-size: 1.1rem;
            max-width: 700px;
        }
.section-title::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 28px;
            background: var(--main-color);
            border-radius: 3px;
        }
.topic-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid rgba(37, 99, 235, 0.08);
        }
.topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
        }
.topic-card .card-body {
            padding: 20px;
            background: #fff;
            color: var(--text-color);
        }
.topic-card .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 10px;
        }
.topic-card .card-text {
            color: #5a6a8a;
            font-size: 0.9rem;
            line-height: 1.6;
        }
.topic-tag {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--main-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
.movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
.card-body h5 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 5px;
        }
.card-body p {
            font-size: 0.85rem;
            color: #5a6a8a;
        }
.score-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(15, 30, 61, 0.8);
            color: #ffd700;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            backdrop-filter: blur(5px);
        }
.list-group-item:hover {
            background: rgba(37, 99, 235, 0.05);
        }
.list-group-item i {
            color: var(--main-color);
            margin-right: 10px;
        }
.topic-hero h1 {
                font-size: 1.8rem;
            }
.movie-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 15px;
            }

/* --- 子页面追加 --- */
/* 综艺页面专属样式 */
        .variety-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.85));
            padding: 80px 0 60px;
            color: #fff;
            margin-bottom: 50px;
        }
.variety-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
.variety-hero p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 700px;
        }
.variety-section {
            padding: 40px 0;
        }
.variety-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 30px;
            position: relative;
            padding-left: 18px;
            border-left: 5px solid var(--main-color);
        }
.variety-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(15, 30, 61, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 25px;
            border: 1px solid #eef2f7;
        }
.variety-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
        }
.variety-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
.variety-card-body {
            padding: 20px;
        }
.variety-card-body h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 8px;
        }
.variety-card-body p {
            color: #6b7a99;
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 12px;
        }
.variety-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid #eef2f7;
            color: #8a99b3;
            font-size: 0.85rem;
        }
.variety-tag {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--main-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-right: 8px;
        }
.variety-badge {
            display: inline-block;
            background: var(--accent-color);
            color: #fff;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
.variety-list {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(15, 30, 61, 0.06);
            margin-bottom: 30px;
        }
.variety-list-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f4fa;
        }
.variety-list-item:last-child {
            border-bottom: none;
        }
.variety-list-rank {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(37, 99, 235, 0.1);
            color: var(--main-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }
.variety-list-rank.top {
            background: var(--main-color);
            color: #fff;
        }
.variety-list-info {
            flex: 1;
        }
.variety-list-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-color);
            margin: 0 0 4px;
        }
.variety-list-info p {
            font-size: 0.85rem;
            color: #6b7a99;
            margin: 0;
        }
.variety-list-score {
            font-weight: 700;
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-left: 15px;
        }
.variety-schedule {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(15, 30, 61, 0.06);
        }
.schedule-day {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 12px 15px;
            background: var(--bg-color);
            border-radius: 8px;
        }
.schedule-day-label {
            font-weight: 700;
            color: var(--main-color);
            width: 60px;
            flex-shrink: 0;
        }
.schedule-day-list {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
.schedule-item {
            background: #fff;
            border: 1px solid #e0e8f4;
            border-radius: 6px;
            padding: 6px 12px;
            font-size: 0.85rem;
            color: var(--text-color);
            cursor: pointer;
            transition: all 0.2s;
        }
.schedule-item:hover {
            background: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
        }
.variety-hero h1 {
                font-size: 2rem;
            }
.variety-card-img {
                height: 140px;
            }
.schedule-day {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

/* --- 子页面追加 --- */
/* 本页专属微调：动漫页面卡片悬浮与渐变 */
        .anime-hero {
            background: linear-gradient(145deg, var(--bg-color) 0%, #e2eafc 100%);
            border-bottom: 1px solid rgba(37, 99, 235, 0.12);
        }
.anime-card {
            background: #ffffff;
            border-radius: 18px;
            transition: all .25s ease;
            border: 1px solid rgba(37, 99, 235, 0.08);
            box-shadow: 0 6px 18px rgba(15, 30, 61, 0.04);
        }
.anime-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
            border-color: rgba(37, 99, 235, 0.2);
        }
.anime-tag {
            background: rgba(6, 182, 212, 0.1);
            color: #0f3a5f;
            font-weight: 600;
            border-radius: 30px;
            padding: 4px 14px;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
        }
.section-anime-title {
            border-left: 5px solid var(--main-color);
            padding-left: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.rank-badge {
            background: var(--main-color);
            color: white;
            font-weight: 700;
            min-width: 32px;
            height: 32px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }
.week-list {
            background: rgba(255,255,255,0.7);
            border-radius: 20px;
            padding: 1.5rem;
            backdrop-filter: blur(2px);
        }
.anime-hero h1 { font-size: 2rem; }

/* --- 子页面追加 --- */
.disclaimer-section {
            padding: 60px 0;
        }
.disclaimer-content {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
            border: 1px solid rgba(37, 99, 235, 0.1);
        }
.disclaimer-content h2 {
            color: var(--main-color);
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent-color);
            display: inline-block;
        }
.disclaimer-content h3 {
            color: var(--text-color);
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }
.disclaimer-content p {
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.disclaimer-content ul {
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 20px;
            padding-left: 20px;
        }
.disclaimer-content li {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
.disclaimer-content strong {
            color: var(--text-color);
        }
.update-date {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            color: #718096;
            font-size: 0.9rem;
            text-align: right;
        }
.disclaimer-content {
                padding: 25px;
            }
.disclaimer-content h2 {
                font-size: 1.3rem;
            }
.disclaimer-content h3 {
                font-size: 1.1rem;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-header { background:transparent !important; }
