:root {
        --main-color: #f472b6;
        --accent-color: #fbbf24;
        --bg-color: #fff5f7;
        --text-color: #4a2530;
        --shadow-heavy: 0 12px 30px rgba(74, 37, 48, 0.2);
        --shadow-hover: 0 20px 40px rgba(244, 114, 182, 0.3);
        --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    }
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        overflow-x: hidden;
    }
    /* 滚动进度条 */
    #progressBar {
        position: fixed; top: 0; left: 0;
        height: 4px; background: linear-gradient(90deg, var(--main-color), var(--accent-color));
        width: 0%; z-index: 9999; border-radius: 2px;
    }
    /* 拟物厚重风格 */
    .navbar-dark {
        background: linear-gradient(145deg, #4a2530, #3a1a25);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    .navbar-brand {
        font-weight: 900;
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-shadow: 3px 3px 0 #fbbf24;
        color: white !important;
    }
    .nav-link {
        color: #ffe9f0 !important;
        font-weight: 600;
        margin: 0 0.2rem;
    }
    .nav-link:hover { color: var(--accent-color) !important; }
    /* 轮播区 */
    .hero-carousel .carousel-item img {
        height: 75vh; object-fit: cover;
        filter: brightness(0.75);
    }
    .carousel-caption {
        bottom: 20%;
        text-align: left;
        background: rgba(74, 37, 48, 0.6);
        padding: 2rem 3rem;
        border-radius: 20px;
        backdrop-filter: blur(5px);
        border-left: 10px solid var(--accent-color);
    }
    .typing-title {
        font-weight: 900;
        font-size: 3.5rem;
        text-shadow: 5px 5px 0 rgba(0,0,0,0.3);
        border-right: 4px solid var(--accent-color);
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        animation: blinkCursor 1s step-end infinite;
    }
    @keyframes blinkCursor { 50% { border-color: transparent; } }
    /* 卡片 */
    .film-card {
        background: white;
        border-radius: 20px;
        box-shadow: var(--shadow-heavy);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        border: 1px solid #ffe0ec;
        overflow: hidden;
        margin-bottom: 1.5rem;
        position: relative;
        transform: translateY(0);
    }
    .film-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-hover);
    }
    .film-card .img-wrap {
        position: relative;
        overflow: hidden;
    }
    .film-card img {
        width: 100%;
        aspect-ratio: 2 / 3;
        object-fit: cover;
        display: block;
        background: #ffe0ec;
    }
    .badge-ep {
        position: absolute; top: 8px; left: 8px;
        background: rgba(74, 37, 48, 0.9);
        color: var(--accent-color);
        font-weight: 700;
        font-size: 0.75rem;
        padding: 4px 8px;
        border-radius: 20px;
        backdrop-filter: blur(2px);
        border: 1px solid var(--accent-color);
    }
    .score {
        position: absolute; bottom: 8px; right: 8px;
        background: linear-gradient(145deg, #fbbf24, #f59e0b);
        color: #4a2530;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        font-family: var(--font-mono);
    }
    .card-body {
        padding: 0.9rem 0.9rem 1rem;
    }
    .card-title {
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: 0.3rem;
        color: #3a1a25;
    }
    .card-meta {
        font-size: 0.8rem;
        color: #8f5a6a;
        font-family: var(--font-mono);
    }
    .section-title {
        font-weight: 900;
        font-size: 1.7rem;
        margin: 2rem 0 1.5rem;
        position: relative;
        display: inline-block;
        background: linear-gradient(145deg, #4a2530, #f472b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 2px 2px 0 #fff;
    }
    .section-title::after {
        content: '';
        position: absolute; bottom: -8px; left: 0;
        width: 60px; height: 6px;
        background: linear-gradient(90deg, var(--main-color), var(--accent-color));
        border-radius: 6px;
    }
    /* 滚动渐显 */
    .scroll-fade {
        opacity: 0;
        transform: translateY(25px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .scroll-fade.show {
        opacity: 1;
        transform: translateY(0);
    }
    /* 标签页 */
    .nav-tabs .nav-link {
        color: var(--text-color);
        font-weight: 600;
        border: 2px solid #f9d5e5;
        border-radius: 30px;
        margin-right: 5px;
        background: white;
    }
    .nav-tabs .nav-link.active {
        background: var(--main-color);
        color: white;
        border-color: var(--main-color);
        font-weight: 700;
    }
    /* 时间线 */
    .timeline {
        border-left: 4px solid var(--main-color);
        padding-left: 1.5rem;
    }
    .timeline-item {
        position: relative;
        margin-bottom: 1.2rem;
    }
    .timeline-item::before {
        content: '';
        position: absolute; left: -2.1rem; top: 0.2rem;
        width: 14px; height: 14px;
        background: var(--accent-color);
        border-radius: 50%;
        box-shadow: 0 0 0 4px #ffe0b0;
    }
    .timeline-time {
        font-family: var(--font-mono);
        font-weight: 700;
        color: var(--main-color);
        background: white;
        display: inline-block;
        padding: 0.2rem 0.8rem;
        border-radius: 30px;
        box-shadow: 0 2px 6px rgba(244,114,182,0.3);
    }
    /* 弹窗 */
    .modal-content {
        border-radius: 24px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        border: none;
    }
    .modal-body {
        padding: 0;
    }
    .movie-modal-wrap {
        display: flex;
        flex-direction: row;
    }
    .movie-modal-poster {
        width: 220px;
        background: #f9d5e5;
        min-height: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 24px 0 0 24px;
    }
    .movie-modal-info {
        padding: 1.8rem;
        flex: 1;
    }
    .close-btn {
        position: absolute; top: 10px; right: 10px;
        background: var(--main-color);
        color: white;
        border-radius: 50%;
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
        border: none;
        font-weight: bold;
        opacity: 0.8;
    }
    .close-btn:hover { opacity: 1; }
    /* 分类矩阵 */
    .genre-grid {
        background: white;
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: 0 8px 20px rgba(244,114,182,0.1);
    }
    .genre-item {
        background: #fff0f5;
        border-radius: 40px;
        padding: 0.5rem 1rem;
        font-weight: 600;
        display: inline-block;
        margin: 0.2rem;
        border: 2px solid #ffe0ec;
    }
    /* 友链 */
    .friend-links {
        background: #ffe8f0;
        border-radius: 40px;
        padding: 1.5rem;
        margin-top: 2rem;
        text-align: center;
        box-shadow: inset 0 0 0 1px #f8c8dc;
    }
    footer {
        background: #3a1a25;
        color: #ffe0ec;
        padding: 2rem 0;
        margin-top: 3rem;
        box-shadow: 0 -10px 30px rgba(74, 37, 48, 0.3);
    }
    .data-mono { font-family: var(--font-mono); }
    /* 滚动延迟 */
    .card-delay-1 { transition-delay: 0.05s; }
    .card-delay-2 { transition-delay: 0.15s; }
    .card-delay-3 { transition-delay: 0.25s; }
    .card-delay-4 { transition-delay: 0.35s; }
    .card-delay-5 { transition-delay: 0.45s; }

/* --- 子页面追加 --- */
/* 关于页专属样式 */
        .about-hero {
            padding: 60px 0 40px;
            text-align: center;
            background: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(251,191,36,0.08) 100%);
            border-bottom: 1px solid rgba(244,114,182,0.15);
        }
.about-hero .lead {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-color);
            opacity: 0.85;
            font-size: 1.1rem;
            line-height: 1.8;
        }
.about-section {
            padding: 50px 0;
            border-bottom: 1px solid rgba(244,114,182,0.1);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section .section-title {
            margin-bottom: 25px;
        }
.about-card {
            background: rgba(255,255,255,0.6);
            border: 1px solid rgba(244,114,182,0.15);
            border-radius: 16px;
            padding: 28px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(244,114,182,0.06);
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(244,114,182,0.35);
        }
.about-card i {
            font-size: 2rem;
            color: var(--main-color);
            margin-bottom: 15px;
            display: inline-block;
        }
.about-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 12px;
        }
.about-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-color);
            opacity: 0.8;
            margin: 0;
        }
.stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.stat-item {
            text-align: center;
            padding: 20px 15px;
            background: rgba(255,255,255,0.5);
            border-radius: 12px;
            border: 1px solid rgba(244,114,182,0.12);
        }
.stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--main-color);
            font-family: var(--font-mono);
            line-height: 1.2;
        }
.stat-label {
            font-size: 0.85rem;
            color: var(--text-color);
            opacity: 0.7;
            margin-top: 5px;
        }
.principle-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.principle-list li {
            padding: 12px 0;
            border-bottom: 1px dashed rgba(244,114,182,0.2);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.98rem;
            line-height: 1.6;
            color: var(--text-color);
        }
.principle-list li:last-child {
            border-bottom: none;
        }
.principle-list i {
            color: var(--accent-color);
            margin-top: 4px;
            flex-shrink: 0;
        }
.timeline-item:last-child {
            border-left-color: transparent;
            padding-bottom: 0;
        }
.timeline-item h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 6px;
        }
.timeline-item p {
            font-size: 0.93rem;
            line-height: 1.7;
            color: var(--text-color);
            opacity: 0.8;
            margin: 0;
        }
.quote-box {
            background: linear-gradient(135deg, rgba(244,114,182,0.1) 0%, rgba(251,191,36,0.1) 100%);
            border-left: 4px solid var(--main-color);
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
        }
