:root {
      --main: #e50914;
      --accent: #f5c518;
      --bg: #0b0b0f;
      --text: #f5f5f7;
      --card-bg: #1a1a20;
      --border-light: #2c2c35;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    * { font-family: 'Inter', sans-serif; }

    body {
      background-color: var(--bg);
      color: var(--text);
      letter-spacing: 0.3px;
      overflow-x: hidden;
    }

    /* 滚动进度条 */
    #scrollProgress {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      width: 0%;
      background: linear-gradient(90deg, var(--main), var(--accent));
      z-index: 9999;
      transition: width 0.1s;
    }

    /* 顶部导航 */
    .navbar-custom {
      background: rgba(11, 11, 15, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      padding: 12px 0;
    }
    .navbar-brand {
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--text) !important;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
    }
    .navbar-brand i { color: var(--main); margin-right: 8px; }
    .nav-link {
      color: #c0c0c8 !important;
      font-weight: 500;
      margin: 0 12px;
      transition: 0.2s;
    }
    .nav-link:hover { color: var(--accent) !important; }
    .btn-search { border-color: var(--accent); color: var(--accent); }

    /* Hero 渐变 */
    .hero-section {
      padding: 80px 0 40px;
      text-align: center;
      position: relative;
    }
    .hero-title {
      font-size: 3.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, #fff 20%, var(--accent) 60%, var(--main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      animation: floatText 3s ease-in-out infinite alternate;
    }
    @keyframes floatText {
      from { transform: translateY(0); }
      to { transform: translateY(-8px); }
    }
    .hero-sub { color: #9b9ba3; font-size: 1.1rem; margin-top: 15px; }

    /* 区块标题 */
    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      border-left: 6px solid var(--main);
      padding-left: 16px;
      margin: 40px 0 25px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-title i { color: var(--accent); }

    /* 海报卡片 */
    .movie-card {
      background: var(--card-bg);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
      cursor: pointer;
      height: 100%;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .movie-card:hover {
      transform: scale(1.03) translateY(-8px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.7);
      border-color: var(--accent);
    }
    .poster-wrap {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: #12121a;
    }
    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .movie-card:hover .poster-wrap img { transform: scale(1.05); }
    .play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s;
    }
    .movie-card:hover .play-overlay { opacity: 1; }
    .play-overlay i {
      font-size: 3rem;
      color: white;
      background: rgba(229, 9, 20, 0.8);
      border-radius: 50%;
      padding: 15px;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hd-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--main);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      z-index: 5;
      letter-spacing: 0.5px;
    }
    .card-body {
      padding: 12px;
    }
    .card-title {
      font-weight: 700;
      font-size: 1rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .meta-row {
      display: flex;
      justify-content: space-between;
      color: #aaa;
      font-size: 0.8rem;
      margin-top: 5px;
    }
    .rating { color: var(--accent); font-weight: 700; }

    /* 横向滚动行 */
    .row-scroll {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-width: thin;
      scrollbar-color: var(--main) var(--card-bg);
    }
    .row-scroll .movie-card { min-width: 160px; }

    /* 分类按钮 */
    .genre-filter button {
      background: transparent;
      border: 1px solid var(--border-light);
      color: #ccc;
      padding: 8px 18px;
      border-radius: 30px;
      margin: 5px;
      font-weight: 500;
      transition: 0.2s;
    }
    .genre-filter button:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .genre-filter .active {
      background: var(--main);
      border-color: var(--main);
      color: white;
    }

    /* 手风琴 */
    .accordion-item {
      background: var(--card-bg);
      border: 1px solid var(--border-light);
      margin-bottom: 12px;
      border-radius: 8px;
      overflow: hidden;
    }
    .accordion-button {
      background: transparent;
      color: var(--text);
      font-weight: 600;
      padding: 15px;
    }
    .accordion-button:not(.collapsed) {
      color: var(--accent);
      background: rgba(245, 197, 24, 0.05);
    }
    .accordion-body { color: #bbb; padding: 10px 15px 20px; }

    /* 数字统计 */
    .stat-number {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--accent);
    }

    /* 侧边弹窗 */
    .detail-panel {
      position: fixed;
      top: 0;
      right: -450px;
      width: 420px;
      max-width: 90vw;
      height: 100%;
      background: #12121a;
      z-index: 9999;
      transition: right 0.4s ease;
      box-shadow: -10px 0 30px rgba(0,0,0,0.6);
      padding: 25px;
      overflow-y: auto;
      border-left: 2px solid var(--accent);
    }
    .detail-panel.open { right: 0; }
    .detail-panel img { width: 100%; border-radius: 8px; margin-bottom: 15px; }
    .detail-panel .close-btn {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 1.8rem;
      color: #aaa;
      cursor: pointer;
    }
    .detail-panel h4 { color: var(--accent); }
    .detail-panel p { color: #bbb; }
    .detail-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 9998;
      display: none;
    }
    .detail-overlay.show { display: block; }

    footer {
      background: #0e0e12;
      border-top: 1px solid var(--border-light);
      padding: 30px 0 20px;
      color: #aaa;
    }
    footer a { color: #ccc; text-decoration: none; margin: 0 10px; }
    .friend-links { padding: 20px 0; border-top: 1px solid var(--border-light); margin-top: 30px; }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(229, 9, 20, 0.3) 0%, rgba(11, 11, 15, 0.9) 100%), url(' {随机图片}
.variety-section {
            padding: 50px 0;
        }
.variety-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 25px;
        }
.variety-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.variety-poster {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
        }
.variety-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
.variety-card:hover .variety-poster img {
            transform: scale(1.05);
        }
.variety-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--main);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
.variety-info {
            padding: 20px;
        }
