:root {
      --c-accent: #dc2626;
      --c-highlight: #fb923c;
      --c-bg: #141013;
      --c-text: #fef2f2;
      --c-card-bg: #1e161d;
      --c-border: rgba(254, 242, 242, 0.08);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
      --shadow-hover: 0 8px 24px rgba(220,38,38,0.2);
      --radius: 8px;
      --font-stack: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    body {
      background-color: var(--c-bg);
      color: var(--c-text);
      font-family: var(--font-stack);
      letter-spacing: 0.01em;
      overflow-x: hidden;
    }

    /* 渐变文字 */
    .gradient-text {
      background: linear-gradient(135deg, #f87171 0%, #fb923c 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* 导航栏 */
    .navbar {
      background: rgba(20, 16, 19, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--c-border);
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      color: var(--c-text) !important;
    }
    .navbar-brand i {
      color: var(--c-accent);
      margin-right: 6px;
    }
    .nav-link {
      color: rgba(254, 242, 242, 0.8) !important;
      font-weight: 500;
      transition: 0.2s;
      margin: 0 0.3rem;
    }
    .nav-link:hover {
      color: var(--c-highlight) !important;
    }
    .navbar-toggler {
      border-color: rgba(255,255,255,0.2);
    }

    /* Hero 开场 */
    .hero-section {
      padding: 4rem 0 3rem;
      background: radial-gradient(circle at 20% 30%, rgba(220,38,38,0.15) 0%, transparent 60%);
    }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 4.2rem);
      font-weight: 900;
      line-height: 1.1;
    }
    .float-deco {
      display: inline-block;
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    /* 区块标题 */
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-title i {
      color: var(--c-accent);
      font-size: 1.8rem;
    }

    /* 横向滑动海报区 */
    .scroll-row {
      display: flex;
      overflow-x: auto;
      gap: 1.2rem;
      padding-bottom: 0.8rem;
      scrollbar-width: thin;
      scrollbar-color: var(--c-accent) transparent;
    }
    .scroll-row::-webkit-scrollbar {
      height: 5px;
    }
    .scroll-row::-webkit-scrollbar-thumb {
      background: var(--c-accent);
      border-radius: 8px;
    }

    /* 卡片 */
    .movie-card {
      flex: 0 0 180px;
      width: 180px;
      background: var(--c-card-bg);
      border-radius: var(--radius);
      border: 1px solid var(--c-border);
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
      animation: fadeUp 0.6s both;
    }
    .movie-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .movie-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      background: #2a1f2a;
      display: block;
    }
    .card-info {
      padding: 0.7rem 0.8rem 0.9rem;
    }
    .card-info h4 {
      font-size: 1rem;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }
    .meta-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #c9b5b5;
    }
    .rating-badge {
      background: rgba(220,38,38,0.2);
      color: #fda4af;
      border-radius: 20px;
      padding: 2px 8px;
      font-weight: 600;
    }

    /* 分类胶囊标签 */
    .tag-capsule {
      display: inline-block;
      padding: 0.25rem 0.9rem;
      border-radius: 30px;
      background: rgba(251,146,60,0.15);
      color: var(--c-highlight);
      font-size: 0.8rem;
      font-weight: 600;
      border: 1px solid rgba(251,146,60,0.3);
    }

    /* 排行榜金银铜 */
    .rank-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      font-weight: 800;
      margin-right: 6px;
    }
    .rank-1 { background: #ffd700; color: #000; }
    .rank-2 { background: #c0c0c0; color: #000; }
    .rank-3 { background: #cd7f32; color: #000; }
    .rank-4, .rank-5, .rank-6, .rank-7, .rank-8 { background: #2a222a; color: var(--c-text); }

    /* 特色图标列表 */
    .feature-list i {
      color: var(--c-accent);
      margin-right: 10px;
      font-size: 1.2rem;
    }
    .feature-list li {
      margin-bottom: 0.6rem;
    }

    /* 手风琴 */
    .accordion-item {
      background: transparent;
      border: 1px solid var(--c-border);
      border-radius: var(--radius);
      margin-bottom: 0.8rem;
    }
    .accordion-button {
      background: rgba(255,255,255,0.02);
      color: var(--c-text);
      font-weight: 600;
      box-shadow: none;
    }
    .accordion-button:not(.collapsed) {
      background: rgba(220,38,38,0.15);
      color: var(--c-highlight);
    }
    .accordion-button:focus {
      box-shadow: none;
    }
    .accordion-body {
      background: rgba(0,0,0,0.1);
    }

    /* 淡入上移动画 */
    .fade-section {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* 按钮光泽效果 */
    .btn-glossy {
      background: linear-gradient(90deg, #dc2626 0%, #fb923c 100%);
      color: #fff;
      border: none;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      transition: 0.3s;
      border-radius: 30px;
      padding: 0.5rem 1.2rem;
    }
    .btn-glossy::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.4s;
    }
    .btn-glossy:hover::after {
      left: 100%;
    }

    /* 抽屉弹窗 */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      opacity: 0;
      pointer-events: none;
      transition: 0.3s;
      z-index: 1050;
    }
    .drawer-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }
    .drawer-panel {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #1e151d;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
      z-index: 1051;
      max-height: 80vh;
      overflow-y: auto;
      padding: 1.5rem 1.5rem 2rem;
      box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
    }
    .drawer-panel.show {
      transform: translateY(0);
    }
    .drawer-close {
      float: right;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: var(--c-text);
    }

    footer {
      border-top: 1px solid var(--c-border);
      padding: 2rem 0;
      color: #a89999;
    }

    /* 友链区域 */
    .friend-links a {
      color: var(--c-highlight);
      margin: 0 0.6rem;
      text-decoration: none;
    }
    .friend-links a:hover {
      text-decoration: underline;
    }

/* --- 子页面追加 --- */
/* 本页专属小样式,自动合并进站点CSS */
        .about-hero {
            background: linear-gradient(135deg, rgba(220,38,38,0.12) 0%, rgba(251,146,60,0.08) 50%, transparent 100%);
            border-bottom: 1px solid var(--c-border);
        }
.about-section {
            padding: 4.5rem 0;
        }
.about-section .container {
            max-width: 1000px;
        }
.about-card {
            background: var(--c-card-bg);
            border: 1px solid var(--c-border);
            border-radius: var(--radius);
            padding: 2rem 2rem 1.8rem;
            height: 100%;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
.about-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
.about-card .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(220,38,38,0.15);
            color: var(--c-highlight);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
.about-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--c-text);
        }
.about-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(254,242,242,0.82);
            margin-bottom: 0.4rem;
        }
.about-card p strong {
            color: var(--c-highlight);
        }
.about-divider {
            border: 0;
            border-top: 1px solid var(--c-border);
            margin: 0 auto;
            opacity: 1;
            width: 70%;
        }
.about-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
            padding: 2.5rem 0 0.5rem;
        }
