:root {
      --primary: #f97316;
      --accent: #facc15;
      --bg-dark: #1a1410;
      --text-light: #fff7ed;
      --card-shadow: 0 10px 20px rgba(0,0,0,0.7), 0 4px 8px rgba(0,0,0,0.5);
      --card-hover-shadow: 0 18px 30px rgba(0,0,0,0.85), 0 8px 16px rgba(0,0,0,0.6);
      --gradient-gold: linear-gradient(145deg, #facc15 0%, #f97316 100%);
    }
    * { box-sizing: border-box; }
    body {
      background: var(--bg-dark);
      color: var(--text-light);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      line-height: 1.7;
      letter-spacing: 0.01em;
    }
    h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.02em; }
    a { text-decoration: none; color: inherit; }

    /* 拟物厚重感 */
    .hero-stats, .category-pill, .movie-card, .ranking-badge, .section-title, .faq-item, .footer-box {
      box-shadow: var(--card-shadow);
    }

    /* 导航 */
    .navbar-custom {
      background: rgba(26, 20, 16, 0.95);
      backdrop-filter: blur(6px);
      border-bottom: 2px solid var(--primary);
      padding: 0.8rem 0;
    }
    .navbar-brand {
      font-size: 1.7rem;
      font-weight: 900;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-right: 2rem;
      letter-spacing: -0.5px;
    }
    .navbar-custom .nav-link {
      color: var(--text-light);
      font-weight: 500;
      margin: 0 0.4rem;
      transition: 0.2s;
      font-size: 1.1rem;
    }
    .navbar-custom .nav-link:hover { color: var(--accent); }

    /* Hero 数字统计 */
    .hero-stats {
      background: linear-gradient(135deg, #2a1f1a 0%, #1a1410 80%);
      border-radius: 2rem;
      padding: 2.5rem 2rem;
      margin: 2rem 0;
      border-left: 6px solid var(--primary);
    }
    .stat-number { 
      font-size: 3.2rem; 
      font-weight: 900; 
      color: var(--accent);
      line-height: 1;
    }
    .stat-label { color: #d1c5b8; font-weight: 500; }

    /* 分类胶囊 */
    .category-pill {
      background: #2a221e;
      border-radius: 3rem;
      padding: 0.8rem 1.8rem;
      font-weight: 600;
      color: var(--text-light);
      border: 1px solid #3d332c;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .category-pill:hover { background: var(--primary); color: #1a1410; transform: translateY(-2px); }

    /* 影片卡片 */
    .movie-card {
      background: #26201b;
      border-radius: 1.5rem;
      overflow: hidden;
      transition: all 0.25s ease;
      cursor: pointer;
      border: 1px solid #3e332b;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .movie-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-hover-shadow);
      border-color: var(--primary);
    }
    .movie-poster {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      background: #3d322b;
    }
    .movie-info { padding: 1rem 0.9rem 1.2rem; flex: 1; }
    .movie-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.3rem; }
    .movie-meta { color: #b3a296; font-size: 0.8rem; }
    .rating { color: var(--accent); font-weight: 700; }
    .badge-type { background: var(--primary); color: #1a1410; border-radius: 2rem; padding: 0.1rem 0.8rem; font-size: 0.7rem; font-weight: 700; }

    /* 排行榜奖牌 */
    .rank-item { 
      background: #221c17; 
      border-radius: 1rem; 
      padding: 0.6rem 1rem; 
      margin-bottom: 0.7rem;
      border-left: 5px solid #4a3f36;
      transition: 0.2s;
    }
    .rank-item:hover { background: #2d251f; border-left-color: var(--primary); }
    .medal { font-size: 1.6rem; margin-right: 0.8rem; width: 2rem; text-align: center; }
    .rank-1 .medal { color: gold; text-shadow: 0 0 10px rgba(250,204,21,0.7); }
    .rank-2 .medal { color: silver; text-shadow: 0 0 8px rgba(192,192,192,0.7); }
    .rank-3 .medal { color: #cd7f32; text-shadow: 0 0 8px rgba(205,127,50,0.7); }

    /* 区块标题 */
    .section-title {
      display: inline-block;
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 900;
      font-size: 1.9rem;
      margin-bottom: 1.8rem;
      border-bottom: 3px solid var(--primary);
      padding-bottom: 0.3rem;
    }

    /* 弹窗 */
    .modal-mask {
      position: fixed; top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.75); backdrop-filter: blur(3px);
      display: none; align-items: center; justify-content: center; z-index: 9999;
    }
    .modal-mask.show { display: flex; }
    .modal-card {
      background: #fff7ed; color: #1a1410;
      max-width: 800px; width: 90%; border-radius: 2rem;
      box-shadow: 0 30px 60px rgba(0,0,0,0.7);
      display: flex; flex-wrap: wrap; overflow: hidden;
      position: relative;
    }
    .modal-card img { width: 260px; max-width: 100%; object-fit: cover; }
    .modal-content { padding: 1.8rem; flex: 1; min-width: 240px; }
    .close-btn { position: absolute; top: 15px; right: 20px; font-size: 2.2rem; color: #1a1410; background: none; border: none; cursor: pointer; font-weight: 700; }
    .modal-content h3 { font-weight: 800; margin-bottom: 0.5rem; }
    .modal-content p { margin-bottom: 0.4rem; }

    /* 对比表格 */
    .compare-table { background: #221b16; border-radius: 1.5rem; padding: 1.5rem; }
    .compare-table table { width: 100%; color: var(--text-light); }
    .compare-table td, .compare-table th { padding: 0.8rem; border-bottom: 1px solid #3f352e; }
    .compare-table th { color: var(--accent); font-weight: 700; }

    /* 编号清单 */
    .step-list { counter-reset: step; }
    .step-item { counter-increment: step; margin-bottom: 0.8rem; padding-left: 2.2rem; position: relative; }
    .step-item::before {
      content: counter(step);
      position: absolute; left: 0; top: 0;
      width: 1.6rem; height: 1.6rem;
      background: var(--primary); color: #1a1410;
      border-radius: 50%; text-align: center; font-weight: 800; font-size: 0.9rem;
      display: flex; align-items: center; justify-content: center;
    }

    .footer-custom {
      background: #12100e;
      border-top: 3px solid var(--primary);
      padding: 2.5rem 0 1.5rem;
      margin-top: 4rem;
    }
    .friend-links {
      background: #201b16;
      border-radius: 1rem;
      padding: 1.8rem 1.5rem;
      margin: 2.5rem 0;
      border: 1px solid #3b3028;
    }
    .friend-links h5 { color: var(--accent); margin-bottom: 1rem; }

    /* 滚动渐显 */
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    @media (max-width: 768px) {
      .navbar-brand { font-size: 1.4rem; }
      .stat-number { font-size: 2.4rem; }
      .modal-card { flex-direction: column; }
      .modal-card img { width: 100%; max-height: 300px; }
    }

/* --- 子页面追加 --- */
/* 本页专属样式 - 关于我们页 */
        .about-hero {
            padding: 100px 0 60px;
            background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
            border-bottom: 1px solid rgba(249, 115, 22, 0.2);
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.3;
        }
.about-hero h1 .highlight {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.about-hero .lead {
            color: rgba(255, 247, 237, 0.75);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-section {
            padding: 70px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 30px;
            position: relative;
            padding-left: 18px;
        }
.about-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--gradient-gold);
            border-radius: 2px;
        }
.about-section p {
            color: rgba(255, 247, 237, 0.8);
            line-height: 1.9;
            font-size: 1.05rem;
            margin-bottom: 16px;
        }
.about-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 28px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-6px);
            border-color: rgba(249, 115, 22, 0.4);
            box-shadow: var(--card-hover-shadow);
        }
.about-card .icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #1a1410;
            margin-bottom: 18px;
        }
.about-card h4 {
            color: var(--text-light);
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 10px;
        }
.about-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
            color: rgba(255, 247, 237, 0.7);
        }
.timeline-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.timeline-list li {
            position: relative;
            padding: 20px 0 20px 40px;
            border-left: 2px solid rgba(249, 115, 22, 0.3);
            margin-left: 16px;
        }
.timeline-list li:last-child {
            border-left-color: transparent;
        }
.timeline-list li::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 26px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--gradient-gold);
            border: 2px solid #1a1410;
        }
.timeline-list .time {
            display: block;
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 6px;
        }
.timeline-list .desc {
            color: rgba(255, 247, 237, 0.75);
            line-height: 1.7;
            font-size: 0.98rem;
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.stat-highlight {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin: 30px 0;
            padding: 25px 30px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
.stat-highlight .stat-item {
            text-align: center;
        }
.stat-highlight .stat-num {
            font-size: 2rem;
            font-weight: 900;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.stat-highlight .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 247, 237, 0.6);
            margin-top: 4px;
        }
.feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
.feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
.feature-item i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
.feature-item span {
            color: rgba(255, 247, 237, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
        }

/* --- 子页面追加 --- */
/* 本页专属样式(合并进站点CSS) */
    .disclaimer-section { padding: 4rem 0; }
.disclaimer-card { background: rgba(0,0,0,0.35); border: 1px solid var(--border-color, rgba(249,115,22,0.15)); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.disclaimer-card h2 { color: var(--primary); font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.disclaimer-card h2 i { color: var(--accent); }
.disclaimer-card p { color: var(--text-light); opacity: 0.9; line-height: 1.8; }
.disclaimer-card ul { color: var(--text-light); opacity: 0.9; line-height: 1.8; padding-left: 1.5rem; }
.disclaimer-card li { margin-bottom: 0.5rem; }
.disclaimer-highlight { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }
.last-updated { color: var(--accent); font-size: 0.9rem; margin-top: 1.5rem; }
.disclaimer-badge { display: inline-block; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); color: var(--primary); padding: 0.25rem 1rem; border-radius: 20px; font-size: 0.85rem; margin-bottom: 1.5rem; }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(250,204,21,0.08) 50%, rgba(26,20,16,0.9) 100%), url(' {随机图片}
.genre-hero::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gradient-gold);
      opacity: 0.6;
    }
.genre-title {
      font-size: 3rem;
      font-weight: 900;
      color: var(--text-light);
      text-shadow: 0 4px 20px rgba(249,115,22,0.4);
      margin-bottom: 15px;
    }
.genre-subtitle {
      color: rgba(255,247,237,0.8);
      font-size: 1.1rem;
      max-width: 700px;
      line-height: 1.8;
    }
.genre-tags {
      margin-top: 25px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
.genre-tag {
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.4);
      color: var(--accent);
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }
.genre-tag:hover {
      background: rgba(249,115,22,0.3);
      border-color: var(--primary);
      color: var(--text-light);
      transform: translateY(-2px);
    }
.section-heading {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-light);
      margin-bottom: 30px;
      padding-left: 18px;
      border-left: 4px solid var(--primary);
      position: relative;
    }
.section-heading::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 18px;
      width: 60px;
      height: 2px;
      background: var(--gradient-gold);
      border-radius: 2px;
    }
.action-feature {
      background: rgba(249,115,22,0.05);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
.action-feature:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow);
      border-color: rgba(249,115,22,0.4);
    }
