:root {
      --primary: #e50914;
      --accent: #f5c518;
      --bg: #0b0b0f;
      --text: #f5f5f7;
      --border: #2c2c35;
      --muted: #a0a0b0;
    }
    * { font-family: 'Inter', sans-serif; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-weight: 400;
      letter-spacing: 0.01em;
    }
    h1,h2,h3,h4,.display-title { font-weight: 900; letter-spacing: -0.02em; }
    .navbar { background: rgba(11,11,15,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
    .navbar-brand { font-weight: 900; font-size: 1.5rem; color: var(--text) !important; }
    .navbar-brand i { color: var(--accent); margin-right: 6px; }
    .nav-link { color: var(--text) !important; font-weight: 500; margin: 0 0.4rem; }
    .nav-link:hover { color: var(--accent) !important; }
    .hero-section { border-bottom: 2px solid var(--border); padding: 4rem 0 3rem; background: radial-gradient(circle at 20% 30%, rgba(229,9,20,0.1), transparent 50%); }
    .btn-glow { position: relative; overflow: hidden; transition: all 0.3s; }
    .btn-glow::after { content:''; position: absolute; top:0; left:-80%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.3), transparent); transform: skewX(-20deg); transition: left 0.4s; }
    .btn-glow:hover::after { left: 120%; }
    .btn-primary-custom { background: var(--primary); border: none; color:#fff; font-weight:700; }
    .btn-outline-custom { border: 1px solid var(--border); color: var(--text); background: transparent; }
    .btn-outline-custom:hover { border-color: var(--accent); color: var(--accent); }
    .section-title { font-weight: 800; font-size: 1.8rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
    .section-title i { color: var(--accent); }
    .card-movie { background: transparent; border: 1px solid var(--border); border-radius: 0; overflow: hidden; transition: 0.2s; cursor: pointer; height: 100%; display: flex; flex-direction: column; }
    .card-movie:hover { border-color: var(--accent); }
    .card-movie img { width: 100%; aspect-ratio: 2/3; object-fit: cover; background: #1a1a22; }
    .card-body { padding: 0.65rem; }
    .movie-title { font-weight: 700; font-size: 0.95rem; line-height: 1.3; }
    .movie-meta { font-size: 0.75rem; color: var(--muted); display: flex; justify-content: space-between; margin-top: 0.3rem; }
    .score-badge { background: var(--accent); color: #000; font-weight: 800; padding: 0 5px; border-radius: 2px; font-size: 0.8rem; }
    .rank-badge { font-weight: 900; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 0.8rem; margin-right: 6px; }
    .rank-1 { background: #f5c518; color:#000; }
    .rank-2 { background: #b4b4b4; color:#000; }
    .rank-3 { background: #cd7f32; color:#000; }
    .rank-other { background: #333; color: #ccc; }
    .tag-capsule { display: inline-block; padding: 0.2rem 0.9rem; border: 1px solid var(--border); border-radius: 30px; font-size: 0.8rem; margin: 0.2rem 0.2rem; transition: 0.15s; cursor: pointer; color: var(--text); }
    .tag-capsule:hover { border-color: var(--accent); color: var(--accent); }
    .accordion-button { background: transparent; color: var(--text); font-weight: 600; border-bottom: 1px solid var(--border); }
    .accordion-button:not(.collapsed) { color: var(--accent); background: rgba(245,197,24,0.03); }
    .accordion-button:focus { box-shadow: none; }
    .accordion-item { background: transparent; border: none; border-bottom: 1px solid var(--border); }
    .footer-links { border-top: 1px solid var(--border); margin-top: 4rem; }
    .footer-links a { color: var(--muted); text-decoration: none; }
    .footer-links a:hover { color: var(--accent); }
    .mono-num { font-family: 'Courier New', monospace; font-weight: 700; }
    /* 弹窗 */
    .movie-modal { display: none; position: fixed; inset: 0; z-index: 1050; background: rgba(0,0,0,0.7); backdrop-filter: blur(12px); justify-content: center; align-items: center; padding: 1rem; }
    .movie-modal.active { display: flex; }
    .modal-content-card { background: var(--bg); border: 1px solid var(--border); max-width: 600px; width: 100%; padding: 2rem; position: relative; }
    .modal-close { position: absolute; top: 12px; right: 18px; font-size: 2rem; cursor: pointer; color: var(--muted); background: none; border: none; }
    .modal-title { font-size: 1.8rem; font-weight: 900; }
    .modal-info { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1rem 0; }
    .modal-score { color: var(--accent); font-size: 2rem; font-weight: 900; }
    .movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.8rem; }
    .stat-number { font-size: 2.2rem; font-weight: 800; color: var(--accent); }
    .faq-bg { border-left: 3px solid var(--primary); padding-left: 1rem; }
    /* 入场动画 */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    @media (max-width: 768px) { .hero-section { padding: 2.5rem 0; } .section-title { font-size: 1.4rem; } }

/* --- 子页面追加 --- */
/* 本页专属微调 */
    .about-hero {
      padding: 80px 0 50px;
      background: linear-gradient(180deg, rgba(229,9,20,0.12) 0%, rgba(11,11,15,0) 70%);
      border-bottom: 1px solid var(--border);
    }
.about-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 30px;
      margin-bottom: 30px;
      transition: border-color 0.3s ease;
    }
.about-card:hover {
      border-color: var(--primary);
    }
.about-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.about-card h2 i {
      color: var(--accent);
      font-size: 1.3rem;
    }
.about-card p, .about-card li {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.95rem;
    }
.about-card ul {
      padding-left: 20px;
    }
.about-card strong {
      color: var(--text);
    }
.stat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 20px 0;
    }
.stat-item {
      background: rgba(229,9,20,0.08);
      border: 1px solid rgba(229,9,20,0.25);
      border-radius: 10px;
      padding: 16px 22px;
      text-align: center;
      flex: 1;
      min-width: 120px;
    }
.stat-item .num {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--primary);
      font-family: 'Inter', sans-serif;
    }
.stat-item .label {
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: 4px;
    }
.value-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }
.value-tag {
      background: rgba(245,197,24,0.1);
      border: 1px solid rgba(245,197,24,0.3);
      color: var(--accent);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
    }
.about-hero { padding: 50px 0 30px; }
.about-card { padding: 20px; }

/* --- 子页面追加 --- */
/* 本页专属样式 —— 免责声明页面 */
        .disclaimer-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 11, 15, 0.9) 70%);
            border-bottom: 1px solid var(--border);
        }
.disclaimer-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
        }
.disclaimer-hero h1 span {
            color: var(--primary);
        }
.disclaimer-hero p {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 800px;
        }
.disclaimer-section {
            padding: 40px 0;
        }
.disclaimer-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
.disclaimer-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(229, 9, 20, 0.15);
        }
.disclaimer-card h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-card h2 i {
            color: var(--accent);
        }
.disclaimer-card p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 15px;
        }
.disclaimer-card ul {
            padding-left: 20px;
            color: var(--muted);
            line-height: 2;
        }
.disclaimer-card ul li {
            margin-bottom: 8px;
        }
.disclaimer-card ul li::marker {
            color: var(--accent);
        }
.disclaimer-card strong {
            color: var(--text);
        }
.disclaimer-card a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }
.disclaimer-card a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
.update-date {
            color: var(--muted);
            font-size: 0.9rem;
            text-align: right;
            margin-top: 20px;
            border-top: 1px solid var(--border);
            padding-top: 15px;
        }
.disclaimer-hero h1 {
                font-size: 1.8rem;
            }
.disclaimer-card {
                padding: 20px;
            }
.disclaimer-card h2 {
                font-size: 1.3rem;
            }

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