:root {
        --primary: #dc2626;
        --accent: #fb923c;
        --bg: #141013;
        --text: #fef2f2;
        --card-bg: #1e1820;
        --border-light: rgba(254, 242, 242, 0.08);
        --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-hover: 0 12px 40px rgba(220, 38, 38, 0.2);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: var(--bg);
        color: var(--text);
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .navbar-custom {
        background: rgba(20, 16, 19, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-light);
        padding: 0.8rem 0;
        z-index: 1000;
        position: sticky;
        top: 0;
    }

    .navbar-brand {
        font-weight: 900;
        font-size: 1.6rem;
        color: var(--text) !important;
        letter-spacing: -0.03em;
    }

    .navbar-brand i {
        color: var(--accent);
        margin-right: 4px;
    }

    .nav-link-custom {
        color: rgba(254, 242, 242, 0.75) !important;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 0.5rem 1rem !important;
        transition: color 0.2s;
    }

    .nav-link-custom:hover {
        color: var(--accent) !important;
    }

    .navbar-toggler {
        border-color: rgba(254, 242, 242, 0.3);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(254, 242, 242, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .hero-section {
        padding: 3rem 0 2rem;
        border-bottom: 1px solid var(--border-light);
        background: radial-gradient(ellipse at top, rgba(220, 38, 38, 0.15), transparent 60%);
    }

    .hero-title {
        font-size: 2.8rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-title span {
        color: var(--primary);
    }

    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .tag-item {
        background: rgba(220, 38, 38, 0.12);
        border: 1px solid rgba(220, 38, 38, 0.25);
        color: var(--text);
        padding: 0.5rem 1.2rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.2s ease;
        cursor: default;
    }

    .tag-item:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: translateY(-2px);
    }

    .section-wrapper {
        padding: 3rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .section-title {
        font-size: 1.8rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .section-title i {
        color: var(--primary);
        margin-right: 10px;
    }

    .section-subtitle {
        color: rgba(254, 242, 242, 0.6);
        font-size: 0.95rem;
        margin-bottom: 2rem;
        font-weight: 400;
    }

    .sidebar-filter {
        background: var(--card-bg);
        border-radius: 8px;
        padding: 1.5rem;
        position: sticky;
        top: 90px;
        border: 1px solid var(--border-light);
    }

    .sidebar-filter h6 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        color: var(--accent);
    }

    .filter-list {
        list-style: none;
        padding: 0;
    }

    .filter-list li {
        padding: 0.4rem 0;
        color: rgba(254, 242, 242, 0.8);
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.2s;
        border-bottom: 1px solid rgba(254, 242, 242, 0.03);
    }

    .filter-list li:hover {
        color: var(--accent);
        padding-left: 8px;
    }

    .filter-list li.active {
        color: var(--primary);
        font-weight: 600;
    }

    .movie-card {
        background: var(--card-bg);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--border-light);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
        box-shadow: var(--shadow-card);
    }

    .movie-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: var(--shadow-hover);
        border-color: rgba(220, 38, 38, 0.3);
    }

    .movie-poster {
        position: relative;
        overflow: hidden;
        aspect-ratio: 2/3;
        background: #2a2228;
    }

    .movie-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .movie-card:hover .movie-poster img {
        transform: scale(1.08);
    }

    .badge-quality {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.7);
        color: var(--accent);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 4px;
        letter-spacing: 0.05em;
        z-index: 2;
    }

    .badge-hot {
        position: absolute;
        top: 8px;
        left: 8px;
        background: var(--primary);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 4px;
        z-index: 2;
    }

    .movie-info {
        padding: 0.9rem;
    }

    .movie-title {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .movie-meta {
        font-size: 0.8rem;
        color: rgba(254, 242, 242, 0.55);
        font-weight: 400;
    }

    .movie-rating {
        font-family: 'Courier New', monospace;
        color: var(--accent);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .rank-card {
        background: var(--card-bg);
        border-radius: 8px;
        padding: 1.2rem;
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
    }

    .rank-card:hover {
        border-color: var(--primary);
        transform: translateX(4px);
    }

    .rank-number {
        font-family: 'Courier New', monospace;
        font-size: 2rem;
        font-weight: 900;
        color: var(--primary);
        opacity: 0.9;
        line-height: 1;
        margin-right: 1rem;
        min-width: 40px;
    }

    .rank-card .movie-title {
        font-size: 1rem;
        font-weight: 700;
    }

    .rank-card .movie-meta {
        font-size: 0.8rem;
    }

    .step-card {
        background: var(--card-bg);
        border: 1px solid var(--border-light);
        border-radius: 8px;
        padding: 1.5rem;
        height: 100%;
        transition: border-color 0.3s;
    }

    .step-card:hover {
        border-color: var(--primary);
    }

    .step-num {
        font-family: 'Courier New', monospace;
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--primary);
        opacity: 0.6;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .step-title {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .step-desc {
        font-size: 0.85rem;
        color: rgba(254, 242, 242, 0.6);
    }

    .sidebar-drawer {
        position: fixed;
        top: 0;
        right: -480px;
        width: 460px;
        max-width: 100vw;
        height: 100vh;
        background: var(--card-bg);
        z-index: 2000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border-left: 1px solid rgba(220, 38, 38, 0.3);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.6);
        padding: 2rem;
    }

    .sidebar-drawer.open {
        right: 0;
    }

    .drawer-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        backdrop-filter: blur(4px);
    }

    .drawer-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    .drawer-close {
        background: none;
        border: none;
        color: var(--text);
        font-size: 1.5rem;
        position: absolute;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
        transition: color 0.2s;
        z-index: 10;
    }

    .drawer-close:hover {
        color: var(--primary);
    }

    .drawer-poster {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        aspect-ratio: 16/9;
        object-fit: cover;
        border: 1px solid var(--border-light);
    }

    .drawer-title {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .drawer-field {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(254, 242, 242, 0.06);
        font-size: 0.95rem;
    }

    .drawer-field strong {
        color: var(--accent);
        font-weight: 600;
        margin-right: 8px;
        min-width: 60px;
        display: inline-block;
    }

    .drawer-plot {
        margin-top: 1rem;
        font-size: 0.9rem;
        line-height: 1.7;
        color: rgba(254, 242, 242, 0.8);
    }

    .footer {
        background: #0e0a0d;
        padding: 3rem 0 1.5rem;
        border-top: 1px solid var(--border-light);
    }

    .footer-title {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .footer-links a {
        color: rgba(254, 242, 242, 0.6);
        text-decoration: none;
        font-size: 0.9rem;
        margin-right: 1.5rem;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .friend-links {
        background: rgba(255, 255, 255, 0.02);
        padding: 2rem 0;
        border-top: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .friend-links h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: rgba(254, 242, 242, 0.8);
    }

    .friend-links a {
        color: rgba(254, 242, 242, 0.5);
        text-decoration: none;
        margin: 0 1.5rem 0 0;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .friend-links a:hover {
        color: var(--accent);
    }

    .stagger-fade {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .stagger-fade.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-delay-1 { transition-delay: 0.1s; }
    .fade-delay-2 { transition-delay: 0.2s; }
    .fade-delay-3 { transition-delay: 0.3s; }
    .fade-delay-4 { transition-delay: 0.4s; }
    .fade-delay-5 { transition-delay: 0.5s; }

    @media (max-width: 992px) {
        .sidebar-filter {
            position: relative;
            top: 0;
            margin-bottom: 2rem;
        }
        .hero-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .sidebar-drawer {
            width: 100%;
            right: -100%;
        }
        .hero-title {
            font-size: 1.6rem;
        }
        .movie-title {
            font-size: 0.85rem;
        }
    }

    .counter-value {
        font-family: 'Courier New', monospace;
    }

/* --- 子页面追加 --- */
/* 确保Bootstrap组件与站点深色风格一致 */
        .list-group-item, .list-group-item-action {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--border-light);
        }
.list-group-item-action:hover {
            background: rgba(220,38,38,.1);
            color: var(--text);
        }
.nav-tabs .nav-link {
            background: transparent;
            border-color: transparent;
            color: var(--text);
        }
.nav-tabs .nav-link.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.nav-tabs .nav-link:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
/* 排行榜卡片 */
        .rank-card {
            transition: transform .2s, box-shadow .2s;
        }
.badge-quality, .badge-hot {
            margin-right: 4px;
        }
/* 榜单标签 */
        .rank-tag {
            background: rgba(251,146,60,.15);
            color: var(--accent);
            padding: .25rem .75rem;
            border-radius: 20px;
            font-size: .8rem;
            font-weight: 500;
        }
/* 高亮当前导航 */
        .navbar-nav .nav-link.active {
            color: var(--accent) !important;
            font-weight: 600;
        }

/* --- 子页面追加 --- */
/* 覆盖bootstrap组件配色——沿用婷婷亚洲久悠悠色悠在线播放暗色基调 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer { background: var(--card-bg); color: var(--text); border-color: var(--border-light); }
.list-group-item { background: var(--card-bg); color: var(--text); border-color: var(--border-light); }
.accordion-item, .accordion-button, .accordion-body { background: var(--card-bg); color: var(--text); border-color: var(--border-light); }
.accordion-button:not(.collapsed) { background: rgba(220,38,38,.15); color: var(--text); }
.form-control, .form-select { background: rgba(0,0,0,.35); color: var(--text); border: 1px solid var(--border-light); }
.form-control::placeholder { color: rgba(255,255,255,.4); }
.btn-outline-light { border-color: var(--border-light); color: var(--text); }
.btn-outline-light:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.dropdown-menu { background: var(--card-bg); border: 1px solid var(--border-light); }
.dropdown-item { color: var(--text); }
.dropdown-item:hover { background: rgba(220,38,38,.2); color: #fff; }
.modal-content { background: var(--card-bg); color: var(--text); }
.table { --bs-table-bg: transparent; --bs-table-color: var(--text); border-color: var(--border-light); }
.navbar, .navbar-brand, .nav-link-custom { color: var(--text); }
.navbar { background: rgba(20,16,19,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light); }
/* 短剧页面专用卡片微调 */
        .short-card { transition: transform .25s ease, box-shadow .25s ease; }
.short-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.badge-short { background: var(--primary); color: #fff; font-weight: 600; }
.badge-ep { background: var(--accent); color: #1a0f14; font-weight: 700; }
.episode-tag { display: inline-block; background: rgba(251,146,60,.15); color: var(--accent); border-radius: 30px; padding: .2rem .8rem; font-size: .75rem; }
.section-divider { border-top: 1px solid var(--border-light); opacity: .6; }

/* --- 子页面追加 --- */
/* 确保所有 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: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: var(--border-light) !important;
        }
/* 推荐页专属卡片样式（复用 movie-card 基础上微调） */
        .recommend-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
.recommend-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.recommend-poster {
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            background: #000;
        }
.recommend-poster img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 2 / 3;
            object-fit: cover;
        }
.recommend-body {
            padding: 1.2rem 1rem 1.4rem;
        }
.recommend-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }
.recommend-meta {
            color: rgba(254, 242, 242, 0.6);
            font-size: 0.85rem;
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
.badge-reason {
            background: rgba(220, 38, 38, 0.2);
            color: var(--accent);
            border: 1px solid rgba(251, 146, 60, 0.3);
            padding: 0.25rem 0.7rem;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
.step-badge {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            box-shadow: 0 0 0 4px rgba(220,38,38,0.2);
        }
.tag-chip {
            background: rgba(254, 242, 242, 0.05);
            border: 1px solid var(--border-light);
            color: var(--text);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            transition: all 0.2s;
        }
.tag-chip:hover {
            background: rgba(220,38,38,0.2);
            border-color: var(--primary);
            color: #fff;
        }
/* 覆盖 Bootstrap 的 .container 等无样式干扰 */
        .container {
            max-width: 1280px;
        }

/* --- 子页面追加 --- */
/* VIP页面专属样式 */
        .vip-hero {
            background: linear-gradient(135deg, rgba(20,16,19,.95) 0%, rgba(220,38,38,.35) 100%);
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
        }
.vip-hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%);
            pointer-events: none;
        }
.vip-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            padding: .35rem 1rem;
            border-radius: 50rem;
            font-size: .85rem;
            font-weight: 600;
            letter-spacing: .5px;
            box-shadow: 0 4px 15px rgba(220,38,38,.3);
        }
.vip-price-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            transition: all .3s ease;
            position: relative;
            text-align: center;
            height: 100%;
        }
.vip-price-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
.vip-price-card.popular {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(220,38,38,.2);
        }
.vip-price-card.popular::before {
            content: '最受欢迎';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            font-size: .75rem;
            font-weight: 600;
            padding: .25rem 1rem;
            border-radius: 50rem;
            white-space: nowrap;
        }
.vip-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin: .5rem 0;
        }
.vip-price span {
            font-size: 1rem;
            font-weight: 400;
            color: rgba(254,242,242,.6);
        }
.vip-feature-item {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            padding: .75rem 0;
            border-bottom: 1px solid var(--border-light);
        }
.vip-feature-item:last-child {
            border-bottom: none;
        }
.vip-feature-icon {
            color: var(--accent);
            font-size: 1.1rem;
            margin-top: .1rem;
            flex-shrink: 0;
        }
.vip-benefit-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all .3s ease;
            height: 100%;
        }
.vip-benefit-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-card);
        }