.feature-icon {
      font-size: 2.2rem;
      margin-bottom: 15px;
      display: inline-block;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
.feature-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 10px;
    }
.feature-desc {
      color: rgba(255,247,237,0.7);
      font-size: 0.95rem;
      line-height: 1.7;
    }
.pick-item {
      background: rgba(26,20,16,0.8);
      border: 1px solid rgba(249,115,22,0.2);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }
.pick-item:hover {
      border-color: var(--primary);
      box-shadow: var(--card-shadow);
      transform: translateX(5px);
    }
.pick-rank {
      font-size: 1.8rem;
      font-weight: 900;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-right: 15px;
      min-width: 50px;
    }
.pick-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 5px;
    }
.pick-meta {
      color: rgba(255,247,237,0.6);
      font-size: 0.9rem;
    }
.pick-desc {
      color: rgba(255,247,237,0.75);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-top: 8px;
    }
.style-card {
      background: rgba(26,20,16,0.7);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }
.style-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-hover-shadow);
      border-color: rgba(249,115,22,0.3);
    }
.style-header {
      padding: 15px 20px;
      background: rgba(249,115,22,0.1);
      border-bottom: 1px solid rgba(249,115,22,0.2);
      font-weight: 600;
      color: var(--accent);
    }
.style-body {
      padding: 20px;
      color: rgba(255,247,237,0.75);
      font-size: 0.9rem;
      line-height: 1.7;
    }
