:root {
      --primary: #e50914;
      --accent: #f5c518;
      --bg: #0b0b0f;
      --text: #f5f5f7;
      --text-dim: #a0a0b0;
      --border: #2a2a35;
      --card-bg: #14141c;
    }
    * { scroll-behavior: smooth; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
      font-size: 14px;
      line-height: 1.5;
      letter-spacing: 0.2px;
    }
    /* 滚动进度条 */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: var(--accent);
      z-index: 9999;
      transition: width 0.1s ease;
      box-shadow: 0 0 8px rgba(245,197,24,0.7);
    }
    /* 极简无阴影，描边分割 */
    .navbar, .section-block, .footer-area {
      border-bottom: 1px solid var(--border);
    }
    .navbar {
      background: rgba(11,11,15,0.85);
      backdrop-filter: blur(12px);
      padding: 12px 0;
      font-weight: 500;
    }
    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--primary) !important;
      letter-spacing: 1px;
      font-family: 'Inter', cursive;
    }
    .navbar-brand i { color: var(--accent); margin-right: 8px; }
    .nav-link {
      color: var(--text) !important;
      margin: 0 10px;
      font-weight: 500;
      transition: 0.2s;
      border-bottom: 2px solid transparent;
    }
    .nav-link:hover { color: var(--accent) !important; border-bottom-color: var(--accent); }
    .btn-outline-accent {
      border: 1px solid var(--accent);
      color: var(--accent);
      background: transparent;
    }
    .btn-outline-accent:hover { background: var(--accent); color: #000; }
    .hero-stats {
      background: #0f0f16;
      border-bottom: 1px solid var(--border);
      padding: 32px 0 24px;
    }
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--accent);
      font-family: 'Inter', sans-serif;
      line-height: 1;
    }
    .stat-label { color: var(--text-dim); font-size: 0.85rem; letter-spacing: 0.5px; }
    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 28px 0 18px;
      border-left: 6px solid var(--primary);
      padding-left: 15px;
      letter-spacing: -0.3px;
    }
    .section-title i { color: var(--accent); margin-right: 8px; }
    .film-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.3s;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: none;
    }
    .film-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 24px rgba(229,9,20,0.18), 0 4px 12px rgba(245,197,24,0.08);
      border-color: #3a3a4a;
    }
    .poster-wrap {
      position: relative;
      aspect-ratio: 2/3;
      background: #1e1e28;
      overflow: hidden;
    }
    .poster-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .badge-hd {
      position: absolute;
      top: 8px; right: 8px;
      background: rgba(0,0,0,0.7);
      color: var(--accent);
      font-size: 10px;
      font-weight: 700;
      padding: 3px 6px;
      border-radius: 4px;
      backdrop-filter: blur(4px);
      border: 1px solid var(--accent);
    }
    .card-body-custom {
      padding: 10px 12px 12px;
      flex: 1;
    }
    .film-title {
      font-weight: 600;
      font-size: 0.95rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #fff;
      margin-bottom: 4px;
    }
    .film-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .film-rating i { color: var(--accent); margin-right: 3px; }
    .horizontal-scroll {
      display: flex;
      overflow-x: auto;
      gap: 16px;
      padding-bottom: 12px;
      scrollbar-width: thin;
      scrollbar-color: var(--primary) #222;
    }
    .horizontal-scroll::-webkit-scrollbar { height: 4px; }
    .horizontal-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }
    .card-min-width { min-width: 160px; flex: 0 0 160px; }
    .ranking-list {
      list-style: none;
      padding: 0;
      counter-reset: rank;
    }
    .ranking-list li {
      counter-increment: rank;
      border-bottom: 1px dashed var(--border);
      padding: 12px 4px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .ranking-list li::before {
      content: counter(rank);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
      width: 32px;
      text-align: center;
      font-family: 'Inter', sans-serif;
    }
    .ranking-list li:nth-child(-n+3)::before { color: var(--accent); }
    .ranking-title { font-weight: 600; flex: 1; }
    .ranking-score { font-weight: 700; color: var(--accent); }
    .steps-container {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 30px 0;
    }
    .step-item {
      background: #101018;
      border: 1px solid var(--border);
      padding: 20px 18px;
      flex: 1 1 180px;
      border-radius: 12px;
    }
    .step-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--primary);
    }
    .step-desc { color: var(--text-dim); font-size: 0.9rem; }
    .mood-tags .badge {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      padding: 8px 16px;
      font-size: 0.9rem;
      margin-right: 12px;
      transition: 0.2s;
      cursor: default;
    }
    .mood-tags .badge:hover { background: var(--accent); color: #000; }
    .footer-links a {
      color: var(--text-dim);
      text-decoration: none;
      margin: 0 14px;
      font-size: 0.9rem;
    }
    .footer-links a:hover { color: var(--accent); }
    .copyright { border-top: 1px solid var(--border); padding: 20px 0; color: var(--text-dim); }
    /* 弹窗全屏沉浸 */
    .modal-full {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(12px);
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    .modal-backdrop-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: blur(28px) brightness(0.35);
      z-index: -1;
    }
    .modal-content-card {
      background: rgba(20,20,28,0.7);
      border: 1px solid var(--border);
      max-width: 620px;
      width: 100%;
      border-radius: 20px;
      padding: 24px;
      position: relative;
      z-index: 2;
      color: #fff;
      box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    }
    .modal-close {
      position: absolute;
      top: 12px; right: 16px;
      font-size: 2rem;
      color: var(--text-dim);
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
    }
    .modal-close:hover { color: var(--primary); }

/* --- 子页面追加 --- */
/* 本页仅少量定制，不覆盖全局变量 */
        .rank-hero { border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.rank-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 2rem; }
.rank-tab-btn { background: var(--card-bg); color: var(--text-dim); border: 1px solid var(--border); padding: .4rem 1.2rem; border-radius: 30px; font-size: .9rem; transition: all .2s; }
.rank-tab-btn:hover, .rank-tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.rank-section-title { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; display: flex; align-items: center; gap: .6rem; margin-top: 2.2rem; margin-bottom: 1rem; color: var(--text); }
.rank-section-title i { color: var(--accent); }
.list-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem 1.4rem; transition: transform .2s; }
.list-card:hover { transform: translateY(-2px); }
.rank-item { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.rank-item:last-child { border-bottom: none; }
.rank-number { font-weight: 900; font-size: 1.4rem; width: 2.2rem; text-align: center; color: var(--accent); font-style: italic; }
.rank-poster { width: 52px; height: 72px; object-fit: cover; border-radius: 8px; background: #1e1e28; flex-shrink: 0; }
.rank-info { flex: 1; min-width: 0; }
.rank-name { font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-desc { font-size: .8rem; color: var(--text-dim); display: flex; gap: 1rem; margin-top: 2px; }
.rank-score { font-weight: 800; color: var(--accent); font-size: 1.1rem; margin-left: auto; }
.badge-tag { background: rgba(245,197,24,.15); color: var(--accent); border-radius: 30px; font-size: .7rem; padding: .15rem .7rem; }
.trend-up { color: #f05454; font-size: .8rem; }
.trend-down { color: #51a884; font-size: .8rem; }
.movie-stats { font-size: .8rem; color: var(--text-dim); }
.note-box { background: rgba(245,197,24,.06); border-left: 3px solid var(--accent); padding: .8rem 1.2rem; border-radius: 0 10px 10px 0; margin: 2rem 0; }

/* --- 子页面追加 --- */
.about-hero {
            padding: 60px 0 30px;
            border-bottom: 1px solid var(--border);
        }
.about-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.3;
        }
.about-hero h1 span {
            color: var(--primary);
        }
.about-hero .lead {
            color: var(--text-dim);
            font-size: 1.1rem;
            max-width: 720px;
        }
.about-section {
            padding: 45px 0;
            border-bottom: 1px solid var(--border);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.about-section h2 i {
            color: var(--accent);
            font-size: 1.3rem;
        }
.about-section p {
            color: var(--text-dim);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 14px;
        }
.about-section .highlight {
            color: var(--text);
            font-weight: 500;
        }
.value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 24px;
        }
.value-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px 20px;
            transition: transform .2s ease, border-color .2s ease;
        }
.value-item:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }
.value-item i {
            font-size: 1.6rem;
            color: var(--accent);
            margin-bottom: 14px;
            display: block;
        }
.value-item h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }
.value-item p {
            font-size: 0.88rem;
            color: var(--text-dim);
            line-height: 1.6;
            margin-bottom: 0;
        }
.timeline-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
        }