.quote-box .quote-author {
            display: block;
            margin-top: 12px;
            font-style: normal;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--main-color);
        }

/* --- 子页面追加 --- */
/* 短剧页专属样式 */
        .short-drama-hero {
            background: linear-gradient(135deg, rgba(244,114,182,.15) 0%, rgba(251,191,36,.1) 100%);
            border: 1px solid rgba(244,114,182,.25);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
.short-drama-hero::before {
            content: '⚡';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 6rem;
            opacity: .15;
            animation: pulse-glow 2s ease-in-out infinite;
        }
0%, 100% { opacity: .15; transform: translateY(-50%) scale(1); }
.drama-card {
            background: rgba(255,255,255,.65);
            border: 1px solid rgba(244,114,182,.15);
            border-radius: 16px;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
            transition: all .3s ease;
            box-shadow: 0 4px 12px rgba(74,37,48,.06);
        }
.drama-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(244,114,182,.4);
        }
.drama-tag {
            display: inline-block;
            background: rgba(244,114,182,.12);
            color: var(--main-color);
            font-size: .75rem;
            font-weight: 600;
            padding: .2rem .6rem;
            border-radius: 20px;
            margin-right: .4rem;
            margin-bottom: .3rem;
        }
.drama-tag.hot {
            background: rgba(251,191,36,.18);
            color: #b45309;
        }
.drama-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-color);
            margin: .6rem 0 .4rem;
        }
.drama-desc {
            font-size: .88rem;
            color: rgba(74,37,48,.7);
            line-height: 1.6;
        }
.drama-meta {
            font-size: .8rem;
            color: rgba(74,37,48,.55);
            display: flex;
            align-items: center;
            gap: .8rem;
            margin-top: .6rem;
        }
.drama-meta i {
            color: var(--main-color);
            margin-right: .25rem;
        }
.list-rank {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(244,114,182,.12);
            color: var(--main-color);
            font-weight: 800;
            font-size: .85rem;
            margin-right: .6rem;
        }
.list-rank.top {
            background: var(--accent-color);
            color: #fff;
        }
.watch-link {
            display: inline-block;
            background: var(--main-color);
            color: #fff;
            font-size: .8rem;
            font-weight: 600;
            padding: .35rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            transition: all .3s ease;
            margin-top: .8rem;
        }
.watch-link:hover {
            background: #e05a9f;
            color: #fff;
            transform: translateY(-1px);
        }