.vip-benefit-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: .75rem;
            display: inline-block;
        }
.vip-step {
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }
.vip-step-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(220,38,38,.3);
        }
.vip-faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
.vip-faq-question {
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: .75rem;
            margin-bottom: .5rem;
        }
.vip-faq-question i {
            color: var(--primary);
        }
.vip-faq-answer {
            color: rgba(254,242,242,.7);
            padding-left: 2rem;
            font-size: .95rem;
            line-height: 1.7;
        }
.vip-cta {
            background: linear-gradient(135deg, rgba(220,38,38,.15), rgba(251,146,60,.1));
            border: 1px solid rgba(220,38,38,.3);
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
        }
.btn-vip {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            border: none;
            padding: .75rem 2rem;
            border-radius: 50rem;
            font-weight: 600;
            transition: all .3s ease;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            box-shadow: 0 4px 15px rgba(220,38,38,.3);
        }
.btn-vip:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220,38,38,.4);
            color: #fff;
        }

/* --- 子页面追加 --- */
/* 本页专属微调 — 仅补充少量细节，不改变全局变量 */
        .about-hero {
            padding: 3rem 0 2rem 0;
            background: transparent;
        }
.about-hero .section-title {
            margin-bottom: 0.5rem;
        }
.about-lead {
            max-width: 780px;
            color: rgba(254, 242, 242, 0.8);
            font-size: 1.1rem;
            line-height: 1.8;
        }
.feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
.feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 1rem;
            padding: 1.5rem 1.2rem;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
.feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.feature-card i {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }
.feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            color: var(--text);
        }
.feature-card p {
            color: rgba(254, 242, 242, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.stat-badge {
            background: rgba(220, 38, 38, 0.15);
            border: 1px solid rgba(220, 38, 38, 0.3);
            color: var(--accent);
            border-radius: 2rem;
            padding: 0.3rem 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
            margin-right: 0.6rem;
            margin-bottom: 0.6rem;
        }
.about-quote {
            border-left: 4px solid var(--primary);
            background: rgba(220, 38, 38, 0.06);
            padding: 1.2rem 1.5rem;
            border-radius: 0 1rem 1rem 0;
            margin: 2.5rem 0;
            color: var(--text);
        }
.about-quote p {
            margin-bottom: 0.3rem;
            font-style: italic;
            color: rgba(254, 242, 242, 0.85);
        }
.about-quote footer {
            color: var(--accent);
            font-size: 0.9rem;
        }
.team-note {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 1.5rem;
            padding: 2rem;
            margin-top: 2rem;
        }
.team-note h3 {
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
        }
.team-note p {
            color: rgba(254, 242, 242, 0.75);
            line-height: 1.7;
        }

/* --- 子页面追加 --- */
/* 免责声明页面专属样式 */
        .disclaimer-hero {
            padding: 80px 0 40px;
            text-align: center;
        }
.disclaimer-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
.disclaimer-hero h1 span {
            color: var(--primary);
        }
.disclaimer-hero p {
            color: rgba(254, 242, 242, 0.6);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 32px 36px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-card h2 {
            color: var(--accent);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-card h2 i {
            color: var(--primary);
            font-size: 1.2rem;
        }
.disclaimer-card p {
            color: rgba(254, 242, 242, 0.75);
            line-height: 1.8;
            font-size: 0.98rem;
            margin-bottom: 12px;
        }
.disclaimer-card ul {
            color: rgba(254, 242, 242, 0.75);
            line-height: 1.8;
            padding-left: 20px;
            margin-bottom: 12px;
        }
.disclaimer-card ul li {
            margin-bottom: 6px;
        }
.disclaimer-card strong {
            color: var(--text);
            font-weight: 600;
        }
.disclaimer-card .highlight {
            background: rgba(220, 38, 38, 0.1);
            border-left: 3px solid var(--primary);
            padding: 12px 16px;
            border-radius: 0 8px 8px 0;
            margin: 16px 0;
        }
.disclaimer-card .highlight p {
            margin-bottom: 0;
        }
.update-time {
            text-align: center;
            color: rgba(254, 242, 242, 0.5);
            font-size: 0.9rem;
            margin-top: 40px;
            padding-bottom: 40px;
        }
.disclaimer-hero h1 {
                font-size: 1.8rem;
            }
.disclaimer-card {
                padding: 24px 20px;
            }

/* --- 子页面追加 --- */
/* 确保所有卡片、表单、列表组件完全继承暗色主题, 覆盖bootstrap默认白底 */
        .card, .card-body, .card-header, .card-footer,
        .list-group-item, .accordion-item, .accordion-button,
        .form-control, .form-select, .dropdown-menu, .dropdown-item,
        .modal-content, .modal-header, .modal-body, .table {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: var(--border-light) !important;
        }
.btn-outline-custom {
            border-color: var(--primary);
            color: var(--primary);
        }
.btn-outline-custom:hover {
            background: var(--primary);
            color: #fff;
        }
/* 自定义小卡片阴影 */
        .guide-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease;
            height: 100%;
        }
.guide-card:hover {
            box-shadow: var(--shadow-hover);
        }
.shortcut-key {
            background: rgba(220,38,38,0.15);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            padding: 2px 10px;
            font-family: monospace;
            color: var(--accent);
            font-weight: 600;
        }
.table-guide {
            --bs-table-bg: transparent !important;
            color: var(--text) !important;
        }
.table-guide td, .table-guide th {
            border-color: var(--border-light) !important;
            background: transparent !important;
        }

/* --- 子页面追加 --- */
/* 本页仅做细微补充，所有组件沿用全局配色变量 */
        .faq-section { padding: 3rem 0; }
.faq-header { margin-bottom: 2.5rem; }
.faq-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 1rem;
            padding: 1.75rem 1.5rem;
            margin-bottom: 1.5rem;
            transition: box-shadow 0.25s ease, transform 0.15s ease;
            box-shadow: var(--shadow-card);
        }
.faq-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.faq-question {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text);
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
        }
.faq-question i { color: var(--primary); font-size: 1.3rem; width: 1.6rem; }
.faq-answer { color: rgba(254, 242, 242, 0.75); line-height: 1.7; padding-left: 2.4rem; }
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--primary); }
.help-grid-icon {
            background: rgba(220, 38, 38, 0.12);
            width: 48px; height: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: var(--accent); font-size: 1.6rem; margin-bottom: 1rem;
        }
.contact-box {
            background: rgba(220, 38, 38, 0.08);
            border: 1px dashed var(--primary);
            border-radius: 1rem;
            padding: 1.5rem 1.8rem;
            margin-top: 2rem;
        }
.contact-box i { color: var(--primary); margin-right: 0.4rem; }
.faq-answer { padding-left: 0; }
.faq-question { font-size: 1rem; }
/* 避免bootstrap默认白底影响 */
        .navbar, .navbar-brand, .nav-link-custom { background: transparent !important; color: var(--text) !important; }

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