:root {
            --main: #dc2626;
            --accent: #fb923c;
            --bg: #141013;
            --text: #fef2f2;
            --text-dim: #c8b6b6;
            --border: rgba(254, 242, 242, 0.12);
        }
        * { box-sizing: border-box; }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            letter-spacing: -0.01em;
            margin: 0;
            padding: 0;
        }
        a { color: var(--text); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--accent); }
        h1, h2, h3, .display-5 { font-weight: 800; letter-spacing: -0.02em; }

        /* 纯描边分割 */
        .section-divider {
            border-bottom: 1px solid var(--border);
            margin: 2rem 0;
        }
        .navbar {
            background: rgba(20, 16, 19, 0.85);
            backdrop-filter: blur(6px);
            border-bottom: 1px solid var(--border);
            font-weight: 500;
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .navbar-brand {
            font-size: 1.75rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--main);
        }
        .navbar-brand i { color: var(--accent); margin-right: 6px; }
        .nav-link { color: var(--text) !important; margin: 0 12px; font-weight: 500; }
        .nav-link:hover { color: var(--accent) !important; }

        /* Hero 标签云 */
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 1.5rem;
            padding: 4rem 0 2rem;
            font-size: 1.2rem;
        }
        .hero-tags span {
            border: 1px solid var(--border);
            border-radius: 40px;
            padding: 8px 20px;
            background: rgba(220, 38, 38, 0.05);
            color: var(--text-dim);
            transition: all 0.2s;
        }
        .hero-tags span:hover { border-color: var(--main); color: var(--text); transform: scale(1.02); }

        /* 卡片 */
        .film-card {
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            background: #1d181d;
            transition: transform 0.2s, border-color 0.2s;
            height: 100%;
            cursor: pointer;
            scroll-margin-top: 90px;
        }
        .film-card:hover {
            border-color: var(--main);
            transform: translateY(-3px);
        }
        .poster-wrap {
            position: relative;
            aspect-ratio: 2 / 3;
            overflow: hidden;
            background: #2a2025;
        }
        .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }
        .film-card:hover .poster-wrap img { transform: scale(1.06); }
        .gradient-mask {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(20, 16, 19, 0.9) 0%, transparent 45%);
            display: flex;
            align-items: flex-end;
            padding: 12px;
            opacity: 0;
            transition: opacity 0.25s;
        }
        .film-card:hover .gradient-mask { opacity: 1; }
        .play-btn {
            background: var(--main);
            border-radius: 60px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        .film-info {
            padding: 12px 10px 10px;
            background: #1d181d;
        }
        .film-title {
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }
        .film-meta {
            font-size: 0.78rem;
            color: var(--text-dim);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .rating { color: var(--accent); font-weight: 800; }

        /* 横向滚动 */
        .scroll-row {
            display: flex;
            overflow-x: auto;
            gap: 1rem;
            padding-bottom: 12px;
            scrollbar-width: thin;
            scrollbar-color: var(--main) #241d22;
        }
        .scroll-row > .col-flex { min-width: 170px; flex: 0 0 auto; width: 170px; }

        /* 周榜 */
        .rank-list {
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 1rem;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border);
        }
        .rank-item:last-child { border-bottom: none; }
        .rank-badge {
            background: var(--main);
            color: white;
            border-radius: 30px;
            font-weight: 800;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }
        .rank-badge.top { background: var(--accent); }

        /* 步骤条、心情标签 */
        .mood-tag {
            border: 1px solid var(--border);
            padding: 8px 18px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            background: transparent;
            color: var(--text);
        }
        .mood-tag:hover, .mood-tag.active { background: var(--main); border-color: var(--main); color: white; }

        /* 回到顶部 */
        #backTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 46px;
            height: 46px;
            background: var(--main);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1.3rem;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: 0.2s;
        }
        #backTop.show { display: flex; }

        /* 抽屉弹窗 */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            opacity: 0;
            pointer-events: none;
            transition: 0.25s;
            z-index: 2000;
        }
        .drawer-overlay.active { opacity: 1; pointer-events: auto; }
        .detail-drawer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1e181e;
            border-top: 2px solid var(--main);
            padding: 1.5rem 1.8rem 2rem;
            transform: translateY(100%);
            transition: 0.3s ease-out;
            z-index: 2001;
            border-radius: 24px 24px 0 0;
            max-height: 80vh;
            overflow-y: auto;
        }
        .detail-drawer.active { transform: translateY(0); }
        .detail-drawer h5 { font-weight: 800; }

        footer {
            border-top: 1px solid var(--border);
            padding: 2rem 0 3rem;
            margin-top: 4rem;
            color: var(--text-dim);
        }
        .footer-links a { color: var(--text-dim); margin-right: 18px; font-size: 0.9rem; }

        /* 滚动渐显 */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.5s;
        }
        .reveal.in { opacity: 1; transform: translateY(0); }

/* --- 子页面追加 --- */
/* 排行榜专属样式(少量,合并进站点CSS) */
        .rank-hero {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(251, 146, 60, 0.08) 50%, transparent 100%);
            border-bottom: 1px solid var(--border);
            padding: 60px 0 30px;
        }