.variety-info h3 {
            color: var(--text);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
.variety-info p {
            color: rgba(245, 245, 247, 0.7);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 12px;
        }
.variety-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 13px;
            color: rgba(245, 245, 247, 0.5);
        }
.variety-meta i {
            color: var(--accent);
            margin-right: 5px;
        }
.variety-type {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid var(--border-light);
            color: var(--text);
            margin-right: 8px;
            margin-bottom: 8px;
        }
.variety-type:hover {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.variety-feature {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 25px;
            height: 100%;
            transition: transform 0.3s ease;
        }
.variety-feature:hover {
            transform: translateY(-3px);
        }
.variety-feature i {
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 15px;
        }
.variety-feature h4 {
            color: var(--text);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
        }
.variety-feature p {
            color: rgba(245, 245, 247, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }
.variety-news {
            background: rgba(229, 9, 20, 0.08);
            border-left: 3px solid var(--main);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 20px;
        }
.variety-news h5 {
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 8px;
        }
.variety-news p {
            color: rgba(245, 245, 247, 0.7);
            font-size: 14px;
            margin-bottom: 0;
        }
.variety-news .date {
            font-size: 12px;
            color: var(--accent);
            margin-top: 5px;
        }
.schedule-table {
            width: 100%;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
        }
.schedule-table th {
            background: rgba(229, 9, 20, 0.3);
            color: var(--text);
            padding: 15px 20px;
            font-size: 14px;
            font-weight: 600;
            border-bottom: 1px solid var(--border-light);
        }
.schedule-table td {
            padding: 12px 20px;
            color: rgba(245, 245, 247, 0.8);
            font-size: 14px;
            border-bottom: 1px solid var(--border-light);
        }
.schedule-table tr:last-child td {
            border-bottom: none;
        }
.schedule-table tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }

/* --- 子页面追加 --- */
/* 成人品色堂 · 动漫子页专属微调 */
    .anime-hero {
      background: linear-gradient(145deg, #1a1a20 0%, #0b0b0f 100%);
      border-bottom: 1px solid var(--border-light);
      padding: 3rem 0 2rem;
      margin-bottom: 2rem;
    }
.anime-hero .hero-title {
      color: var(--accent);
      font-weight: 800;
      letter-spacing: -0.02em;
    }
.anime-hero .hero-sub {
      color: var(--text);
      opacity: 0.8;
      max-width: 720px;
    }
.genre-tag {
      background: rgba(245, 197, 24, 0.1);
      border: 1px solid rgba(245, 197, 24, 0.3);
      color: var(--accent);
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 500;
      display: inline-block;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
      transition: all 0.2s;
    }
.genre-tag:hover {
      background: var(--accent);
      color: #0b0b0f;
      border-color: var(--accent);
    }
.anime-section-title {
      font-size: 1.8rem;
      font-weight: 800;
      margin: 2.5rem 0 1.5rem;
      color: var(--text);
      border-left: 5px solid var(--main);
      padding-left: 1rem;
      letter-spacing: -0.02em;
    }
.anime-section-title i {
      color: var(--accent);
      margin-right: 0.5rem;
    }
.rank-badge {
      background: var(--main);
      color: white;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.2rem 0.6rem;
      border-radius: 6px;
      margin-right: 0.6rem;
    }
.list-item-custom {
      background: var(--card-bg);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 0.9rem 1.2rem;
      margin-bottom: 0.6rem;
      transition: all 0.2s;
    }
.list-item-custom:hover {
      border-color: var(--accent);
      transform: translateX(4px);
    }
.list-item-custom a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
    }
.list-item-custom a:hover {
      color: var(--accent);
    }
.list-item-custom .small-meta {
      color: rgba(245, 245, 247, 0.6);
      font-size: 0.8rem;
      margin-left: auto;
    }
.friend-links a {
      color: var(--text);
      opacity: 0.7;
      margin-right: 1.5rem;
      text-decoration: none;
      font-size: 0.9rem;
    }
.friend-links a:hover {
      opacity: 1;
      color: var(--accent);
    }
/* 确保bootstrap没有干扰 */
    .navbar-custom .nav-link {
      color: var(--text) !important;
    }
.navbar-custom .nav-link.active {
      color: var(--accent) !important;
      font-weight: 600;
    }
.navbar-custom .nav-link:hover {
      color: var(--accent) !important;
    }
/* 卡片覆盖(保险) */
    .card, .card-body {
      background: var(--card-bg) !important;
      color: var(--text) !important;
      border-color: var(--border-light) !important;
    }
.card-text {
      color: rgba(245,245,247,0.8) !important;
    }

/* --- 子页面追加 --- */
.ranking-hero {
            background: linear-gradient(135deg, rgba(229,9,20,.15) 0%, transparent 50%), var(--bg);
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border-light);
        }
