/* 全直角硬朗风 + 暗红剧场 */
    :root {
      --primary: #dc2626;
      --accent: #fb923c;
      --bg: #141013;
      --text: #fef2f2;
      --card-bg: #1e181c;
      --border: #3a2a2e;
      --shadow: 8px 8px 0 rgba(0,0,0,0.7);
      --font-main: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    * { border-radius: 0 !important; box-sizing: border-box; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-main);
      letter-spacing: 0.2px;
    }
    h1,h2,h3,h4,h5,.display-3 { font-weight: 800; color: #fff; }
    a { color: var(--text); text-decoration: none; }
    a:hover { color: var(--accent); }

    /* 导航栏 */
    .navbar-custom {
      background: rgba(20, 16, 19, 0.85);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--primary);
      transition: background 0.3s;
      z-index: 2000;
    }
    .navbar-custom.scrolled {
      background: rgba(10, 6, 8, 0.95);
      box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }
    .navbar-brand { font-weight: 900; font-size: 2rem; color: var(--text) !important; letter-spacing: -0.5px; }
    .navbar-brand i { color: var(--primary); margin-right: 6px; }
    .nav-link { color: #eee !important; font-weight: 600; margin: 0 12px; }
    .nav-link:hover { color: var(--accent) !important; }

    /* Hero 大数字 */
    .hero-stats {
      background: linear-gradient(145deg, #1a0f12, #141013);
      border-bottom: 3px solid var(--primary);
      padding: 3rem 0;
    }
    .stat-number { font-size: 4rem; font-weight: 900; color: var(--primary); line-height: 1; }
    .stat-label { font-weight: 400; color: #ccc; }

    /* 区块标题 */
    .section-title {
      font-size: 2.8rem;
      font-weight: 800;
      border-left: 10px solid var(--primary);
      padding-left: 20px;
      margin: 2rem 0 1.5rem;
      text-transform: uppercase;
      letter-spacing: -1px;
    }
    .section-title i { color: var(--accent); }

    /* 卡片 */
    .movie-card {
      background: var(--card-bg);
      border: 2px solid var(--border);
      box-shadow: var(--shadow);
      transition: transform 0.15s ease, box-shadow 0.2s;
      cursor: pointer;
      margin-bottom: 25px;
    }
    .movie-card:hover {
      transform: translateY(-8px);
      box-shadow: 12px 12px 0 rgba(0,0,0,0.9);
    }
    .movie-card img {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      border-bottom: 2px solid var(--border);
    }
    .card-body { padding: 0.8rem 1rem; }
    .movie-title { font-weight: 700; font-size: 1.1rem; line-height: 1.2; }
    .movie-meta { color: #aaa; font-size: 0.85rem; }
    .badge-quality {
      background: var(--primary);
      color: white;
      font-weight: 800;
      padding: 2px 8px;
      font-size: 0.7rem;
      letter-spacing: 1px;
      position: absolute;
      top: 8px;
      right: 8px;
      border: 1px solid black;
    }

    /* 左侧分类筛选栏 */
    .filter-sidebar {
      background: #1c1417;
      border: 2px solid var(--border);
      padding: 20px 15px;
      box-shadow: var(--shadow);
      position: sticky;
      top: 100px;
    }
    .filter-sidebar h5 { font-weight: 800; color: var(--accent); margin-bottom: 18px; }
    .filter-item {
      display: block;
      padding: 6px 10px;
      color: #ddd;
      font-weight: 500;
      border-left: 4px solid transparent;
      margin-bottom: 4px;
    }
    .filter-item:hover { background: #2a1e22; color: white; border-left-color: var(--primary); }

    /* 排行榜列表 */
    .rank-list { background: #1b1518; border: 2px solid var(--border); }
    .rank-item {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      border-bottom: 1px solid var(--border);
      font-weight: 600;
    }
    .rank-number { font-size: 2rem; font-weight: 900; color: var(--primary); width: 60px; }
    .rank-title { flex: 1; }

    /* 对比表格 */
    .compare-table td { border: 2px solid var(--border); padding: 12px; }
    .compare-table th { background: var(--primary); color: white; border: 2px solid black; font-weight: 800; }

    /* 编号清单 */
    .numbered-list { counter-reset: item; list-style: none; padding-left: 0; }
    .numbered-list li { counter-increment: item; padding: 8px 0; border-bottom: 1px dashed #333; }
    .numbered-list li::before {
      content: counter(item) ".";
      font-weight: 900;
      font-size: 1.5rem;
      color: var(--accent);
      margin-right: 15px;
    }

    /* 抽屉弹窗 */
    .drawer-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 3000;
      display: none; opacity: 0; transition: opacity 0.2s;
    }
    .drawer-panel {
      position: fixed; left: 0; right: 0; bottom: -100%; 
      background: #1c1518; border-top: 4px solid var(--primary);
      padding: 25px; transition: bottom 0.3s ease; z-index: 3100;
      max-height: 80vh; overflow-y: auto;
      box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    }
    .drawer-panel.show { bottom: 0; }
    .drawer-overlay.show { display: block; opacity: 1; }

    /* 友链 */
    .friend-links { border-top: 2px solid var(--border); padding: 2rem 0; }
    .friend-links a { margin: 0 12px; color: #aaa; font-weight: 500; }
    .friend-links a:hover { color: var(--accent); }

    /* 页脚 */
    footer { background: #0e0a0c; padding: 2rem 0; border-top: 3px solid var(--primary); }
    footer p { color: #888; margin: 0; }
    footer a { color: #ccc; }

    /* 移动端调整 */
    @media (max-width: 992px) {
      .filter-sidebar { position: static; margin-bottom: 30px; }
      .section-title { font-size: 2.2rem; }
    }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .about-hero {
      padding: 80px 0 40px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 50px;
    }
.about-hero h1 {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -1px;
      margin-bottom: 16px;
    }
.about-hero .lead {
      font-size: 1.15rem;
      color: rgba(254,242,242,.85);
      max-width: 720px;
      line-height: 1.8;
    }
.about-section {
      padding: 30px 0 40px;
      border-bottom: 1px solid var(--border);
    }
.about-section:last-of-type {
      border-bottom: none;
    }
.about-section h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
.about-section h2 i {
      color: var(--accent);
      margin-right: 12px;
      font-size: 1.5rem;
    }
.about-section p {
      color: rgba(254,242,242,.88);
      line-height: 1.9;
      font-size: 1.05rem;
      margin-bottom: 16px;
    }
.about-section ul {
      padding-left: 0;
      list-style: none;
      margin: 20px 0;
    }
.about-section ul li {
      padding: 10px 0 10px 32px;
      position: relative;
      color: rgba(254,242,242,.88);
      line-height: 1.8;
      border-bottom: 1px dashed rgba(58,42,46,.6);
    }
.about-section ul li:last-child { border-bottom: none; }
.about-section ul li::before {
      content: "\f005";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 10px;
      color: var(--accent);
      font-size: .9rem;
    }
.about-highlight {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 32px;
      margin: 30px 0;
      box-shadow: var(--shadow);
    }
.about-highlight p {
      margin-bottom: 8px;
      font-size: 1.1rem;
    }
.about-highlight .big-number {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--primary);
      display: inline-block;
      margin-right: 8px;
    }
.timeline-list {
      padding: 0;
      list-style: none;
      margin: 20px 0 0;
    }
.timeline-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(58,42,46,.5);
    }
.timeline-list li:last-child { border-bottom: none; }
.timeline-list .year {
      font-weight: 800;
      color: var(--primary);
      font-size: 1.1rem;
      min-width: 70px;
      flex-shrink: 0;
    }
.timeline-list .desc {
      color: rgba(254,242,242,.85);
      line-height: 1.7;
    }
.stat-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
      margin: 30px 0;
    }
.stat-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 24px 20px;
      text-align: center;
    }
.stat-card .num {
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.2;
    }
.stat-card .lbl {
      color: rgba(254,242,242,.7);
      font-size: .9rem;
      margin-top: 6px;
      letter-spacing: .5px;
    }
.about-hero h1 { font-size: 2rem; }
.about-section h2 { font-size: 1.4rem; }
.about-highlight { padding: 20px; }
.about-highlight .big-number { font-size: 1.6rem; }

/* --- 子页面追加 --- */
.privacy-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
.privacy-section h2 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
        }
.privacy-section h3 {
            color: var(--text);
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
.privacy-section p {
            color: rgba(254, 242, 242, 0.85);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
.privacy-section ul {
            color: rgba(254, 242, 242, 0.85);
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.privacy-section li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }
.privacy-section strong {
            color: var(--accent);
        }
.privacy-updated {
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1rem 1.5rem;
            color: var(--text);
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }
.privacy-updated i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
.privacy-nav {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
.privacy-nav h3 {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--border);
            padding-bottom: 0.5rem;
        }
.privacy-nav a {
            display: block;
            color: rgba(254, 242, 242, 0.8);
            text-decoration: none;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(58, 42, 46, 0.5);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
.privacy-nav a:hover {
            color: var(--accent);
            padding-left: 0.5rem;
        }
.privacy-nav a:last-child {
            border-bottom: none;
        }
.privacy-nav a i {
            margin-right: 0.5rem;
            color: var(--accent);
            font-size: 0.85rem;
        }
.page-header {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
            border-radius: 16px;
            padding: 3rem 2rem;
            margin-bottom: 3rem;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
.page-header::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
.page-header h1 {
            color: var(--text);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }
.page-header h1 span {
            color: var(--primary);
        }
.page-header p {
            color: rgba(254, 242, 242, 0.7);
            font-size: 1.1rem;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }
.privacy-section .contact-info {
            background: rgba(251, 146, 60, 0.08);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
.privacy-section .contact-info p {
            margin-bottom: 0.5rem;
        }
.privacy-section .contact-info i {
            color: var(--accent);
            margin-right: 0.8rem;
            width: 20px;
        }
.privacy-section .highlight-box {
            background: rgba(220, 38, 38, 0.08);
            border-left: 4px solid var(--primary);
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
.privacy-section .highlight-box p {
            margin-bottom: 0;
            font-style: italic;
        }

/* --- 子页面追加 --- */
/* 免责声明页面专属样式 */
        .legal-hero {
            padding: 80px 0 60px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
        }
.legal-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 20px;
        }
.legal-hero h1 span {
            color: var(--primary);
        }
.legal-hero p {
            color: rgba(254, 242, 242, 0.7);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.legal-section {
            padding: 40px 0;
        }
.legal-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
.legal-card:hover {
            transform: translateY(-4px);
        }
.legal-card h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.legal-card h2 i {
            font-size: 1.2rem;
            color: var(--primary);
        }
.legal-card p {
            color: rgba(254, 242, 242, 0.8);
            line-height: 1.8;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
.legal-card ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }
.legal-card ul li {
            color: rgba(254, 242, 242, 0.8);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
.legal-card strong {
            color: var(--text);
            font-weight: 600;
        }
.legal-highlight {
            background: rgba(220, 38, 38, 0.08);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 16px 0;
        }
.legal-highlight p {
            margin-bottom: 0;
            color: rgba(254, 242, 242, 0.9);
        }
.legal-updated {
            text-align: center;
            color: rgba(254, 242, 242, 0.5);
            font-size: 0.9rem;
            margin-top: 40px;
            padding: 20px 0;
        }
.btn-back-home {
            display: inline-block;
            background: var(--primary);
            color: var(--text);
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }
.btn-back-home:hover {
            background: var(--accent);
            color: var(--bg);
            transform: translateY(-2px);
        }
.legal-hero h1 {
                font-size: 1.8rem;
            }
.legal-card {
                padding: 24px;
            }
.legal-card h2 {
                font-size: 1.2rem;
            }

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