.rank-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 8px;
        }
.rank-subtitle {
            color: var(--text-dim);
            font-size: 1rem;
            max-width: 640px;
        }
.rank-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 32px 0 24px;
        }
.rank-tab {
            padding: 8px 20px;
            border-radius: 50px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-dim);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.rank-tab:hover, .rank-tab.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.rank-item:hover {
            background: rgba(220, 38, 38, 0.06);
            border-color: rgba(220, 38, 38, 0.3);
            transform: translateY(-2px);
        }
.rank-item:nth-child(1) .rank-badge {
            color: var(--accent);
            text-shadow: 0 0 20px rgba(251, 146, 60, 0.3);
        }
.rank-item:nth-child(2) .rank-badge {
            color: #e5e7eb;
        }
.rank-item:nth-child(3) .rank-badge {
            color: #d97706;
        }
.rank-thumb {
            width: 72px;
            height: 96px;
            border-radius: 10px;
            overflow: hidden;
            margin: 0 16px;
            flex-shrink: 0;
            background: var(--border);
        }
.rank-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.rank-info {
            flex: 1;
            min-width: 0;
        }
.rank-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-desc {
            font-size: 0.85rem;
            color: var(--text-dim);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-score {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--accent);
            font-weight: 800;
            font-size: 1.1rem;
            margin-left: 12px;
            flex-shrink: 0;
        }
.rank-score i {
            font-size: 0.8rem;
        }
.rank-views {
            color: var(--text-dim);
            font-size: 0.75rem;
            margin-left: 12px;
            text-align: right;
            flex-shrink: 0;
        }
.rank-note {
            background: rgba(220, 38, 38, 0.08);
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 16px;
            padding: 24px;
            margin-top: 40px;
        }
.rank-note h3 {
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
.rank-note p {
            color: var(--text-dim);
            font-size: 0.9rem;
            margin-bottom: 0;
            line-height: 1.8;
        }
.rank-hero { padding: 40px 0 20px; }
.rank-title { font-size: 1.6rem; }
.rank-thumb { width: 56px; height: 76px; margin: 0 10px; }
.rank-score { font-size: 0.95rem; margin-left: 8px; }
.rank-views { display: none; }
.rank-desc { font-size: 0.78rem; }

/* --- 子页面追加 --- */
.doc-hero {
      position: relative;
      padding: 80px 0 60px;
      background: linear-gradient(135deg, rgba(220,38,38,0.15) 0%, transparent 60%);
      border-bottom: 1px solid var(--border);
    }
.doc-hero h1 {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 1rem;
    }
.doc-hero p {
      font-size: 1.15rem;
      color: var(--text-dim);
      max-width: 640px;
    }
.doc-section {
      padding: 60px 0;
    }
.doc-section h2 {
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 1rem;
      position: relative;
      padding-left: 16px;
    }
.doc-section h2::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 70%;
      background: var(--main);
      border-radius: 2px;
    }
.doc-card {
      background: rgba(20, 16, 19, 0.8);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 24px;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
.doc-card:hover {
      transform: translateY(-4px);
      border-color: var(--main);
      box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
    }
.doc-card .poster-wrap {
      position: relative;
      padding-top: 56%;
      overflow: hidden;
    }
.doc-card .poster-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.doc-card .doc-card-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
.doc-card .doc-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }
.doc-card .doc-desc {
      font-size: 0.9rem;
      color: var(--text-dim);
      line-height: 1.6;
      flex-grow: 1;
    }
.doc-card .doc-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 12px;
      font-size: 0.85rem;
      color: var(--text-dim);
    }
.doc-card .doc-meta .rating {
      color: var(--accent);
      font-weight: 700;
    }
.doc-card .doc-meta .rating i {
      margin-right: 4px;
    }
.doc-editor-pick {
      background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, transparent 80%);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px;
      margin: 40px 0;
      position: relative;
      overflow: hidden;
    }
.doc-editor-pick .pick-badge {
      display: inline-block;
      background: var(--main);
      color: #fff;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
.doc-editor-pick h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 12px;
    }
.doc-editor-pick p {
      color: var(--text-dim);
      line-height: 1.8;
      margin-bottom: 0;
    }
.doc-pick-row {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }
.doc-cat-tag {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      background: rgba(220, 38, 38, 0.15);
      color: var(--main);
      margin-right: 8px;
      margin-bottom: 8px;
      border: 1px solid rgba(220, 38, 38, 0.3);
    }
.doc-tip-box {
      background: rgba(251, 146, 60, 0.06);
      border: 1px solid rgba(251, 146, 60, 0.2);
      border-radius: 12px;
      padding: 24px;
      margin-top: 32px;
    }