.timeline-list li {
            padding: 10px 0;
            border-left: 3px solid var(--primary);
            padding-left: 20px;
            margin-bottom: 6px;
            color: var(--text-dim);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.timeline-list li strong {
            color: var(--text);
            font-weight: 600;
            margin-right: 8px;
        }
.timeline-list li .badge-daily {
            background: rgba(229, 9, 20, 0.15);
            color: var(--primary);
            font-size: 0.75rem;
            padding: 2px 10px;
            border-radius: 20px;
            margin-left: 8px;
            font-weight: 600;
        }
.tech-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }
.tech-tag {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: 6px 18px;
            font-size: 0.85rem;
            color: var(--text-dim);
            font-weight: 500;
        }
.tech-tag i {
            color: var(--accent);
            margin-right: 6px;
            font-size: 0.8rem;
        }
.about-cta {
            background: linear-gradient(135deg, rgba(229,9,20,0.08) 0%, rgba(245,197,24,0.04) 100%);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 32px 30px;
            margin: 30px 0 0;
            text-align: center;
        }
.about-cta h3 {
            color: var(--text);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
.about-cta p {
            color: var(--text-dim);
            font-size: 0.92rem;
            margin-bottom: 18px;
        }
.about-cta .btn-outline-accent {
            padding: 8px 28px;
            font-weight: 600;
        }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-section h2 {
                font-size: 1.4rem;
            }
.value-grid {
                grid-template-columns: 1fr;
            }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 3rem 0 4rem;
        }
