:root {
      --main: #dc2626;
      --accent: #fb923c;
      --bg-deep: #141013;
      --text-light: #fef2f2;
      --shadow-heavy: 0 20px 40px rgba(0,0,0,0.7), 0 8px 16px rgba(0,0,0,0.5);
      --card-bg: #241d22;
    }
    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background-color: var(--bg-deep);
      color: var(--text-light);
      font-weight: 400;
      letter-spacing: 0.02em;
    }
    /* 拟物厚重风：大投影+渐变高光 */
    .neo-card {
      background: linear-gradient(145deg, #2b2228 0%, #1d171b 100%);
      box-shadow: 12px 12px 24px rgba(0,0,0,0.8), -6px -6px 12px rgba(255,255,255,0.03);
      border-radius: 1rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .neo-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 25px 45px rgba(0,0,0,0.9), 0 8px 20px rgba(220,38,38,0.2);
    }
    .section-title {
      font-weight: 800;
      font-size: 2.2rem;
      border-left: 8px solid var(--main);
      padding-left: 1.2rem;
      margin: 2.5rem 0 1.5rem;
      text-shadow: 0 4px 12px rgba(0,0,0,0.7);
      letter-spacing: -0.02em;
    }
    .badge-corner {
      position: absolute; top: 10px; left: 10px; z-index: 3;
      background: var(--main); color: #fff; font-weight: 700;
      padding: 0.25rem 0.8rem; border-radius: 30px; font-size: 0.8rem;
      box-shadow: 0 4px 12px rgba(220,38,38,0.5);
    }
    .badge-rating {
      position: absolute; top: 10px; right: 10px;
      background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
      color: #fbbf24; font-weight: 700; padding: 0.2rem 0.6rem;
      border-radius: 20px; font-size: 0.9rem;
      border: 1px solid #fb923c;
    }
    .movie-card {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      background: #1c161b;
      height: 100%;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .movie-card img {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      display: block;
      background: #2c242b;
    }
    .movie-info {
      padding: 0.75rem;
    }
    .movie-title {
      font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .movie-meta {
      font-size: 0.8rem; color: #d9c7c7; display: flex; gap: 10px;
    }
    /* 底部抽屉弹窗 */
    .drawer-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.65);
      backdrop-filter: blur(4px); z-index: 1050; display: none;
      justify-content: center; align-items: flex-end;
    }
    .drawer-panel {
      background: #221b21; width: 100%; max-height: 85vh; overflow-y: auto;
      border-radius: 24px 24px 0 0; padding: 2rem 2rem 3rem;
      box-shadow: 0 -10px 30px rgba(0,0,0,0.7);
      border-top: 3px solid var(--main);
    }
    .drawer-panel h3 { font-weight: 800; margin-bottom: 0.5rem; }
    .drawer-panel .detail-plot { color: #cbbebe; margin-top: 1rem; line-height: 1.6; }
    .drawer-close {
      position: absolute; right: 25px; top: 25px; background: none; border: none;
      color: #fff; font-size: 2rem; cursor: pointer;
    }
    .banner-hero {
      background: linear-gradient(to bottom, rgba(20,16,19,0.2), var(--bg-deep)), 
                  url('{随机图片}') no-repeat center center/cover;
      min-height: 75vh;
      display: flex; align-items: center;
      box-shadow: inset 0 -80px 100px var(--bg-deep);
      margin-bottom: 2rem;
    }
    .hero-content h1 {
      font-size: 4rem; font-weight: 900; text-shadow: 0 8px 30px rgba(0,0,0,0.9);
      letter-spacing: -0.02em;
    }
    .hero-content p { font-size: 1.3rem; max-width: 600px; }
    .category-pill {
      background: rgba(255,255,255,0.08); padding: 0.7rem 1.5rem;
      border-radius: 60px; font-weight: 600; color: var(--text-light);
      border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(4px);
      transition: 0.2s;
    }
    .category-pill:hover { background: var(--main); border-color: var(--main); }
    .ranking-number {
      font-size: 2.4rem; font-weight: 900; color: var(--main); text-shadow: 0 0 15px #dc2626;
    }
    .timeline-item {
      display: flex; gap: 1rem; padding: 0.8rem 0; border-left: 2px solid #333;
      padding-left: 1.5rem; position: relative;
    }
    .timeline-item::before {
      content: ''; width: 12px; height: 12px; background: var(--accent);
      border-radius: 50%; position: absolute; left: -7px; top: 1.2rem;
    }
    footer a { color: #ccc; text-decoration: none; }
    footer a:hover { color: #fff; }
    .friend-links a { margin: 0 0.8rem; color: #aaa; }
    /* 数字滚动 */
    .stat-number { font-weight: 900; font-size: 2.8rem; color: var(--accent); }

/* --- 子页面追加 --- */
/* 覆盖 bootstrap 组件默认白底黑字, 确保与暗色主题一致 */
    .card, .card-body, .card-title, .card-text, .card-header, .card-footer {
      background: var(--card-bg) !important;
      color: var(--text-light) !important;
      border-color: #3a2e36 !important;
    }
.form-control, .form-select, .form-label, .input-group-text {
      background: rgba(0,0,0,0.35) !important;
      color: var(--text-light) !important;
      border-color: #3a2e36 !important;
    }
.form-control::placeholder {
      color: rgba(255,255,255,0.45) !important;
    }
.list-group-item, .accordion-item, .accordion-button, .accordion-body, .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item {
      background: var(--card-bg) !important;
      color: var(--text-light) !important;
      border-color: #3a2e36 !important;
    }
.accordion-button:not(.collapsed) {
      background: #2f242b !important;
      color: var(--text-light) !important;
    }
.nav-link, .navbar, .navbar-brand {
      color: var(--text-light) !important;
    }
.btn-light, .btn-outline-* {
      background: #2f242b !important;
      color: var(--text-light) !important;
      border-color: #3a2e36 !important;
    }
/* 让 navbar 品牌连续不折行 */
    .navbar-brand {
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
/* 小标题微调 */
    .section-title {
      margin-bottom: 1.2rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
      letter-spacing: -0.3px;
    }
.section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: var(--accent);
      margin-top: 6px;
      border-radius: 2px;
    }
/* 关于页特有卡片 */
    .about-hero {
      background: linear-gradient(145deg, rgba(220,38,38,0.12) 0%, rgba(20,16,19,1) 100%);
      border-bottom: 1px solid #2e232a;
    }
.stat-badge {
      background: var(--card-bg);
      border: 1px solid #3a2e36;
      border-radius: 16px;
      padding: 1rem 1.2rem;
      transition: all 0.2s;
    }
.stat-badge:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow-heavy);
    }

/* --- 子页面追加 --- */
/* 页面专属补充样式(自动合并进站点CSS) */
    .faq-hero { padding: 4rem 0 2.5rem; }
.faq-hero .hero-title { font-size: 2.6rem; font-weight: 800; color: var(--text-light); line-height: 1.2; }
.faq-hero .hero-title span { color: var(--main); }
.faq-hero .hero-sub { color: rgba(254,242,242,.7); max-width: 640px; margin-top: .75rem; font-size: 1.05rem; }
.faq-section { margin-bottom: 3.5rem; }
.faq-section-title { font-size: 1.5rem; font-weight: 700; color: var(--text-light); margin-bottom: 1.25rem; padding-left: .9rem; border-left: 4px solid var(--main); display: flex; align-items: center; gap: .6rem; }
.faq-section-title i { color: var(--accent); font-size: 1.2rem; }
.faq-card { background: var(--card-bg); border-radius: 14px; padding: 1.2rem 1.4rem; margin-bottom: 1rem; box-shadow: 0 6px 16px rgba(0,0,0,.3); border-left: 3px solid transparent; transition: all .25s ease; }
.faq-card:hover { border-left-color: var(--accent); background: #2a2229; }
.faq-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-light); margin-bottom: .45rem; display: flex; align-items: center; gap: .5rem; }
.faq-card h3 i { color: var(--main); font-size: .9rem; }
.faq-card p { color: rgba(254,242,242,.75); font-size: .95rem; line-height: 1.65; margin-bottom: 0; }
.faq-card p a { color: var(--accent); text-decoration: underline; }
.faq-card p a:hover { color: var(--text-light); }
.tip-badge { display: inline-block; background: rgba(220,38,38,.18); color: var(--accent); font-size: .75rem; font-weight: 600; padding: .2rem .7rem; border-radius: 30px; margin-left: .5rem; vertical-align: middle; }
.step-list { list-style: none; padding-left: 0; margin-bottom: 0; }
.step-list li { position: relative; padding-left: 2rem; margin-bottom: .7rem; color: rgba(254,242,242,.75); font-size: .95rem; }
.step-list li::before { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--accent); font-size: .8rem; }
.step-list li strong { color: var(--text-light); }
.faq-hero .hero-title { font-size: 1.9rem; }
.faq-section-title { font-size: 1.25rem; }
.faq-card { padding: 1rem 1.1rem; }

/* --- 子页面追加 --- */
.disclaimer-hero {
            background: linear-gradient(135deg, var(--bg-deep) 0%, #1a1015 50%, var(--card-bg) 100%);
            border-bottom: 3px solid var(--main);
            padding: 80px 0 50px;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-heavy);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
.disclaimer-card:hover {
            border-color: var(--main);
            transform: translateY(-4px);
        }
.disclaimer-card h2 {
            color: var(--main);
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(220, 38, 38, 0.3);
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--text-light);
            opacity: 0.9;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-card ul {
            padding-left: 20px;
            margin-top: 10px;
        }
.disclaimer-card ul li {
            margin-bottom: 8px;
        }
.icon-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--main);
            border-radius: 12px;
            color: #fff;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
.highlight-box {
            background: rgba(220, 38, 38, 0.1);
            border-left: 4px solid var(--main);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
.highlight-box p {
            margin: 0;
            color: var(--text-light);
            font-weight: 500;
        }
.last-updated {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 15px;
            display: block;
        }
.contact-note {
            background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(220, 38, 38, 0.1));
            border: 1px solid rgba(251, 146, 60, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
        }
.contact-note h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
.disclaimer-hero {
                padding: 60px 0 30px;
            }
.disclaimer-card {
                padding: 20px;
            }