.ranking-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }
.ranking-hero h1 span {
            color: var(--accent);
        }
.ranking-hero p {
            color: rgba(245,245,247,.7);
            max-width: 600px;
            font-size: 1.1rem;
        }
.ranking-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin: 30px 0 20px;
        }
.ranking-tabs .tab-btn {
            padding: 8px 24px;
            border-radius: 30px;
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            color: var(--text);
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            font-size: .95rem;
        }
.ranking-tabs .tab-btn:hover {
            border-color: var(--main);
            color: var(--accent);
        }
.ranking-tabs .tab-btn.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.rank-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
        }
.rank-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 14px 20px;
            transition: all .3s;
            cursor: pointer;
        }
.rank-item:hover {
            border-color: var(--main);
            transform: translateX(6px);
            box-shadow: var(--shadow);
        }
.rank-num {
            font-size: 1.8rem;
            font-weight: 900;
            width: 60px;
            text-align: center;
            color: var(--border-light);
            flex-shrink: 0;
        }
.rank-item:nth-child(1) .rank-num { color: var(--accent); }
.rank-item:nth-child(2) .rank-num { color: #c0c0c0; }
.rank-item:nth-child(3) .rank-num { color: #cd7f32; }
.rank-item .rank-poster {
            width: 70px;
            height: 95px;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            position: relative;
        }
.rank-item .rank-info {
            flex: 1;
            min-width: 0;
        }
.rank-item .rank-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-item .rank-info .meta {
            font-size: .85rem;
            color: rgba(245,245,247,.6);
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
.rank-item .rank-info .meta i {
            color: var(--accent);
            margin-right: 4px;
        }
.rank-score {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--accent);
            flex-shrink: 0;
            margin-left: auto;
            padding-left: 20px;
        }
.trend-up {
            color: #4caf50;
            font-size: .85rem;
            margin-left: 5px;
        }
.trend-down {
            color: #f44336;
            font-size: .85rem;
            margin-left: 5px;
        }
.trend-flat {
            color: var(--border-light);
            font-size: .85rem;
            margin-left: 5px;
        }
.ranking-section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin: 50px 0 20px;
            padding-left: 16px;
            border-left: 4px solid var(--main);
        }
.ranking-section-title span {
            color: var(--accent);
        }
.ranking-note {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 24px;
            margin: 40px 0;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
.ranking-note i {
            color: var(--accent);
            font-size: 1.5rem;
            margin-top: 4px;
        }
.ranking-note p {
            color: rgba(245,245,247,.8);
            margin: 0;
            line-height: 1.7;
        }
.ranking-note strong {
            color: var(--text);
        }
.ranking-hero h1 { font-size: 2rem; }
.rank-item { padding: 12px; gap: 12px; }
.rank-num { font-size: 1.4rem; width: 40px; }
.rank-item .rank-poster { width: 55px; height: 75px; }
.rank-score { font-size: 1rem; padding-left: 10px; }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(229,9,20,.2) 0%, rgba(11,11,15,.9) 80%), url(' {随机图片}
.action-badge {
      background: var(--main);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      padding: .2rem .6rem;
      border-radius: 30px;
      letter-spacing: .3px;
    }
.action-card {
      background: var(--card-bg);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      transition: transform .25s ease, box-shadow .25s ease;
      overflow: hidden;
      height: 100%;
    }
.action-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }
.action-poster {
      position: relative;
      aspect-ratio: 2/3;
      background: #121218;
      overflow: hidden;
    }
.action-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
.action-poster .play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s;
    }