.doc-tip-box h4 {
      color: var(--accent);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
.doc-tip-box p {
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 8px;
    }
.doc-tip-box i {
      color: var(--accent);
      margin-right: 6px;
    }
.doc-hero h1 { font-size: 2rem; }
.doc-section h2 { font-size: 1.5rem; }
.doc-editor-pick { padding: 24px; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .about-hero { padding: 80px 0 40px; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; top: -50%; left: -30%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(220,38,38,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.about-hero h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; position: relative; z-index: 1; }
.about-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 720px; line-height: 1.8; position: relative; z-index: 1; }
.about-section { padding: 60px 0; }
.about-section h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 24px; position: relative; padding-left: 20px; }
.about-section h2::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 4px; background: var(--accent); border-radius: 2px; }
.about-section h3 { font-size: 1.2rem; font-weight: 700; margin: 20px 0 12px; color: var(--text); }
.about-section p { color: var(--text-dim); line-height: 1.9; margin-bottom: 16px; }
.about-section .lead { font-size: 1.1rem; color: var(--text); }
.feature-card { background: rgba(220,38,38,0.05); border: 1px solid var(--border); border-radius: 16px; padding: 28px; height: 100%; transition: transform 0.3s ease, border-color 0.3s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.feature-card i { font-size: 2.2rem; color: var(--accent); margin-bottom: 16px; }
.feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 0.95rem; margin-bottom: 0; }
.timeline { list-style: none; padding: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline li { position: relative; padding: 0 0 32px 40px; }
.timeline li::before { content: ''; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--main); border: 3px solid var(--accent); }
.timeline li h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.timeline li p { font-size: 0.95rem; margin-bottom: 0; }
.quote-block { border-left: 4px solid var(--accent); padding: 20px 24px; background: rgba(251,146,60,0.06); border-radius: 0 16px 16px 0; margin: 24px 0; }
.quote-block p { font-style: italic; margin-bottom: 8px; }
.quote-block cite { color: var(--text-dim); font-size: 0.9rem; font-style: normal; }
.stats-row { display: flex; gap: 32px; flex-wrap: wrap; margin: 32px 0; }
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-item .num { font-size: 2.2rem; font-weight: 900; color: var(--accent); display: block; }
.stat-item .label { font-size: 0.85rem; color: var(--text-dim); }
.about-hero h1 { font-size: 2rem; }
.about-hero p { font-size: 1rem; }
.about-section h2 { font-size: 1.4rem; }

/* --- 子页面追加 --- */
.disclaimer-hero { padding: 80px 0 40px; text-align: center; }
.disclaimer-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--main); margin-bottom: 16px; }
.disclaimer-hero p { color: var(--text-dim); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.disclaimer-section { padding: 40px 0; }
.disclaimer-section h2 { color: var(--main); font-weight: 700; font-size: 1.6rem; margin-bottom: 24px; }
.disclaimer-section h3 { color: var(--accent); font-weight: 600; font-size: 1.2rem; margin: 24px 0 16px; }
.disclaimer-section p, .disclaimer-section li { color: var(--text-dim); line-height: 1.8; font-size: 0.98rem; }
.disclaimer-section ul, .disclaimer-section ol { padding-left: 1.5rem; margin-bottom: 16px; }
.disclaimer-box { background: rgba(220, 38, 38, 0.06); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin: 24px 0; }
.disclaimer-box h4 { color: var(--main); font-weight: 600; margin-bottom: 12px; }
.disclaimer-box p { margin-bottom: 8px; }
.update-date { color: var(--text-dim); font-size: 0.9rem; margin-top: 32px; text-align: center; }
.disclaimer-hero h1 { font-size: 2rem; }
.disclaimer-hero { padding: 60px 0 30px; }
.disclaimer-section h2 { font-size: 1.3rem; }

/* --- 子页面追加 --- */
/* 确保所有 Bootstrap 组件强制覆盖成本站深色主题 */
    .card, .card-body, .card-header, .card-footer,
    .list-group-item, .accordion-item, .accordion-button, .accordion-body,
    .form-control, .form-select, .modal-content {
      background: #1d1517 !important;  /* 略亮于背景，但属于同色系 */
      color: var(--text) !important;
      border-color: var(--border) !important;
    }
.accordion-button:not(.collapsed) {
      background: rgba(220, 38, 38, 0.15) !important;
      color: var(--text) !important;
    }
.accordion-button::after {
      filter: invert(1) hue-rotate(180deg); /* 让箭头可见 */
    }
.form-control::placeholder {
      color: rgba(255, 255, 255, 0.4) !important;
    }
.form-control:focus {
      background: #241b1d !important;
      color: var(--text) !important;
      border-color: var(--main) !important;
      box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.1) !important;
    }
/* 保证任何卡片、表格都是深色 */
    .table {
      background-color: transparent !important;
      color: var(--text) !important;
    }
.table td, .table th {
      border-color: var(--border) !important;
    }
.dropdown-menu {
      background: #1d1517 !important;
      color: var(--text) !important;
    }
.dropdown-item {
      color: var(--text) !important;
    }
.dropdown-item:hover {
      background: rgba(220, 38, 38, 0.2) !important;
    }
/* 导航高亮当前页 */
    .navbar-nav .nav-link.active-privacy {
      color: var(--main) !important;
      font-weight: 600;
    }
/* 让链接可读 */
    a {
      color: var(--accent);
    }
.legal-hero {
      border-bottom: 1px solid var(--border);
      padding-bottom: 1rem;
    }