:root {
      --primary: #2563eb;
      --accent: #06b6d4;
      --bg: #f4f8ff;
      --text: #0f1e3d;
      --card-shadow: 0 12px 30px rgba(13, 38, 76, 0.12);
      --hover-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      line-height: 1.75;
    }

    h1, h2, h3, .navbar-brand, .badge-title {
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .mono {
      font-family: 'SF Mono', 'Fira Code', monospace;
      font-weight: 600;
    }

    /* 拟物厚重感：渐变+阴影 */
    .thick-card {
      background: #ffffff;
      border-radius: 1.25rem;
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(2px);
    }

    .thick-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--hover-shadow);
    }

    /* 吸顶导航 */
    .sticky-nav {
      backdrop-filter: saturate(180%) blur(12px);
      background: rgba(244, 248, 255, 0.82) !important;
      transition: background 0.2s, box-shadow 0.2s;
      border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    }

    .sticky-nav.scrolled {
      background: rgba(255, 255, 255, 0.95) !important;
      box-shadow: 0 6px 24px rgba(0, 20, 60, 0.1);
    }

    /* Hero 主视觉 */
    .hero-section {
      background: linear-gradient(135deg, #0b1e3d 0%, #1a3b6e 100%);
      position: relative;
      overflow: hidden;
      padding: 6rem 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: url('{随机图片}') center/cover no-repeat;
      opacity: 0.25;
      mix-blend-mode: overlay;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    /* 海报卡片 */
    .movie-poster {
      border-radius: 1rem;
      overflow: hidden;
      position: relative;
      background: #fff;
      box-shadow: 0 12px 25px rgba(0, 20, 60, 0.15);
      transition: all 0.25s;
      cursor: pointer;
    }

    .movie-poster img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      display: block;
      background: #e5edff;
    }

    .movie-poster .play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 25, 50, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.2s;
    }

    .movie-poster:hover .play-overlay {
      opacity: 1;
    }

    .movie-poster .play-btn {
      width: 48px;
      height: 48px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
    }

    .corner-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(10, 20, 40, 0.7);
      backdrop-filter: blur(4px);
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 30px;
      letter-spacing: 0.3px;
    }

    .rating-badge {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(255, 215, 0, 0.95);
      color: #1e293b;
      font-weight: 800;
      font-size: 0.8rem;
      padding: 2px 6px;
      border-radius: 20px;
      font-family: monospace;
    }

    .score-stars i {
      color: #f59e0b;
      font-size: 0.7rem;
      margin-right: 2px;
    }

    /* 横向滑动区 */
    .hscroll {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      padding: 0.8rem 0.5rem;
      scroll-snap-type: x mandatory;
    }

    .hscroll > .poster-card {
      flex: 0 0 150px;
      scroll-snap-align: start;
    }

    /* 错落渐显 */
    .reveal-group {
      opacity: 0;
      transform: translateY(25px);
      animation: fadeUp 0.6s forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* 抽屉弹窗 */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(2, 8, 23, 0.6);
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      transition: 0.2s;
      z-index: 9990;
    }

    .drawer-panel {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-radius: 28px 28px 0 0;
      transform: translateY(100%);
      transition: 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1);
      z-index: 9995;
      max-height: 90vh;
      overflow-y: auto;
      padding: 2rem 1.5rem 2.5rem;
      box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.2);
    }

    .drawer-panel.show {
      transform: translateY(0);
    }

    .drawer-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    .btn-close-drawer {
      position: absolute;
      top: 15px;
      right: 18px;
      font-size: 1.6rem;
      background: none;
      border: none;
      color: var(--text);
    }

    /* 标签切换 */
    .tab-pane {
      display: none;
    }

    .tab-pane.active {
      display: block;
    }

    /* 时间线 */
    .timeline-item {
      display: flex;
      gap: 1rem;
      border-left: 3px solid var(--accent);
      padding-left: 1.5rem;
      margin-bottom: 1.8rem;
      position: relative;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 6px;
      width: 13px;
      height: 13px;
      background: var(--primary);
      border-radius: 50%;
    }

    /* 随机种子 3252 预留 */

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .about-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
        }
.about-hero h1 {
            font-weight: 800;
            color: #fff;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }
.about-hero p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            max-width: 700px;
            position: relative;
            z-index: 1;
        }
.about-section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.about-section:last-child {
            border-bottom: none;
        }
.section-badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
.about-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid rgba(37, 99, 235, 0.05);
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--hover-shadow);
        }
.about-card i {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
.about-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.about-card p {
            color: #5a6e85;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.timeline-item h4 {
            font-weight: 700;
            color: var(--text);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
.timeline-item p {
            color: #5a6e85;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.value-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.value-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #5a6e85;
            font-size: 0.95rem;
            line-height: 1.6;
        }
.value-list li i {
            color: var(--accent);
            margin-top: 4px;
            font-size: 0.9rem;
        }
.stats-row {
            margin: 40px 0 0;
            padding: 30px 0;
            background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(6,182,212,0.03));
            border-radius: 16px;
        }
.stat-item {
            text-align: center;
            padding: 20px;
        }
.stat-item .num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
.stat-item .label {
            font-size: 0.9rem;
            color: #5a6e85;
            margin-top: 8px;
        }
.quote-block {
            background: rgba(37, 99, 235, 0.05);
            border-left: 4px solid var(--primary);
            padding: 24px 28px;
            border-radius: 0 12px 12px 0;
            margin: 30px 0;
        }
.quote-block p {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text);
            margin-bottom: 8px;
        }
.quote-block .author {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
        }

/* --- 子页面追加 --- */
/* 本页专属微调,保持与首页视觉一致 */
        .disclaimer-hero {
            background: linear-gradient(135deg, #e8f0fe 0%, #f4f8ff 50%, #e0f2fe 100%);
            padding: 70px 0 40px;
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.disclaimer-section {
            padding: 35px 0;
            border-bottom: 1px solid rgba(13, 38, 76, 0.06);
        }
.disclaimer-section:last-child {
            border-bottom: none;
        }
.section-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            font-size: 20px;
            margin-bottom: 16px;
        }
.section-icon.cyan {
            background: var(--accent);
        }
.disclaimer-list {
            list-style: none;
            padding-left: 0;
        }
.disclaimer-list li {
            padding: 10px 0 10px 28px;
            position: relative;
            line-height: 1.7;
            color: var(--text);
        }
.disclaimer-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 12px;
            color: var(--primary);
            font-size: 16px;
        }
.highlight-box {
            background: rgba(37, 99, 235, 0.04);
            border-left: 4px solid var(--primary);
            border-radius: 0 12px 12px 0;
            padding: 20px 24px;
            margin: 20px 0;
        }
.highlight-box.cyan-box {
            background: rgba(6, 182, 212, 0.05);
            border-left-color: var(--accent);
        }
.update-time {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 12px;
        }
.nav-link.active-disclaimer {
            color: var(--primary) !important;
            font-weight: 600;
        }
.disclaimer-hero {
                padding: 50px 0 30px;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.list-group-item { background:rgba(0,0,0,.03) !important; color:#0f1e3d !important; border-color:rgba(0,0,0,.12) !important; }