.action-card:hover .play-overlay {
      opacity: 1;
    }
.action-poster .play-overlay i {
      font-size: 2.8rem;
      color: #fff;
      text-shadow: 0 4px 20px rgba(0,0,0,.6);
    }
.action-info {
      padding: 1rem 1rem 1.2rem;
    }
.action-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: .3rem;
      color: var(--text);
    }
.action-meta {
      color: #9a9aa5;
      font-size: .8rem;
      display: flex;
      gap: .8rem;
      align-items: center;
    }
.action-meta .rating {
      color: var(--accent);
      font-weight: 600;
    }
.section-header {
      border-left: 4px solid var(--main);
      padding-left: 1rem;
      margin: 2.5rem 0 1.5rem;
    }
.section-header h2 {
      font-weight: 800;
      font-size: 1.7rem;
      color: var(--text);
      margin-bottom: .2rem;
    }
.section-header p {
      color: #aaa;
      font-size: .9rem;
      margin: 0;
    }
.btn-ghost {
      border: 1px solid var(--border-light);
      color: var(--text);
      background: transparent;
      padding: .5rem 1.2rem;
      border-radius: 40px;
      font-size: .9rem;
      transition: all .2s;
    }
.btn-ghost:hover {
      border-color: var(--main);
      color: var(--main);
    }
/* 覆盖 bootstrap 可能的白底 */
    .navbar, .navbar-collapse, .navbar-nav, .nav-item, .nav-link {
      background: transparent !important;
      color: var(--text) !important;
    }
.action-tag {
      background: rgba(229,9,20,.15);
      color: #ff7a7f;
      border: 1px solid rgba(229,9,20,.3);
      border-radius: 30px;
      padding: .15rem .8rem;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .3px;
    }

/* --- 子页面追加 --- */
/* 确保科幻页面的卡片、表单等组件与站点深色主题一致 */
        .scifi-card, .scifi-card .card-body {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--border-light);
        }
.scifi-card .card-title {
            color: var(--accent);
        }
.scifi-card .card-text {
            color: rgba(245, 245, 247, 0.85);
        }
.scifi-badge {
            background: rgba(229, 9, 20, 0.2);
            border: 1px solid var(--main);
            color: var(--accent);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
.section-divider {
            border-top: 1px solid var(--border-light);
            margin: 2.5rem 0;
        }
.hero-scifi {
            background: radial-gradient(circle at 30% 40%, rgba(229, 9, 20, 0.15), transparent 60%);
        }
/* 覆盖 bootstrap 组件白底问题 */
        .scifi-card,
        .scifi-card * {
            box-sizing: border-box;
        }
.scifi-card .list-group-item {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--border-light);
        }
.scifi-card .accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
        }
.scifi-card .accordion-button {
            background: var(--card-bg);
            color: var(--text);
            border-bottom: 1px solid var(--border-light);
        }
.scifi-card .accordion-button:not(.collapsed) {
            background: rgba(229, 9, 20, 0.15);
            color: var(--accent);
            box-shadow: none;
        }
.scifi-card .accordion-body {
            background: var(--card-bg);
            color: var(--text);
        }
.scifi-card .form-control {
            background: rgba(0, 0, 0, 0.3);
            border-color: var(--border-light);
            color: var(--text);
        }
.scifi-card .form-control::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
.scifi-card .form-select {
            background-color: var(--card-bg);
            color: var(--text);
            border-color: var(--border-light);
        }
.scifi-card .form-select option {
            background: var(--card-bg);
            color: var(--text);
        }
.scifi-card .table {
            --bs-table-bg: transparent;
            --bs-table-color: var(--text);
            --bs-table-border-color: var(--border-light);
            color: var(--text);
        }
.scifi-card .table th,
        .scifi-card .table td {
            border-color: var(--border-light);
        }
.scifi-card .btn-outline-light {
            border-color: var(--border-light);
            color: var(--text);
        }