.action-tip {
      background: linear-gradient(145deg, rgba(249,115,22,0.15), rgba(250,204,21,0.1));
      border-left: 4px solid var(--primary);
      border-radius: 0 12px 12px 0;
      padding: 20px 25px;
      margin: 30px 0;
    }
.action-tip i {
      color: var(--accent);
      margin-right: 10px;
    }
.genre-title { font-size: 2.2rem; }
.section-heading { font-size: 1.5rem; }
.genre-hero { padding: 60px 0 40px; }

/* --- 子页面追加 --- */
/* 美剧页专用小修饰，维持整体风格 */
        .tv-hero-badge {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }
.tv-section-head {
            border-left: 4px solid var(--primary);
            padding-left: 1rem;
            margin-bottom: 2rem;
        }
.tv-pill {
            background: rgba(249, 115, 22, 0.15);
            color: var(--accent);
            border: 1px solid rgba(249, 115, 22, 0.4);
            border-radius: 30px;
            padding: 0.25rem 1rem;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
        }
/* 保证任何Bootstrap组件都不会出现白底 */
        .card, .card-body, .list-group-item, .accordion-item, .accordion-button {
            background: transparent !important;
            color: var(--text-light) !important;
            border-color: rgba(255,255,255,0.1) !important;
        }
.accordion-button:not(.collapsed) {
            background: rgba(249, 115, 22, 0.2) !important;
            color: var(--text-light) !important;
        }
