/* ===== 影院暗金配色变量 ===== */
        :root {
            --brand: #e50914;
            --accent: #f5c518;
            --bg-deep: #0b0b0f;
            --text-light: #f5f5f7;
            --card-bg: #1a1a20;
            --shadow-soft: 0 10px 30px rgba(0,0,0,0.45);
            --radius-card: 18px;
            --radius-pill: 50rem;
        }
        * { box-sizing: border-box; }
        body {
            background-color: var(--bg-deep);
            color: var(--text-light);
            font-family: 'Inter', system-ui, sans-serif;
            font-weight: 400;
            letter-spacing: -0.01em;
        }
        h1,h2,h3,.display-font {
            font-family: 'ZCOOL KuaiLe', 'Quicksand', cursive;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        /* 阅读进度条 */
        #progress-bar {
            position: fixed;
            top: 0; left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--brand), var(--accent));
            z-index: 9999;
            border-radius: 2px;
        }
        /* 胶囊圆角全局 */
        .btn-pill, .nav-link, .badge-pill, .form-control {
            border-radius: var(--radius-pill) !important;
        }
        .card, .outline-card {
            border-radius: var(--radius-card);
            background: var(--card-bg);
            border: 1px solid rgba(245,197,24,0.1);
            box-shadow: var(--shadow-soft);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }
        .card:hover {
            transform: scale(1.01);
            border-color: var(--accent);
        }
        /* 顶部导航 */
        .header-classic {
            background: rgba(11,11,15,0.85);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(245,197,24,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar-brand {
            font-family: 'ZCOOL KuaiLe';
            font-size: 1.8rem;
            color: var(--accent) !important;
            letter-spacing: 1px;
        }
        .nav-link {
            color: var(--text-light) !important;
            margin: 0 0.5rem;
            font-weight: 500;
            opacity: 0.85;
            transition: all 0.2s;
        }
        .nav-link:hover {
            opacity: 1;
            color: var(--accent) !important;
            text-decoration: underline;
            text-underline-offset: 6px;
        }
        /* Hero 打字机动画 */
        .typewriter {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid var(--accent);
            animation: typing 3s steps(30, end), caret 0.8s step-end infinite;
            max-width: 100%;
        }
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        @keyframes caret {
            0%,100% { border-color: transparent; }
            50% { border-color: var(--accent); }
        }
        /* Hero右侧媒体 */
        .hero-media {
            border-radius: 30px;
            box-shadow: 0 25px 40px rgba(229,9,20,0.2);
            border: 2px solid rgba(245,197,24,0.4);
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        .signal-badge {
            background: rgba(245,197,24,0.12);
            border-left: 4px solid var(--accent);
            border-radius: 12px;
        }
        /* 海报网格 - 重要: 2/3/4/6列自适应 */
        .poster-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.4rem;
            width: 100%;
        }
        @media (min-width: 768px) {
            .poster-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (min-width: 992px) {
            .poster-grid { grid-template-columns: repeat(4, 1fr); }
        }
        @media (min-width: 1400px) {
            .poster-grid { grid-template-columns: repeat(6, 1fr); }
        }
        .movie-card {
            background: transparent;
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: 0.2s;
            cursor: pointer;
            position: relative;
        }
        .movie-card img {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            border-radius: 16px;
            display: block;
            background: #2a2a30;
        }
        .movie-card .gradient-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            border-radius: 16px;
            pointer-events: none;
        }
        .movie-card .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            background: rgba(229,9,20,0.7);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            backdrop-filter: blur(4px);
            opacity: 0;
            transition: 0.2s;
            border: 1px solid white;
        }
        .movie-card:hover .play-icon { opacity: 1; }
        .movie-card h5 {
            font-size: 1rem;
            margin-top: 0.5rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #fff;
        }
        .movie-card .rating {
            color: var(--accent);
            font-weight: 700;
        }
        /* FAQ 手风琴自定义样式 */
        .accordion-button {
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            border-radius: 12px !important;
        }
        .accordion-button:not(.collapsed) {
            background: rgba(245,197,24,0.05);
            color: var(--accent);
        }
        .accordion-item {
            background: var(--card-bg);
            border: 1px solid #2f2f38;
            border-radius: 12px !important;
            margin-bottom: 10px;
        }
        /* 区块标题编号 */
        .section-number {
            display: inline-block;
            color: var(--accent);
            font-weight: 800;
            margin-right: 10px;
        }
        .outline-card {
            background: transparent;
            border-left: 5px solid var(--accent);
            padding: 1.2rem;
            border-radius: 12px;
            background-color: rgba(26,26,32,0.5);
        }
        /* 滚动渐显延迟 */
        .scroll-fade {
            animation: fadeUp 0.5s ease forwards;
            opacity: 0;
        }
        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        /* 友情链接 */
        .friend-links {
            background: #121218;
            border-top: 1px solid #333;
        }
        .movie-detail-drawer {
            position: fixed;
            bottom: -320px;
            left: 0;
            right: 0;
            background: #16161d;
            padding: 2rem 1.5rem;
            border-radius: 30px 30px 0 0;
            transition: bottom 0.3s cubic-bezier(0.2, 0.9, 0.1, 1);
            z-index: 999;
            max-height: 70vh;
            overflow-y: auto;
            border-top: 3px solid var(--accent);
            box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
        }
        .drawer-open .movie-detail-drawer { bottom: 0; }
        .drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(3px);
            z-index: 998;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s;
        }
        .drawer-open .drawer-backdrop { visibility: visible; opacity: 1; }
        /* 其余细节 */
        footer a { color: #b3b3b3; text-decoration: none; }
        footer a:hover { color: var(--accent); }
        .tag-chip { background: rgba(245,197,24,0.15); color: var(--accent); border-radius: 50px; }

/* --- 子页面追加 --- */
/* 保证 bootstrap 组件不会破坏深色风格 — 本页几乎不用 bootstrap 组件类，仅栅格与工具类 */
        /* 自定义组件样式，沿用CSS变量 */
        .guide-hero {
            background: radial-gradient(circle at 20% 30%, rgba(229,9,20,0.15), transparent 60%), 
                        radial-gradient(circle at 80% 70%, rgba(245,197,24,0.08), transparent 50%), 
                        var(--bg-deep);
            border-bottom: 1px solid rgba(255,255,255,0.04);
            padding: 4rem 0 2.5rem;
        }
.guide-title {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
.guide-sub {
            color: rgba(255,255,255,0.6);
            font-size: 1.1rem;
            max-width: 720px;
            border-left: 4px solid var(--accent);
            padding-left: 1.2rem;
            margin-top: 1rem;
        }
.section-badge {
            display: inline-block;
            background: var(--brand);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 0.9rem;
            border-radius: var(--radius-pill);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
.step-card {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            padding: 1.8rem 1.6rem;
            height: 100%;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform .2s ease;
        }
.step-card:hover { transform: translateY(-4px); }
.step-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--brand);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 0.8rem;
            font-family: 'Inter', sans-serif;
        }
.step-title {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.step-text {
            color: rgba(255,255,255,0.65);
            font-size: 0.95rem;
            line-height: 1.6;
        }
.guide-tip {
            background: rgba(245,197,24,0.08);
            border-left: 4px solid var(--accent);
            padding: 1.5rem 1.5rem 1.5rem 2rem;
            border-radius: 0 14px 14px 0;
            margin: 2.5rem 0;
            color: var(--text-light);
        }
.guide-tip strong { color: var(--accent); }
.friend-links a { margin-right: 1.5rem; }
/* 用回网站原有的 btn-pill 样式, 但按钮文字颜色保证可见 */
        .btn-pill {
            background: var(--brand);
            color: white !important;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
            transition: background .2s;
        }
.btn-pill:hover { background: #b20710; }
h2, h3, h4 { color: var(--text-light); }
hr { border-color: rgba(255,255,255,0.1); }
.card-body {
            padding: 1.2rem;
            background: transparent; /* 确保不出现白底 */
            color: var(--text-light);
        }
/* 导航高亮当前页 (观影指南) */
        .nav-link.active-guide {
            color: var(--accent);
            font-weight: 600;
        }
/* 页脚 */
        .footer-link-list a { color: rgba(255,255,255,0.6); text-decoration: none; margin-right: 1.2rem; }
.footer-link-list a:hover { color: var(--accent); }
/* 目录使用原有 accordion 风格但保持深色 */
        .accordion-item {
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,0.08);
        }
.accordion-button::after {
            filter: invert(0.8);
        }

/* --- 子页面追加 --- */
/* 本页专属微调样式 */
        .movie-hero { position: relative; padding: 100px 0 60px; background: linear-gradient(135deg, var(--bg-deep) 0%, #14141c 60%, #1e1020 100%); overflow: hidden; }
.movie-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(229, 9, 20, 0.25) 0%, transparent 70%); border-radius: 50%; }
.movie-hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 70%); border-radius: 50%; }
.movie-hero-content { position: relative; z-index: 2; }
.movie-hero h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 18px; }
.movie-hero h1 span { color: var(--brand); }
.movie-hero p { color: rgba(245, 245, 247, 0.75); font-size: 1.15rem; max-width: 700px; }
.movie-filter-section { padding: 40px 0 10px; }
.filter-chip { display: inline-block; padding: 8px 20px; margin: 0 8px 12px 0; border-radius: var(--radius-pill); background: var(--card-bg); color: var(--text-light); border: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
.filter-chip:hover, .filter-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.movie-section-title { font-size: 2rem; font-weight: 800; margin-bottom: 30px; display: flex; align-items: center; gap: 12px; }
.movie-section-title .section-number { background: var(--brand); color: #fff; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 1.1rem; font-weight: 800; flex-shrink: 0; }
.movie-section-title i { color: var(--accent); }
.movie-genre-tag { position: absolute; top: 12px; left: 12px; background: rgba(229, 9, 20, 0.9); color: #fff; padding: 4px 14px; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; z-index: 3; }
.movie-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.movie-card .poster-wrap { position: relative; overflow: hidden; border-radius: var(--radius-card); aspect-ratio: 2/3; background: var(--card-bg); }
.movie-card .poster-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.movie-card:hover .poster-wrap img { transform: scale(1.05); }
.movie-card .poster-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 15px; opacity: 0; transition: opacity 0.3s ease; }
.movie-card:hover .poster-overlay { opacity: 1; }
.movie-card .rating-badge { position: absolute; top: 12px; right: 12px; background: rgba(245, 197, 24, 0.92); color: #111; font-weight: 700; font-size: 0.85rem; padding: 3px 10px; border-radius: var(--radius-pill); display: flex; align-items: center; gap: 4px; z-index: 3; }
.movie-card .rating-badge i { font-size: 0.7rem; }
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.featured-grid { grid-template-columns: repeat(3, 1fr); }
.movie-hero h1 { font-size: 2.2rem; }
.featured-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
.movie-hero { padding: 80px 0 40px; }
.movie-hero h1 { font-size: 1.8rem; }
.movie-section-title { font-size: 1.5rem; }
.featured-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.movie-newsletter { background: var(--card-bg); border-radius: var(--radius-card); padding: 40px; text-align: center; border: 1px solid rgba(255,255,255,0.06); }
.movie-newsletter h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.movie-newsletter p { color: rgba(245, 245, 247, 0.65); margin-bottom: 20px; }
.newsletter-input-group { display: flex; max-width: 480px; margin: 0 auto; background: rgba(255,255,255,0.06); border-radius: var(--radius-pill); padding: 5px; border: 1px solid rgba(255,255,255,0.08); }
.newsletter-input-group input { flex: 1; background: transparent; border: none; outline: none; color: var(--text-light); padding: 10px 18px; font-size: 0.95rem; }
.newsletter-input-group input::placeholder { color: rgba(245, 245, 247, 0.4); }
.newsletter-input-group button { background: var(--brand); border: none; color: #fff; padding: 10px 26px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background 0.3s; }
.newsletter-input-group button:hover { background: #c40812; }
.movie-insight-card { background: var(--card-bg); border-radius: var(--radius-card); padding: 28px; height: 100%; border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.3s; }
.movie-insight-card:hover { border-color: var(--brand); }
.movie-insight-card .icon-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(229, 9, 20, 0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--brand); margin-bottom: 16px; }
.movie-insight-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.movie-insight-card p { font-size: 0.9rem; color: rgba(245, 245, 247, 0.6); line-height: 1.7; margin-bottom: 0; }
.movie-feature-banner { background: linear-gradient(135deg, rgba(229, 9, 20, 0.12) 0%, rgba(245, 197, 24, 0.06) 100%); border-radius: var(--radius-card); padding: 36px 40px; border: 1px solid rgba(255,255,255,0.06); margin-top: 30px; }
.movie-feature-banner h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.movie-feature-banner p { color: rgba(245, 245, 247, 0.7); max-width: 700px; margin-bottom: 20px; }
.btn-pill-brand { background: var(--brand); color: #fff; }
.btn-pill-brand:hover { background: #c40812; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3); }
.btn-pill-ghost { background: transparent; color: var(--text-light); border: 1px solid rgba(255,255,255,0.3); }
.btn-pill-ghost:hover { border-color: var(--brand); color: var(--brand); }
.movie-why-list { list-style: none; padding: 0; margin: 20px 0 0; }
.movie-why-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(245, 245, 247, 0.75); }
.movie-why-list li i { color: var(--accent); font-size: 0.85rem; }

/* --- 子页面追加 --- */
/* 复用全局 CSS 变量，只做本页特有的布局微调 */
        .tv-hero {
            background: radial-gradient(circle at 20% 30%, rgba(229,9,20,0.2), transparent 50%), radial-gradient(circle at 80% 70%, rgba(245,197,24,0.08), transparent 40%);
            padding: 3.5rem 0 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
.section-title {
            display: flex;
            align-items: center;
            gap: .6rem;
            margin-bottom: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
.section-title i {
            color: var(--accent);
        }
.tv-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            gap: 1.6rem 1.2rem;
        }
.tv-poster-card {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: transform .2s ease, box-shadow .2s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255,255,255,0.04);
        }
.tv-poster-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 30px rgba(0,0,0,0.7);
        }
.poster-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(229,9,20,0.85);
            backdrop-filter: blur(4px);
            padding: .2rem .7rem;
            border-radius: var(--radius-pill);
            font-size: .7rem;
            font-weight: 600;
            letter-spacing: .03em;
            color: white;
        }
.tv-poster-card .card-info {
            padding: .8rem .9rem 1rem;
            display: flex;
            flex-direction: column;
            gap: .4rem;
            flex: 1;
        }
.tv-poster-card .card-info h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            margin: 0;
            line-height: 1.3;
        }
.tv-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: .75rem;
            color: rgba(255,255,255,0.55);
        }
.score-chip {
            background: rgba(245,197,24,0.18);
            color: var(--accent);
            padding: .15rem .6rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: .75rem;
        }
.tags-group {
            display: flex;
            flex-wrap: wrap;
            gap: .35rem;
            margin-top: .2rem;
        }
.tag-mini {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.05);
            padding: .15rem .7rem;
            border-radius: var(--radius-pill);
            font-size: .7rem;
            color: rgba(255,255,255,0.7);
        }