.disclaimer-hero {
            background: linear-gradient(135deg, rgba(229,9,20,.08) 0%, rgba(11,11,15,.9) 60%);
            border-left: 4px solid var(--primary);
            padding: 2.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin-bottom: 2.5rem;
        }
.disclaimer-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: .8rem;
            letter-spacing: .5px;
        }
.disclaimer-hero h1 span {
            color: var(--accent);
        }
.disclaimer-hero p {
            color: var(--text-dim);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: .3rem;
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem 2rem;
            margin-bottom: 1.5rem;
            transition: border-color .3s ease;
        }
.disclaimer-section:hover {
            border-color: rgba(229,9,14,.4);
        }
.disclaimer-section h2 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: .6rem;
        }
.disclaimer-section h2 i {
            color: var(--primary);
            font-size: 1.1rem;
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text-dim);
            font-size: .95rem;
            line-height: 1.75;
        }
.disclaimer-section ul {
            padding-left: 1.2rem;
            margin-bottom: 0;
        }
.disclaimer-section li {
            margin-bottom: .5rem;
        }
.disclaimer-section strong {
            color: var(--text);
            font-weight: 600;
        }
.highlight-box {
            background: rgba(229,9,14,.06);
            border: 1px solid rgba(229,9,14,.2);
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin-top: 1rem;
            font-size: .9rem;
            color: var(--text-dim);
        }
.highlight-box i {
            color: var(--primary);
            margin-right: .4rem;
        }
.last-updated {
            text-align: right;
            color: var(--text-dim);
            font-size: .85rem;
            margin-top: 2rem;
            opacity: .7;
        }
.disclaimer-hero { padding: 1.8rem 1.2rem; }
.disclaimer-hero h1 { font-size: 1.6rem; }
.disclaimer-section { padding: 1.5rem 1.2rem; }
.disclaimer-section h2 { font-size: 1.15rem; }

/* --- 子页面追加 --- */
/* 本页专属样式 - 隐私页面 */
        .privacy-hero {
            padding: 4rem 0 2rem;
            border-bottom: 1px solid var(--border);
        }
.privacy-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.privacy-hero p {
            color: var(--text-dim);
            font-size: 1rem;
            max-width: 800px;
        }
.privacy-section {
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--border);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1.2rem;
            padding-left: 1rem;
            border-left: 3px solid var(--primary);
        }
.privacy-section h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin: 1.2rem 0 0.8rem;
        }
.privacy-section p {
            color: var(--text-dim);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
.privacy-list {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.privacy-list li {
            color: var(--text-dim);
            line-height: 1.8;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
.privacy-box {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
.privacy-box p:last-child {
            margin-bottom: 0;
        }
.privacy-hero h1 {
                font-size: 1.8rem;
            }
.privacy-section h2 {
                font-size: 1.3rem;
            }