.stat-item {
            text-align: center;
        }
.stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--c-highlight);
            line-height: 1;
        }
.stat-item .label {
            font-size: 0.85rem;
            color: rgba(254,242,242,0.65);
            margin-top: 0.4rem;
        }
.timeline-list {
            list-style: none;
            padding-left: 0;
            position: relative;
        }
.timeline-list li {
            position: relative;
            padding-left: 2rem;
            padding-bottom: 1.6rem;
            color: rgba(254,242,242,0.85);
            line-height: 1.7;
            font-size: 0.95rem;
        }
.timeline-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.4rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--c-accent);
            box-shadow: 0 0 0 3px rgba(220,38,38,0.2);
        }
.timeline-list li:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 4px;
            top: 1.4rem;
            bottom: 0;
            width: 2px;
            background: var(--c-border);
        }
.timeline-list li strong {
            color: var(--c-text);
            display: block;
            margin-bottom: 0.2rem;
        }
.highlight-box {
            background: rgba(220,38,38,0.07);
            border-left: 3px solid var(--c-accent);
            padding: 1.2rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 2rem 0;
        }
.highlight-box p {
            margin-bottom: 0;
            color: rgba(254,242,242,0.88);
            font-size: 0.98rem;
            line-height: 1.7;
        }

/* --- 子页面追加 --- */
/* 沿用首页的 CSS 变量与基础样式 — 模拟 style.css */
    :root {
      --c-accent: #dc2626;
      --c-highlight: #fb923c;
      --c-bg: #141013;
      --c-text: #fef2f2;
      --c-card-bg: #1e161d;
      --c-border: rgba(254, 242, 242, 0.08);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
      --shadow-hover: 0 8px 24px rgba(220,38,38,0.2);
      --radius: 8px;
      --font-stack: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
* { margin:0; padding:0; box-sizing:border-box; }
.navbar .nav-link {
      color: rgba(254,242,242,0.7);
      font-weight: 500;
      margin-left: 1.2rem;
      transition: .2s;
    }
.navbar .nav-link:hover,
    .navbar .nav-link.active {
      color: var(--c-text);
    }
.navbar .nav-link.active {
      color: var(--c-accent);
      border-bottom: 2px solid var(--c-accent);
    }
.navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28254,242,242,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
/* 通用组件复用 */
    .gradient-text {
      background: linear-gradient(135deg, var(--c-accent), var(--c-highlight));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
.btn-glossy:hover {
      box-shadow: var(--shadow-hover);
      background: #3a2a35;
      color: white;
    }
.card-info, .tag-capsule {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--c-border);
      border-radius: 40px;
      padding: .2rem 1rem;
      font-size: .85rem;
    }
/* 页面内容卡片——本站自定义,不使用 bootstrap 的 .card 以免白底 */
    .disclaimer-card {
      background: var(--c-card-bg);
      border: 1px solid var(--c-border);
      border-radius: var(--radius);
      padding: 2rem 2.2rem;
      box-shadow: var(--shadow-sm);
      transition: box-shadow .2s;
    }
.disclaimer-card:hover {
      box-shadow: var(--shadow-hover);
    }
.disclaimer-card h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      letter-spacing: -0.01em;
      color: var(--c-text);
      display: flex;
      align-items: center;
      gap: .5rem;
    }
.disclaimer-card h2 i {
      color: var(--c-accent);
      font-size: 1.4rem;
    }
.disclaimer-card p {
      color: rgba(254,242,242,0.75);
      margin-bottom: 1rem;
    }
.disclaimer-card ul {
      margin-left: 1.2rem;
      color: rgba(254,242,242,0.8);
    }
.disclaimer-card li {
      margin-bottom: .5rem;
    }
.disclaimer-card strong {
      color: var(--c-highlight);
    }
.divider-light {
      height: 1px;
      background: var(--c-border);
      margin: 2.5rem 0;
    }
/* 页脚 */
    .footer {
      border-top: 1px solid var(--c-border);
      padding: 2.5rem 0;
      margin-top: 4rem;
      background: #0e0a0d;
    }
.footer a { color: rgba(254,242,242,0.6); }
.footer a:hover { color: var(--c-accent); }
.disclaimer-card { padding: 1.5rem; }

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