:root {
    --primary: #6d5dfc;
    --accent: #22d3ee;
    --bg: #0f1020;
    --text: #e8eaf6;
    --card-bg: rgba(255,255,255,0.06);
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow: 0 8px 32px rgba(109, 93, 252, 0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', '思源黑体', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, .serif-font {
    font-family: '思源宋体', 'Songti SC', 'Noto Serif SC', Georgia, serif;
}
/* 滚动条美化 */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
/* 导航栏 */
.navbar-custom {
    background: rgba(15, 16, 32, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-brand .brand-icon {
    color: var(--primary);
    font-size: 2rem;
}
.navbar-brand span.brand-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-link-custom {
    color: var(--text) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    font-size: 0.95rem;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-link-custom:hover::after { width: 100%; }
.nav-link-custom:hover { color: var(--accent) !important; }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { color: var(--text); font-size: 1.5rem; }
/* Hero 区块 */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #0f1020 0%, #1a1a3e 50%, #0f1020 100%);
    overflow: hidden;
}
.hero-bg-parallax {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle at 30% 50%, rgba(109, 93, 252, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.2) 0%, transparent 40%);
    animation: heroFloat 8s ease-in-out infinite alternate;
    z-index: 1;
}
@keyframes heroFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(34, 211, 238, 0.3);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(232, 234, 246, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(109, 93, 252, 0.4);
}
.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}
/* 区块通用样式 */
.section-padding { padding: 5rem 0; }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
.section-title .title-icon {
    color: var(--primary);
    margin-right: 10px;
}
.section-subtitle {
    color: rgba(232, 234, 246, 0.6);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
/* 分类入口 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.category-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    backdrop-filter: blur(10px);
}
.category-card:hover {
    transform: translateY(-8px);
    background: rgba(109, 93, 252, 0.2);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(109, 93, 252, 0.2);
}
.category-card i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: block;
}
.category-card .cat-name {
    font-size: 1rem;
    font-weight: 600;
}
/* 海报卡片 */
.movie-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    cursor: pointer;
    position: relative;
    height: 100%;
    backdrop-filter: blur(5px);
}
.movie-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(109, 93, 252, 0.35);
    border-color: rgba(34, 211, 238, 0.3);
}
.movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #1a1a3e, #2d2d5e);
}
.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.movie-card:hover .movie-poster img {
    transform: scale(1.1);
}
.movie-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    z-index: 2;
}
.movie-rating-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.9), rgba(34, 211, 238, 0.9));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.movie-info {
    padding: 1rem 1.2rem 1.2rem;
}
.movie-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.movie-meta {
    font-size: 0.8rem;
    color: rgba(232, 234, 246, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.movie-type {
    background: rgba(34, 211, 238, 0.15);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--accent);
    font-size: 0.7rem;
}
/* 海报行滚动 */
.movie-row {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.movie-row::-webkit-scrollbar { height: 5px; }
.movie-row::-webkit-scrollbar-track { background: transparent; }
.movie-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.movie-row .movie-card {
    min-width: 180px;
    flex-shrink: 0;
    max-width: 200px;
}
/* 排行榜 */
.ranking-list {
    list-style: none;
    padding: 0;
}
.ranking-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}
.ranking-item:hover {
    background: rgba(109, 93, 252, 0.15);
    border-color: var(--primary);
    transform: translateX(8px);
}
.ranking-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    width: 50px;
    text-align: center;
    font-family: '思源宋体', serif;
}
.ranking-number.top-3 {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ranking-info {
    flex: 1;
    padding: 0 1rem;
}
.ranking-title {
    font-weight: 600;
    font-size: 0.95rem;
}
.ranking-meta {
    font-size: 0.8rem;
    color: rgba(232, 234, 246, 0.5);
}
.ranking-rating {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}
/* 专题 */
.feature-card {
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.2), rgba(34, 211, 238, 0.1));
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(109, 93, 252, 0.3);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.feature-desc {
    color: rgba(232, 234, 246, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}
/* FAQ */
.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-question i {
    transition: transform 0.3s;
    color: var(--primary);
}
.faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: rgba(232, 234, 246, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    display: none;
}
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-item.active .faq-answer { display: block; }
/* 友情链接 */
.friend-links {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.friend-links-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.friend-links-title i { color: var(--primary); }
.friend-links-content {
    color: rgba(232, 234, 246, 0.6);
    font-size: 0.9rem;
    line-height: 2;
}
/* 页脚 */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}
.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.footer-links a {
    color: rgba(232, 234, 246, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copyright {
    color: rgba(232, 234, 246, 0.4);
    font-size: 0.8rem;
}
/* 回到顶部 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(109, 93, 252, 0.4);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: scale(1.1);
}
/* 弹窗 */
.movie-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    overflow-y: auto;
}
.movie-modal.show { display: flex; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    margin: auto;
    max-width: 700px;
    width: 90%;
    background: linear-gradient(145deg, rgba(20, 20, 45, 0.95), rgba(30, 30, 70, 0.9));
    border-radius: var(--radius-lg);
    padding: 2rem;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}
.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: '思源宋体', serif;
}
.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.modal-meta span {
    background: rgba(34, 211, 238, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent);
}
.modal-rating {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.modal-plot {
    margin-bottom: 1rem;
    color: rgba(232, 234, 246, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}
.modal-actors {
    color: rgba(232, 234, 246, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.modal-director {
    color: rgba(232, 234, 246, 0.6);
    font-size: 0.9rem;
}
/* 响应式 */
@media (max-width: 768px) {
    .section-padding { padding: 3rem 0; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .movie-row .movie-card { min-width: 140px; max-width: 160px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .modal-content { padding: 1.5rem; }
}
@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}

/* --- 子页面追加 --- */
/* 确保所有卡片/组件沿用暗色风格, 即使全局未覆盖 */
        .about-card, .about-card .card-body,
        .feature-card, .feature-card .card-body,
        .timeline-item, .stat-card {
            background: var(--card-bg);
            color: var(--text);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
        }
.about-card, .feature-card, .timeline-item, .stat-card {
            padding: 1.5rem;
            backdrop-filter: blur(4px);
        }
.stat-card {
            text-align: center;
            background: rgba(109, 93, 252, 0.12);
            border: 1px solid rgba(109, 93, 252, 0.25);
        }
.stat-card h3 {
            color: var(--accent);
            font-weight: 800;
            font-size: 2.5rem;
        }
.stat-card p {
            color: var(--text);
            opacity: .8;
        }
.timeline-item {
            border-left: 4px solid var(--primary);
            margin-bottom: 1.5rem;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
        }
.timeline-item h4 {
            color: var(--accent);
            font-weight: 600;
        }
/* 列表页样式 */
        .list-custom li {
            background: transparent;
            color: var(--text);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding: .6rem 0;
        }
.list-custom li i {
            color: var(--accent);
            margin-right: .6rem;
        }
/* 覆盖bootstrap导航可能出现的白底 */
        .navbar-custom .nav-link-custom {
            color: var(--text) !important;
        }
.navbar-custom .navbar-toggler {
            color: var(--text);
            border: none;
        }
.navbar-custom .navbar-toggler i {
            color: var(--text);
        }
/* 确保容器内无白块 */
        .container, .row, [class*="col-"] {
            color: var(--text);
        }

/* --- 子页面追加 --- */
/* 保证任何bootstrap组件都被本站配色覆盖，但本页尽量不用组件类，只用了栅格和工具类 */
        .movie-card {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 100%;
        }
.movie-poster-wrapper {
            position: relative;
            aspect-ratio: 2 / 3;
            background: rgba(0,0,0,0.3);
            overflow: hidden;
        }
.movie-meta i {
            color: var(--accent);
            width: 16px;
            margin-right: 4px;
            font-size: 0.8rem;
        }
.btn-outline-mx {
            border: 1px solid rgba(109,93,252,0.4);
            color: var(--text);
            border-radius: 60px;
            padding: 8px 22px;
            transition: 0.2s;
            background: transparent;
            font-weight: 500;
        }
.btn-outline-mx:hover {
            background: rgba(109,93,252,0.1);
            border-color: var(--primary);
            color: #fff;
        }
.navbar-custom .nav-link-custom.active {
            color: var(--accent) !important;
            font-weight: 600;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .tv-hero {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.tv-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(109, 93, 252, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
.tv-hero-content {
            position: relative;
            z-index: 2;
        }
.tv-hero-title {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
.tv-hero-subtitle {
            color: var(--text);
            opacity: 0.8;
            font-size: 1.15rem;
            max-width: 700px;
            line-height: 1.8;
        }
.tv-filter-section {
            padding: 40px 0 20px;
        }
.tv-filter-wrapper {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 25px 30px;
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
        }
.tv-filter-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.15);
            color: var(--text);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 8px 8px 0;
            cursor: pointer;
        }
.tv-filter-btn:hover, .tv-filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            box-shadow: 0 4px 15px rgba(109, 93, 252, 0.3);
        }
.tv-grid-section {
            padding: 30px 0 70px;
        }
.tv-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.4s ease;
            height: 100%;
        }
.tv-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: rgba(109, 93, 252, 0.3);
        }
.tv-poster {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
            background: rgba(0,0,0,0.3);
        }
.tv-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
.tv-card:hover .tv-poster img {
            transform: scale(1.08);
        }
.tv-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(109, 93, 252, 0.9);
            color: #fff;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
        }
.tv-rating {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.7);
            color: #ffd700;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            backdrop-filter: blur(5px);
        }
.tv-info {
            padding: 18px;
        }
.tv-title {
            color: var(--text);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.tv-meta {
            color: rgba(232, 234, 246, 0.6);
            font-size: 0.85rem;
            display: flex;
            gap: 12px;
        }
.tv-meta i {
            color: var(--accent);
            font-size: 0.75rem;
            margin-right: 4px;
        }
.tv-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
        }
.tv-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            position: relative;
            padding-left: 20px;
        }
.tv-section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 28px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 4px;
        }
.tv-section-subtitle {
            color: rgba(232, 234, 246, 0.6);
            font-size: 0.95rem;
        }
.tv-highlight-section {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.1), rgba(34, 211, 238, 0.08));
            padding: 60px 0;
            margin: 40px 0;
        }