.genre-pill {
            display: inline-block;
            background: rgba(255,255,255,.8);
            border: 1px solid rgba(244,114,182,.25);
            color: var(--text-color);
            font-size: .8rem;
            font-weight: 500;
            padding: .3rem .9rem;
            border-radius: 30px;
            margin: 0 .4rem .6rem 0;
            cursor: pointer;
            transition: all .3s ease;
            text-decoration: none;
        }
.genre-pill:hover, .genre-pill.active {
            background: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
        }
.update-badge {
            background: var(--accent-color);
            color: #fff;
            font-size: .7rem;
            font-weight: 700;
            padding: .15rem .5rem;
            border-radius: 12px;
            margin-left: .4rem;
            animation: blink 2s ease-in-out infinite;
        }
0%, 100% { opacity: 1; }
.tips-box {
            background: rgba(251,191,36,.08);
            border: 1px dashed rgba(251,191,36,.5);
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 3rem;
        }
.tips-box h4 {
            color: #b45309;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }
.tips-box ul {
            padding-left: 1.2rem;
            color: rgba(74,37,48,.8);
            font-size: .9rem;
            line-height: 1.8;
        }
.tips-box li::marker {
            color: var(--accent-color);
        }
.section-tag {
            font-family: var(--font-mono);
            font-size: .8rem;
            color: var(--main-color);
            letter-spacing: 1px;
            margin-bottom: .3rem;
            font-weight: 600;
        }

/* --- 子页面追加 --- */
.anime-hero {background:linear-gradient(135deg,var(--main-color) 0%,#d946ef 50%,var(--accent-color) 100%);padding:5rem 0;text-align:center;position:relative;overflow:hidden}
.anime-hero h1 {font-size:2.8rem;font-weight:900;color:#fff;text-shadow:0 4px 20px rgba(0,0,0,.25);margin-bottom:.5rem}
.anime-hero .subtitle {color:rgba(255,255,255,.95);font-size:1.15rem;max-width:700px;margin:0 auto}
.anime-hero .hero-badge {display:inline-block;background:rgba(255,255,255,.2);backdrop-filter:blur(4px);border:1px solid rgba(255,255,255,.35);color:#fff;padding:.35rem 1.2rem;border-radius:50px;font-size:.85rem;margin-bottom:1rem}
.anime-hero .hero-stats {display:flex;justify-content:center;gap:3rem;margin-top:2.5rem}
.anime-hero .stat-item {color:#fff}
.anime-hero .stat-item .num {font-size:2rem;font-weight:900;display:block}
.anime-hero .stat-item .label {font-size:.85rem;opacity:.9}
.anime-section {padding:4rem 0}
.anime-section .section-title {font-size:2rem;font-weight:800;color:var(--text-color);margin-bottom:2rem;position:relative;display:inline-block}
.anime-section .section-title::after {content:'';position:absolute;bottom:-8px;left:0;width:60px;height:4px;background:var(--main-color);border-radius:2px}
.anime-section .section-title i {color:var(--main-color);margin-right:.5rem}
.anime-card {background:#fff;border-radius:16px;overflow:hidden;box-shadow:var(--shadow-heavy);transition:transform .3s,box-shadow .3s;height:100%;border:none}
.anime-card:hover {transform:translateY(-8px);box-shadow:var(--shadow-hover)}
.anime-card .poster-wrap {position:relative;height:260px;overflow:hidden}
.anime-card .poster-wrap img {width:100%;height:100%;object-fit:cover;transition:transform .5s}
.anime-card:hover .poster-wrap img {transform:scale(1.05)}
.anime-card .badge-score {position:absolute;top:12px;right:12px;background:rgba(244,114,182,.95);color:#fff;font-weight:800;font-size:1.1rem;padding:.3rem .8rem;border-radius:50px;box-shadow:0 4px 12px rgba(244,114,182,.4)}
.anime-card .badge-type {position:absolute;top:12px;left:12px;background:rgba(0,0,0,.65);color:#fff;font-size:.75rem;padding:.25rem .7rem;border-radius:50px;backdrop-filter:blur(4px)}
.anime-card .card-body {padding:1.3rem}
.anime-card .card-title {font-size:1.15rem;font-weight:800;color:var(--text-color);margin-bottom:.4rem;display:flex;align-items:center;gap:.5rem}
.anime-card .card-title .ep {font-size:.75rem;background:var(--accent-color);color:#4a2530;padding:.15rem .6rem;border-radius:50px;font-weight:700}
.anime-card .card-meta {color:#999;font-size:.8rem;display:flex;gap:1rem;margin-bottom:.6rem}
.anime-card .card-meta i {color:var(--main-color)}
.anime-card .card-text {color:#666;font-size:.85rem;line-height:1.6;margin-bottom:.8rem}
.anime-card .tags {display:flex;flex-wrap:wrap;gap:.4rem}
.anime-card .tags span {background:#fff0f6;color:var(--main-color);font-size:.75rem;padding:.2rem .6rem;border-radius:50px;border:1px solid #fdd5e8}
.anime-card .view-link {display:inline-block;margin-top:.8rem;color:var(--main-color);font-weight:600;font-size:.85rem;text-decoration:none}
.anime-card .view-link:hover {color:#db2777}
.anime-card .view-link i {margin-left:.3rem;font-size:.75rem;transition:transform .3s}
.anime-card .view-link:hover i {transform:translateX(4px)}
.timeline-wrap {background:var(--bg-color);border-radius:20px;padding:2.5rem;box-shadow:var(--shadow-heavy)}
.criteria-card {background:var(--bg-color);border-radius:16px;padding:1.8rem;box-shadow:var(--shadow-heavy);height:100%;border-top:4px solid var(--main-color)}
.criteria-card .icon {font-size:2rem;color:var(--main-color);margin-bottom:.8rem}
.criteria-card h4 {font-size:1.1rem;font-weight:700;color:var(--text-color);margin-bottom:.5rem}
.criteria-card p {color:#777;font-size:.85rem;line-height:1.6;margin:0}
.watch-guide {background:linear-gradient(135deg,#fff5f7 0%,#ffe4ef 100%);border-radius:20px;padding:2.5rem;box-shadow:var(--shadow-heavy)}
.watch-guide h3 {font-weight:800;color:var(--text-color);margin-bottom:1.5rem}
.watch-guide h3 i {color:var(--main-color);margin-right:.5rem}
.guide-step {display:flex;gap:1.2rem;margin-bottom:1.2rem;align-items:flex-start}
.guide-step .step-num {background:var(--main-color);color:#fff;font-weight:800;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.9rem}
.guide-step .step-content {flex:1}
.guide-step .step-content h5 {font-size:1rem;font-weight:700;color:var(--text-color);margin-bottom:.2rem}
.guide-step .step-content p {color:#777;font-size:.85rem;line-height:1.5;margin:0}
.friend-links h6 {color:var(--text-color);font-weight:700;margin-bottom:1rem}
.friend-links a {color:#888;text-decoration:none;font-size:.85rem;margin-right:1.5rem;transition:color .3s}
.friend-links a:hover {color:var(--main-color)}
.anime-hero h1 {font-size:1.8rem}
.anime-hero .hero-stats {flex-direction:column;gap:1rem}
.anime-card .poster-wrap {height:200px}
.timeline-wrap,.watch-guide {padding:1.5rem}

/* --- 子页面追加 --- */
/* 纪录片页面专属样式 */
        .doc-hero {
            background: linear-gradient(135deg, #2d1b36 0%, #4a2530 50%, #7c3a5a 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.doc-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
.doc-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            position: relative;
            z-index: 1;
        }
.doc-hero p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }
.doc-badge {
            display: inline-block;
            background: var(--accent-color);
            color: #4a2530;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
.doc-section {
            padding: 60px 0;
        }
.doc-section-alt {
            background: #fff0f5;
            border-top: 1px solid rgba(244, 114, 182, 0.2);
            border-bottom: 1px solid rgba(244, 114, 182, 0.2);
        }
.doc-category {
            margin-bottom: 40px;
        }
.doc-category-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 4px solid var(--main-color);
        }
.doc-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            transition: all 0.3s ease;
            margin-bottom: 25px;
            height: 100%;
        }
.doc-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
.doc-poster {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
.doc-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
.doc-card:hover .doc-poster img {
            transform: scale(1.05);
        }
.doc-poster .doc-type {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(74, 37, 48, 0.85);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
.doc-poster .doc-score {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--accent-color);
            color: #4a2530;
            padding: 4px 10px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.9rem;
        }
.doc-body {
            padding: 18px;
        }
.doc-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 8px;
        }
.doc-body .doc-meta {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 10px;
        }
.doc-body p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
.doc-tag {
            display: inline-block;
            background: #fff0f5;
            color: var(--main-color);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            margin-right: 6px;
            font-weight: 500;
        }
.doc-feature {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow-heavy);
            margin-bottom: 30px;
            border-top: 3px solid var(--main-color);
        }
.doc-feature h3 {
            color: var(--text-color);
            font-weight: 700;
            margin-bottom: 15px;
        }
.doc-feature p {
            color: #666;
            line-height: 1.8;
        }
.doc-feature .fa-quote-left {
            color: var(--main-color);
            opacity: 0.3;
            font-size: 2rem;
            margin-bottom: 10px;
        }
.doc-timeline {
            position: relative;
            padding-left: 30px;
            margin-bottom: 40px;
        }
.doc-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--main-color), var(--accent-color));
        }
.doc-timeline-item {
            position: relative;
            margin-bottom: 25px;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: var(--shadow-heavy);
        }
.doc-timeline-item::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 25px;
            width: 10px;
            height: 10px;
            background: var(--main-color);
            border-radius: 50%;
            border: 2px solid #fff;
        }
.doc-timeline-item .time {
            font-family: var(--font-mono);
            color: var(--main-color);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
.doc-timeline-item h4 {
            color: var(--text-color);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 8px;
        }
.doc-timeline-item p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.doc-tip {
            background: linear-gradient(135deg, #fff5f7 0%, #fff0f5 100%);
            border: 1px solid rgba(244, 114, 182, 0.3);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
        }
.doc-tip h4 {
            color: var(--main-color);
            font-weight: 700;
            margin-bottom: 12px;
        }
.doc-tip p {
            color: var(--text-color);
            line-height: 1.8;
        }
.doc-tip ul {
            list-style: none;
            padding: 0;
            margin: 15px 0 0;
        }
.doc-tip ul li {
            padding: 6px 0;
            color: #555;
            line-height: 1.6;
        }
.doc-tip ul li i {
            color: var(--main-color);
            margin-right: 8px;
        }
.doc-hero {
                padding: 60px 0 40px;
            }
.doc-hero h1 {
                font-size: 2rem;
            }
.doc-poster {
                height: 180px;
            }

/* --- 子页面追加 --- */
/* 综艺页面专属样式 */
        .variety-hero {
            background: linear-gradient(135deg, var(--main-color) 0%, #fb7185 50%, var(--accent-color) 100%);
            padding: 60px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
.variety-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
.variety-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite reverse;
        }
.variety-hero h1 {
            color: #fff;
            font-weight: 900;
            font-size: 2.8rem;
            position: relative;
            z-index: 1;
            text-shadow: 2px 4px 12px rgba(74, 37, 48, 0.3);
        }
.variety-hero .lead {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }
.variety-tag {
            background: rgba(255,255,255,0.15);
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            display: inline-block;
            margin: 8px;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
.variety-tag:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px);
        }
.variety-section-title {
            color: var(--text-color);
            font-weight: 800;
            margin: 50px 0 30px;
            padding-left: 20px;
            border-left: 5px solid var(--main-color);
            position: relative;
        }
.variety-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 20px;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
        }
.variety-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            transition: all 0.3s ease;
            margin-bottom: 25px;
            border: 1px solid rgba(244, 114, 182, 0.1);
            position: relative;
        }
.variety-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
.variety-card .variety-poster {
            height: 180px;
            background: linear-gradient(135deg, var(--main-color), var(--accent-color));
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.variety-card .variety-poster i {
            font-size: 3rem;
            color: rgba(255,255,255,0.6);
        }
.variety-card .badge-ep {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(74, 37, 48, 0.8);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
.variety-card .variety-rating {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            color: var(--accent-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }
.variety-card .variety-body {
            padding: 20px;
            background: #fff;
        }
.variety-card .variety-body h3 {
            color: var(--text-color);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
.variety-card .variety-body p {
            color: #888;
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }
.variety-card .variety-meta {
            color: var(--main-color);
            font-size: 0.8rem;
            font-weight: 600;
        }
.variety-rank-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: var(--shadow-heavy);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid rgba(244, 114, 182, 0.1);
        }
.variety-rank-card:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-hover);
        }
.variety-rank-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--main-color);
            min-width: 50px;
            text-align: center;
        }
.variety-rank-info {
            flex: 1;
        }
.variety-rank-info h4 {
            color: var(--text-color);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
.variety-rank-info p {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 0;
        }
.variety-rank-score {
            color: var(--accent-color);
            font-weight: 800;
            font-size: 1.2rem;
        }
.variety-schedule-table {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(244, 114, 182, 0.1);
        }
.variety-schedule-table table {
            width: 100%;
            border-collapse: collapse;
        }
.variety-schedule-table th {
            background: var(--main-color);
            color: #fff;
            padding: 15px;
            font-weight: 600;
            text-align: center;
            font-size: 0.9rem;
        }
.variety-schedule-table td {
            padding: 15px;
            text-align: center;
            color: var(--text-color);
            border-bottom: 1px solid rgba(244, 114, 182, 0.1);
            font-size: 0.9rem;
        }
.variety-schedule-table tr:hover td {
            background: rgba(244, 114, 182, 0.05);
        }
.variety-tip-box {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(251, 191, 36, 0.1));
            border: 1px solid rgba(244, 114, 182, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 30px 0;
            color: var(--text-color);
        }
.variety-tip-box i {
            color: var(--main-color);
            margin-right: 10px;
        }
.variety-tip-box strong {
            color: var(--main-color);
        }
.variety-hero h1 {
                font-size: 2rem;
            }
.variety-tag {
                font-size: 0.8rem;
                padding: 6px 15px;
            }
.variety-card .variety-poster {
                height: 140px;
            }

/* --- 子页面追加 --- */
/* 页面专属微调：强调当前导航高亮 */
        .nav-link.disclaimer-active {
            color: var(--main-color) !important;
            font-weight: 600;
            border-bottom: 2px solid var(--main-color);
        }
.disclaimer-hero {
            background: linear-gradient(145deg, var(--bg-color) 0%, #ffe1ec 100%);
            border-bottom: 1px solid rgba(244,114,182,0.2);
        }
.disclaimer-section {
            background: rgba(255,255,255,0.7);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-heavy);
            backdrop-filter: blur(4px);
        }
.disclaimer-section h2 {
            color: var(--main-color);
            font-weight: 700;
            letter-spacing: -0.3px;
            border-left: 5px solid var(--accent-color);
            padding-left: 1.2rem;
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text-color);
            line-height: 1.8;
        }
.highlight-badge {
            background: var(--accent-color);
            color: #2b1a1f;
            font-weight: 600;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
.footer-link-inline a {
            color: var(--text-color);
            text-decoration: none;
            border-bottom: 1px dotted var(--main-color);
        }
.footer-link-inline a:hover {
            color: var(--main-color);
        }
/* 避免bootstrap默认白底干扰 */
        .disclaimer-section, .disclaimer-section p, .disclaimer-section li {
            background: transparent;
        }
.card, .card-body { background: transparent; color: var(--text-color); }

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