.friend-links a:hover {
            color: var(--accent);
        }
/* 覆盖 bootstrap 默认卡片/列表 (避免白底) */
        .list-group-item, .accordion-item, .accordion-button {
            background: transparent;
            color: var(--text-light);
        }
.accordion-button:focus {
            box-shadow: none;
        }
.hero-badge {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(8px);
        }
.genre-strip {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin: 1.2rem 0 0;
        }

/* --- 子页面追加 --- */
/* 关于页专用小调整 */
        .about-hero {
            position: relative;
            padding: 3.5rem 0 2rem 0;
            border-bottom: 1px solid rgba(245,197,24,0.15);
        }
.about-hero h1 {
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--text-light);
            font-size: clamp(2rem, 5vw, 3.4rem);
            line-height: 1.15;
        }
.about-hero h1 .brand-highlight {
            color: var(--accent);
            display: inline-block;
        }
.about-hero p.lead {
            color: rgba(245,245,247,0.75);
            max-width: 760px;
            font-weight: 400;
            font-size: 1.12rem;
        }
.section-number i {
            color: var(--accent);
            font-size: 0.9rem;
        }
.outline-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
        }
.outline-card i {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
.outline-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.8rem;
            letter-spacing: -0.01em;
        }
.outline-card p {
            color: rgba(245,245,247,0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.feature-badge {
            display: inline-block;
            background: rgba(229,9,20,0.15);
            color: #ff8a92;
            font-size: 0.8rem;
            padding: 0.3rem 1rem;
            border-radius: 50rem;
            border: 1px solid rgba(229,9,20,0.3);
            margin-right: 0.5rem;
            margin-bottom: 0.7rem;
            font-weight: 500;
        }
.story-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(245,245,247,0.85);
        }
.story-text strong {
            color: var(--accent);
            font-weight: 600;
        }
.quote-icon {
            color: var(--accent);
            opacity: 0.3;
            font-size: 2.5rem;
        }
hr.soft-rule {
            border: 0;
            border-top: 1px solid rgba(245,197,24,0.15);
            margin: 2.5rem 0;
        }
/* 确保Bootstrap不会破坏底色 */
        .about-page main, .about-page footer {
            background: transparent;
        }
.navbar-brand, .nav-link {
            color: var(--text-light) !important;
        }
.navbar-brand span {
            color: var(--accent);
        }
.nav-link.active {
            color: var(--accent) !important;
            opacity: 1;
        }
.navbar-collapse {
                background: rgba(11,11,15,0.95);
                padding: 1rem 1.2rem;
                border-radius: 0 0 16px 16px;
            }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-hero { padding: 100px 0 50px; background: linear-gradient(135deg, rgba(229,9,20,.08) 0%, transparent 60%); }
.disclaimer-card { background: var(--card-bg); border-radius: var(--radius-card); padding: 2.5rem; margin-bottom: 2rem; box-shadow: var(--shadow-soft); }
.disclaimer-card h2 { color: var(--accent); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.disclaimer-card h2 i { color: var(--brand); font-size: 1.3rem; }
.disclaimer-card h3 { color: var(--text-light); font-size: 1.15rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: .8rem; }
.disclaimer-card p { color: rgba(245,245,247,.75); line-height: 1.9; font-size: .95rem; }
.disclaimer-card ul { list-style: none; padding-left: 0; }
.disclaimer-card ul li { color: rgba(245,245,247,.75); line-height: 1.9; font-size: .95rem; padding-left: 1.8rem; position: relative; margin-bottom: .4rem; }
.disclaimer-card ul li::before { content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--brand); font-size: .8rem; top: .3rem; }
.disclaimer-card a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.disclaimer-card a:hover { color: var(--brand); }
.highlight-box { background: rgba(229,9,20,.08); border-left: 4px solid var(--brand); padding: 1.2rem 1.5rem; border-radius: 0 12px 12px 0; margin: 1.8rem 0; }
.highlight-box p { margin: 0; }
.last-updated { color: rgba(245,245,247,.5); font-size: .85rem; margin-top: 1.5rem; display: block; }
.disclaimer-hero { padding: 80px 0 30px; }
.disclaimer-card { padding: 1.5rem; }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#f5f5f7 !important; border-color:rgba(255,255,255,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#f5f5f7 !important; }
.accordion-body { background:transparent !important; color:#f5f5f7 !important; }
.accordion-header { background:transparent !important; }