.tv-highlight-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-lg);
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
.tv-highlight-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
.tv-highlight-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
.tv-highlight-card h3 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
.tv-highlight-card p {
            color: rgba(232, 234, 246, 0.7);
            font-size: 0.9rem;
            line-height: 1.6;
        }
.tv-hero-title {
                font-size: 2rem;
            }
.tv-hero-subtitle {
                font-size: 1rem;
            }
.tv-section-title {
                font-size: 1.4rem;
            }

/* --- 子页面追加 --- */
/* 确保所有卡片继承站点配色，覆盖Bootstrap默认白底 */
        .card, .card-body, .card-header, .card-footer {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border: 1px solid rgba(255,255,255,0.1) !important;
        }
.card-title, .card-text { color: var(--text) !important; }
.list-group-item {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: rgba(255,255,255,0.08) !important;
        }
.form-control, .form-select {
            background: rgba(0,0,0,0.3) !important;
            border: 1px solid rgba(255,255,255,0.15) !important;
            color: var(--text) !important;
        }
.form-control::placeholder { color: rgba(255,255,255,0.4) !important; }
.accordion-item, .accordion-button {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: rgba(255,255,255,0.1) !important;
        }
.accordion-button:not(.collapsed) {
            background: rgba(109, 93, 252, 0.2) !important;
            color: var(--text) !important;
        }
