:root {
      --primary: #e50914;
      --accent: #f5c518;
      --bg-dark: #0b0b0f;
      --text-light: #f5f5f7;
      --border-dark: #26262e;
      --shadow-hard: 8px 8px 0px 0px rgba(0,0,0,0.9);
    }
    * { border-radius: 0 !important; }
    body {
      background-color: var(--bg-dark);
      color: var(--text-light);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      letter-spacing: 0.2px;
      line-height: 1.7;
    }
    h1, h2, h3, h4, h5 { font-weight: 800; color: #fff; letter-spacing: -0.02em; }
    .navbar {
      background: #0e0e13;
      border-bottom: 3px solid var(--primary);
      box-shadow: var(--shadow-hard);
      padding: 0.7rem 1rem;
    }
    .navbar-brand { font-weight: 900; font-size: 1.9rem; color: var(--text-light) !important; }
    .navbar-brand i { color: var(--accent); margin-right: 8px; }
    .nav-link { color: #ccc !important; font-weight: 600; margin: 0 10px; }
    .nav-link:hover { color: var(--accent) !important; }
    .btn-hard {
      background: var(--primary);
      color: #fff;
      border: 2px solid #000;
      box-shadow: 5px 5px 0 #000;
      font-weight: 700;
      padding: 8px 24px;
      transition: all 0.2s;
    }
    .btn-hard:hover {
      background: #ff1a1f;
      box-shadow: 2px 2px 0 #000;
      transform: translate(3px,3px);
      color: #fff;
    }
    .section-title {
      border-left: 8px solid var(--accent);
      padding-left: 20px;
      margin: 50px 0 25px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .movie-card {
      background: #12121a;
      border: 2px solid #1f1f28;
      box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      height: 100%;
    }
    .movie-card:hover {
      transform: translate(-3px, -3px);
      box-shadow: 12px 12px 0 rgba(0,0,0,0.6);
      border-color: var(--accent);
    }
    .movie-card img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      display: block;
      background: #2a2a35;
    }
    .card-body { padding: 12px; }
    .card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .meta-text { font-size: 0.8rem; color: #aaa; display: flex; justify-content: space-between; }
    .rating { color: var(--accent); font-weight: 800; }
    .badge-soft { background: #1f1f28; color: #ddd; padding: 2px 8px; font-weight: 500; border: 1px solid #333; }
    .movie-section { overflow-x: auto; flex-wrap: nowrap; display: flex; gap: 16px; padding-bottom: 15px; }
    .movie-section .movie-card { min-width: 160px; flex: 0 0 auto; }
    .hero-stats {
      background: linear-gradient(145deg, #12121a 0%, #0b0b0f 100%);
      border: 3px solid #1e1e28;
      padding: 40px 0;
      margin: 20px 0 30px;
      box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
    }
    .stat-item h2 { font-size: 3.2rem; color: var(--accent); font-weight: 900; }
    .stat-item p { font-weight: 600; color: #ccc; }
    .rank-number { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
    .topic-card { background: #16161f; border: 2px solid #2c2c3a; padding: 20px; box-shadow: 6px 6px 0 #000; }
    .topic-card i { color: var(--accent); font-size: 2rem; margin-bottom: 10px; }
    .faq-item, .tip-item { background: #131319; border-left: 4px solid var(--primary); padding: 18px 20px; margin-bottom: 15px; box-shadow: 4px 4px 0 rgba(0,0,0,0.6); }
    footer {
      background: #08080c;
      border-top: 4px solid var(--primary);
      padding: 40px 0;
      margin-top: 50px;
    }
    .footer-link a { color: #aaa; text-decoration: none; margin-right: 25px; }
    .footer-link a:hover { color: var(--accent); }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      color: #fff;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 6px 6px 0 #000;
      border: 2px solid #000;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 99;
      cursor: pointer;
    }
    .back-to-top.show { opacity: 1; visibility: visible; }
    /* parallax hero */
    .hero-parallax {
      background-image: url('{随机图片}');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      min-height: 280px;
      border-bottom: 4px solid var(--accent);
    }
    .hero-overlay {
      background: rgba(0,0,0,0.7);
      padding: 50px 0;
      backdrop-filter: blur(2px);
    }
    /* 影片浮层 */
    .poster-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
      opacity: 0;
      transition: 0.3s;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 15px;
    }
    .movie-card:hover .poster-overlay { opacity: 1; }
    .play-btn { background: var(--primary); color: white; border-radius: 0; padding: 10px 20px; font-weight: bold; border: 2px solid #000; box-shadow: 4px 4px 0 #000; }
    .modal-content-dark { background: #12121a; color: #eee; border: 3px solid #333; border-radius: 0; box-shadow: 12px 12px 0 #000; }
    .modal-backdrop.show { opacity: 0.8; }

/* --- 子页面追加 --- */
/* 本页专属微调：覆盖bootstrap组件配色，并保持桃花视频风格 */
        .card, .card-body, .card-header, .card-footer, .form-control, .list-group-item, .accordion-item, .accordion-button {
            background: var(--bg-dark) !important;
            color: var(--text-light) !important;
            border-color: var(--border-dark) !important;
        }
.navbar, .navbar-brand, .nav-link {
            background: transparent !important;
            color: var(--text-light) !important;
        }
.navbar-toggler {
            border-color: var(--accent) !important;
        }
.accordion-button:not(.collapsed) {
            background: rgba(245,197,24,0.1) !important;
            color: var(--accent) !important;
        }
.accordion-button::after {
            filter: invert(1);
        }
.btn-outline-custom {
            border: 1px solid var(--accent);
            color: var(--accent);
            background: transparent;
        }
.btn-outline-custom:hover {
            background: var(--accent);
            color: #0b0b0f;
        }
.table {
            --bs-table-bg: transparent;
            --bs-table-color: var(--text-light);
            --bs-table-border-color: var(--border-dark);
        }
.table td, .table th {
            border-color: var(--border-dark);
        }
.stat-block {
            background: var(--bg-dark);
            border: 1px solid var(--border-dark);
            padding: 1.5rem 1rem;
            border-radius: 12px;
            box-shadow: var(--shadow-hard);
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }
.stat-label {
            color: var(--text-light);
            opacity: 0.8;
            margin-top: 0.4rem;
            font-size: 0.9rem;
        }
.about-hero {
            background: linear-gradient(145deg, rgba(229,9,20,0.15) 0%, rgba(11,11,15,1) 70%);
            border-bottom: 1px solid var(--border-dark);
        }
.text-accent {
            color: var(--accent);
        }
.border-soft {
            border: 1px solid var(--border-dark);
        }
.back-to-top:hover {
            transform: translateY(-3px);
            background: #ff2c36;
        }

/* --- 子页面追加 --- */
/* 确保任何bootstrap组件都不会出现白底黑字 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .form-label, .input-group-text,
        .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
        .nav-link, .navbar, .navbar-brand, .btn-light, .btn-outline-* {
            background-color: transparent;
            color: var(--text-light);
            border-color: var(--border-dark);
        }
/* 自定义覆盖bootstrap卡片 */
        .card {
            background: var(--bg-dark);
            border: 1px solid var(--border-dark);
            box-shadow: var(--shadow-hard);
        }
/* 手风琴/列表覆盖 */
        .accordion-button:not(.collapsed) {
            background: rgba(229, 9, 20, 0.15);
            color: var(--accent);
        }
/* 链接高亮 */
        a {
            color: var(--accent);
        }
/* 导航栏当前页高亮（用accent色下划线） */
        .nav-link.active-nav {
            color: var(--accent) !important;
            border-bottom: 2px solid var(--accent);
        }
/* 小标题带图标 */
        .section-title i {
            color: var(--accent);
            margin-right: 10px;
        }
/* 免责声明正文卡片间距 */
        .disclaimer-card {
            background: rgba(11, 11, 15, 0.6);
            border-left: 4px solid var(--primary);
            border-radius: 0 12px 12px 0;
            padding: 2rem 1.5rem;
            margin-bottom: 2rem;
        }
.disclaimer-card h3 {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--text-light);
            opacity: 0.9;
            line-height: 1.8;
        }
.footer-links a {
            margin-right: 15px;
            opacity: 0.8;
        }
.footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }
/* 高亮免责声明中的品牌名 */
        .brand-highlight {
            color: var(--accent);
            font-weight: 600;
        }

/* --- 子页面追加 --- */
.ranking-page { padding: 40px 0 60px; }
.rank-header { margin-bottom: 40px; }
.rank-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.rank-tab-btn { padding: 10px 24px; border: 2px solid var(--border-dark); background: rgba(255,255,255,0.05); color: var(--text-light); font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.3s; }
.rank-tab-btn:hover, .rank-tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.rank-item { display: flex; align-items: center; padding: 16px; margin-bottom: 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: 10px; transition: all 0.3s; }
.rank-item:hover { transform: translateX(6px); border-color: var(--primary); }
.rank-number.top-1 { font-size: 36px; color: var(--primary); }
.rank-number.top-2 { font-size: 32px; color: #ff6b6b; }
.rank-number.top-3 { font-size: 30px; color: #ffa94d; }
.rank-info { flex: 1; padding: 0 16px; }
.rank-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text-light); }
.rank-meta { font-size: 14px; color: rgba(255,255,255,0.6); }
.rank-score { display: flex; align-items: center; gap: 8px; }
.rank-score i { color: var(--accent); }
.trending-up { color: #51cf66; }
.trending-down { color: #ff6b6b; }
.rank-badge { background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.rank-badge.accent { background: var(--accent); color: #000; }
.rank-note { background: rgba(229, 9, 20, 0.1); border: 1px solid rgba(229, 9, 20, 0.3); padding: 16px 20px; border-radius: 10px; margin-top: 30px; }
.rank-number.top-1 { font-size: 28px; }
.rank-title { font-size: 16px; }
.rank-item { padding: 12px; }

/* --- 子页面追加 --- */
/* 页面专属微调——仅补充指南页特有布局，不改动站点全局变量 */
    .guide-hero {
      background: linear-gradient(145deg, var(--bg-dark) 0%, #1a1a22 100%);
      border-bottom: 2px solid var(--border-dark);
      padding: 3.5rem 0 2.5rem;
    }
.guide-step {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border-dark);
      border-radius: 18px;
      padding: 1.8rem 1.5rem;
      height: 100%;
      transition: transform .2s, border-color .2s;
    }
.guide-step:hover {
      transform: translateY(-4px);
      border-color: var(--accent);
    }
.guide-step .step-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
      opacity: .8;
      line-height: 1;
      margin-bottom: .5rem;
    }
.guide-step h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: .6rem;
    }
.guide-step p {
      color: rgba(245,245,247,0.75);
      font-size: .9rem;
      margin-bottom: 0;
    }
.guide-tip {
      background: rgba(245,197,24,0.06);
      border-left: 4px solid var(--accent);
      padding: 1rem 1.4rem;
      border-radius: 0 12px 12px 0;
      margin: 2rem 0;
    }
.guide-tip i {
      color: var(--accent);
      margin-right: .4rem;
    }
.table-guide {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 .5rem;
    }
.table-guide td {
      background: rgba(255,255,255,0.02);
      padding: .9rem 1rem;
      border: 1px solid var(--border-dark);
      border-radius: 10px;
      color: var(--text-light);
      font-size: .9rem;
    }
.table-guide td:first-child {
      font-weight: 600;
      width: 30%;
      border-right: none;
      border-radius: 10px 0 0 10px;
    }
.table-guide td:last-child {
      border-radius: 0 10px 10px 0;
      color: rgba(245,245,247,0.8);
    }
.faq-item {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border-dark);
      border-radius: 14px;
      padding: 1.2rem 1.5rem;
      margin-bottom: 1rem;
    }
.faq-item h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: .5rem;
    }
.faq-item p {
      color: rgba(245,245,247,0.7);
      font-size: .9rem;
      margin: 0;
    }

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