.accordion-button::after {
            filter: invert(1) brightness(2);
        }

/* --- 子页面追加 --- */
/* 本页专属样式,自动合并进站点CSS */
        .privacy-section { background: rgba(26, 20, 16, 0.7); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; border: 1px solid rgba(249, 115, 22, 0.15); }
.privacy-section h2 { color: var(--accent); font-weight: 700; margin-bottom: 1.5rem; font-size: 1.5rem; }
.privacy-section h3 { color: var(--primary); font-weight: 600; margin-top: 1.5rem; margin-bottom: 1rem; font-size: 1.2rem; }
.privacy-section p { color: rgba(255, 247, 237, 0.85); line-height: 1.8; margin-bottom: 1rem; }
.privacy-section ul, .privacy-section ol { color: rgba(255, 247, 237, 0.85); line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-section li { margin-bottom: 0.5rem; }
.privacy-section strong { color: var(--text-light); }
.privacy-highlight { background: rgba(249, 115, 22, 0.08); border-left: 4px solid var(--primary); padding: 1.2rem 1.5rem; border-radius: 0 12px 12px 0; margin: 1.5rem 0; }
.privacy-highlight p { margin-bottom: 0.5rem; }
.privacy-highlight p:last-child { margin-bottom: 0; }
.privacy-date { color: var(--accent); font-weight: 600; margin-bottom: 2rem; display: inline-block; padding: 0.4rem 1.2rem; background: rgba(250, 204, 21, 0.1); border-radius: 50px; border: 1px solid rgba(250, 204, 21, 0.3); }
.page-hero { padding: 6rem 0 3rem; text-align: center; background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.15) 0%, transparent 60%); }
.page-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
.page-hero .subtitle { color: rgba(255, 247, 237, 0.7); max-width: 700px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.8; }
.privacy-nav { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-bottom: 3rem; }
.privacy-nav a { color: var(--text-light); text-decoration: none; padding: 0.5rem 1.2rem; border-radius: 50px; border: 1px solid rgba(249, 115, 22, 0.3); transition: all 0.3s ease; font-size: 0.9rem; }
.privacy-nav a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.table-of-contents { background: rgba(26, 20, 16, 0.8); border-radius: 16px; padding: 2rem; margin-bottom: 3rem; border: 1px solid rgba(249, 115, 22, 0.2); }
.table-of-contents h2 { color: var(--accent); font-size: 1.3rem; margin-bottom: 1.5rem; font-weight: 700; }
.table-of-contents ul { list-style: none; padding: 0; margin: 0; }
.table-of-contents li { margin-bottom: 0.6rem; }
.table-of-contents a { color: rgba(255, 247, 237, 0.85); text-decoration: none; transition: color 0.3s ease; }
.table-of-contents a:hover { color: var(--primary); }
.table-of-contents .num { color: var(--primary); font-weight: 600; margin-right: 0.5rem; }
.page-hero h1 { font-size: 1.8rem; }
.privacy-section { padding: 1.5rem; }
.privacy-section h2 { font-size: 1.2rem; }

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