.accordion-body { background: transparent !important; }
/* 小卡片微调 */
        .anime-tag {
            background: rgba(109,93,252,0.2);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 8px;
        }
.section-divider {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin: 3rem 0;
        }

/* --- 子页面追加 --- */
/* 本页少量专属样式，自动合并进站点CSS */
        .variety-hero {
            background: linear-gradient(145deg, rgba(109,93,252,0.2) 0%, rgba(34,211,238,0.08) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
.variety-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 1.25rem;
            transition: transform .2s ease, box-shadow .2s ease;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.03);
        }
.variety-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
.variety-badge {
            background: rgba(109, 93, 252, 0.25);
            color: #c9d3ff;
            border-radius: 50rem;
            font-size: .7rem;
            padding: .2rem .8rem;
            border: 1px solid rgba(109,93,252,0.3);
        }
.variety-type {
            color: var(--accent);
            font-weight: 600;
            font-size: .8rem;
            letter-spacing: .5px;
        }
.variety-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin: .5rem 0 .35rem;
            color: var(--text);
        }
.variety-desc {
            color: rgba(232,234,246,0.7);
            font-size: .9rem;
            line-height: 1.5;
        }
.variety-meta {
            color: rgba(232,234,246,0.5);
            font-size: .8rem;
            display: flex;
            gap: 1rem;
            margin-top: .75rem;
        }
.variety-section-title {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -.5px;
            margin-bottom: 1rem;
            color: var(--text);
        }
.variety-section-sub {
            color: rgba(232,234,246,0.6);
            margin-bottom: 2rem;
            font-size: 1rem;
        }
.live-badge {
            background: rgba(34, 211, 238, 0.2);
            color: var(--accent);
            border-radius: 50rem;
            padding: .15rem .7rem;
            font-size: .7rem;
            border: 1px solid rgba(34,211,238,0.3);
        }
.btn-outline-variety {
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--text);
            border-radius: 50rem;
            padding: .3rem 1rem;
            font-size: .8rem;
            background: transparent;
            transition: all .15s;
        }
.btn-outline-variety:hover {
            background: rgba(255,255,255,0.05);
            border-color: var(--accent);
            color: var(--accent);
        }
/* 覆盖bootstrap组件潜在白底 */
        .card, .card-body { background: var(--card-bg); color: var(--text); border: none; }

/* --- 子页面追加 --- */
/* 确保Bootstrap组件配色被覆盖，避免白块 */
        .navbar-custom {
            background: var(--bg) !important;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
/* 卡片样式覆盖 (如果用到bootstrap卡片, 这里全部接管) */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: rgba(255,255,255,0.1) !important;
        }