.scifi-card .btn-outline-light:hover {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
/* 导航高亮 */
        .navbar-nav .nav-link.active-scifi {
            color: var(--accent) !important;
            font-weight: 700;
        }

/* --- 子页面追加 --- */
/* 确保本页所有卡片背景与边框使用站点变量，防止bootstrap默认白底 */
        .movie-card, .card-body, .list-group-item, .accordion-item, .accordion-button, .accordion-body {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: var(--border-light) !important;
        }
.romance-hero {
            background: radial-gradient(circle at 20% 30%, rgba(229, 9, 20, .25), transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(245, 197, 24, .15), transparent 40%),
                        var(--bg);
            padding: 4rem 0 3rem;
            border-bottom: 1px solid var(--border-light);
        }
.romance-hero .hero-title {
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.rating i {
            color: var(--accent);
        }
.tag-badge {
            background: rgba(229, 9, 20, .2);
            color: #ffb3b3;
            padding: .2rem .7rem;
            border-radius: 30px;
            font-size: .75rem;
            font-weight: 600;
            border: 1px solid rgba(229, 9, 20, .4);
            display: inline-block;
        }
/* 覆盖bootstrap下拉/导航激活色 */
        .navbar .nav-link.active {
            color: var(--accent) !important;
            font-weight: 600;
        }
.accordion-button::after {
            filter: invert(1) hue-rotate(180deg);
        }

/* --- 子页面追加 --- */
/* 关于我们页面专属样式 */
        .about-hero {
            padding: 80px 0 50px;
            text-align: center;
        }
.about-hero .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 20px;
        }
.about-hero .hero-title span {
            color: var(--accent);
        }
.about-hero .hero-sub {
            color: rgba(245,245,247,.8);
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
.about-section {
            padding: 50px 0;
            border-bottom: 1px solid var(--border-light);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            padding-left: 18px;
        }
.about-section .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            bottom: 8px;
            width: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
.about-text {
            color: rgba(245,245,247,.85);
            line-height: 1.8;
            font-size: 1.05rem;
        }
.about-text p {
            margin-bottom: 15px;
        }
.feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
.feature-item {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 25px 20px;
            transition: all .3s ease;
        }
.feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }
.feature-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
.feature-item h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
        }
.feature-item p {
            color: rgba(245,245,247,.7);
            font-size: .95rem;
            line-height: 1.6;
            margin: 0;
        }
.stat-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            margin: 40px 0 20px;
        }
.stat-box {
            text-align: center;
            flex: 1;
            min-width: 160px;
        }
.stat-label {
            color: rgba(245,245,247,.7);
            font-size: .95rem;
            margin-top: 5px;
        }
.milestone-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
.milestone-list li {
            position: relative;
            padding: 12px 0 12px 35px;
            color: rgba(245,245,247,.85);
            border-bottom: 1px solid rgba(44,44,53,.5);
        }
.milestone-list li:last-child {
            border-bottom: none;
        }
.milestone-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 14px;
            color: var(--accent);
        }
.value-badge {
            display: inline-block;
            background: rgba(245,197,24,.15);
            color: var(--accent);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: .9rem;
            font-weight: 500;
            margin: 5px 5px 5px 0;
        }
.about-hero .hero-title {
                font-size: 2rem;
            }
.stat-row {
                gap: 15px;
            }

/* --- 子页面追加 --- */
.disclaimer-hero {
      background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 11, 15, 0.8) 100%);
      padding: 80px 0 60px;
      border-bottom: 1px solid var(--border-light);
    }
.disclaimer-hero h1 {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 15px;
    }
.disclaimer-hero p {
      font-size: 1.1rem;
      color: rgba(245, 245, 247, 0.8);
      max-width: 700px;
    }
.disclaimer-section {
      padding: 60px 0;
    }
.disclaimer-section .container {
      max-width: 900px;
    }
.disclaimer-card {
      background: var(--card-bg);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: var(--shadow);
    }
.disclaimer-card h2 {
      color: var(--accent);
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--border-light);
    }
.disclaimer-card h3 {
      color: var(--text);
      font-size: 1.2rem;
      font-weight: 700;
      margin-top: 20px;
      margin-bottom: 10px;
    }
.disclaimer-card p, .disclaimer-card li {
      color: rgba(245, 245, 247, 0.85);
      line-height: 1.8;
      font-size: 0.95rem;
    }
.disclaimer-card ul {
      padding-left: 20px;
    }
.disclaimer-card li {
      margin-bottom: 8px;
    }
.contact-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(229, 9, 20, 0.15);
      color: var(--accent);
      padding: 10px 20px;
      border-radius: 8px;
      margin-top: 15px;
      font-weight: 600;
    }
.important-note {
      background: rgba(245, 197, 24, 0.08);
      border-left: 4px solid var(--accent);
      padding: 15px 20px;
      border-radius: 0 8px 8px 0;
      margin: 20px 0;
    }
.important-note p {
      color: var(--text) !important;
      font-weight: 500;
    }
.disclaimer-hero h1 {
        font-size: 2rem;
      }
.disclaimer-card {
        padding: 20px;
      }

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