.card {
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
        }
/* 任何下拉/表单等不用bootstrap组件类, 所以无需额外覆盖 */

        /* 纪录片专题专属微调 */
        .doc-hero {
            background: radial-gradient(circle at 20% 30%, rgba(109,93,252,0.15), transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(34,211,238,0.08), transparent 40%),
                        var(--bg);
        }
.section-title-doc {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
.section-title-doc::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 4px;
        }
.doc-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
.doc-card-item {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.doc-card-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(109, 93, 252, 0.25);
        }
.doc-card-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }
.doc-card-title {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
.doc-card-text {
            color: rgba(232,234,246,0.8);
            font-size: 0.95rem;
            line-height: 1.6;
        }
.badge-doc {
            display: inline-block;
            background: rgba(109,93,252,0.2);
            color: var(--accent);
            border-radius: 20px;
            padding: 0.2rem 0.8rem;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
.doc-quote {
            border-left: 4px solid var(--accent);
            padding-left: 1.2rem;
            font-style: italic;
            color: rgba(232,234,246,0.7);
            margin: 2rem 0;
        }

/* --- 子页面追加 --- */
/* 保证 Bootstrap 组件不出现白底黑字，覆盖为本站配色 */
        .disclaimer-content .card,
        .disclaimer-content .card-body {
            background: var(--card-bg);
            color: var(--text);
            border-color: rgba(255,255,255,0.1);
            border-radius: var(--radius-md);
        }
.disclaimer-content .list-group-item {
            background: rgba(255,255,255,0.04);
            color: var(--text);
            border-color: rgba(255,255,255,0.08);
        }
.disclaimer-content .accordion-item,
        .disclaimer-content .accordion-button {
            background: rgba(255,255,255,0.04);
            color: var(--text);
            border-color: rgba(255,255,255,0.1);
        }
.disclaimer-content .accordion-button:not(.collapsed) {
            background: rgba(109, 93, 252, 0.2);
            color: #fff;
            box-shadow: none;
        }
.disclaimer-content .form-control {
            background: rgba(0,0,0,0.35);
            color: var(--text);
            border-color: rgba(255,255,255,0.15);
        }
.disclaimer-content .form-control::placeholder {
            color: rgba(255,255,255,0.45);
        }
/* 本页专属小样式 */
        .disclaimer-hero {
            padding: 3.5rem 0 2.5rem;
            background: linear-gradient(145deg, rgba(109,93,252,0.15), transparent 70%);
        }
.disclaimer-hero .hero-title {
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
.disclaimer-hero .hero-subtitle {
            opacity: 0.8;
            max-width: 800px;
        }
.section-title i {
            color: var(--accent);
        }
.legal-text {
            line-height: 1.8;
            color: rgba(232,234,246,0.92);
        }
.legal-text strong {
            color: #fff;
            font-weight: 600;
        }
.list-group-item i {
            width: 1.5rem;
            color: var(--accent);
        }
.update-note {
            background: rgba(34,211,238,0.08);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.25rem;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin-top: 2rem;
        }
.update-note i {
            margin-right: 0.4rem;
            color: var(--accent);
        }

/* --- 子页面追加 --- */
/* 隐私页特殊样式 —— 仅补充本页组件，不改动全局 */
        .privacy-hero {
            background: linear-gradient(145deg, rgba(109,93,252,0.15) 0%, rgba(34,211,238,0.05) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
.privacy-hero .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.privacy-section {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 2rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: var(--shadow);
        }
.privacy-section h2 {
            font-weight: 700;
            font-size: 1.65rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent);
            padding-left: 1.2rem;
        }
.privacy-section h3 {
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--accent);
            margin-top: 1.8rem;
            margin-bottom: 1rem;
        }
.privacy-section p, .privacy-section li {
            color: var(--text);
            opacity: 0.9;
            line-height: 1.75;
        }
.privacy-list {
            padding-left: 1.2rem;
            list-style: none;
        }
.privacy-list li {
            position: relative;
            padding-left: 1.8rem;
            margin-bottom: 0.7rem;
        }
.privacy-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.1rem;
            color: var(--accent);
            font-size: 0.9rem;
        }
.privacy-card-bg {
            background: rgba(0,0,0,0.2);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
.badge-privacy {
            background: rgba(109,93,252,0.2);
            color: var(--accent);
            border-radius: 40px;
            padding: 0.2rem 1rem;
            font-weight: 500;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
        }
/* 覆盖 Bootstrap 卡片风格，以防万一用了 card 类 */
        .privacy-section .card, .privacy-section .card-body {
            background: transparent;
            border: none;
            color: var(--text);
        }
.privacy-hero .hero-title {
                font-size: 2rem;
            }
.privacy-section {
                padding: 1.5rem;
            }