:root {
      --primary: #06b6d4;
      --accent: #ec4899;
      --bg: #0c0a1a;
      --text: #e0f2fe;
      --border-color: rgba(6, 182, 212, 0.3);
      --card-bg: rgba(255, 255, 255, 0.02);
    }

    * { box-sizing: border-box; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
      letter-spacing: 0.2px;
      overflow-x: hidden;
    }

    /* 滚动进度条 */
    #scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      z-index: 9999;
      border-radius: 2px;
      transition: width 0.2s ease-out;
    }

    /* 顶部导航 */
    .navbar-custom {
      background: rgba(12, 10, 26, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      padding: 12px 20px;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--text) !important;
      letter-spacing: -0.5px;
      font-family: 'Inter', sans-serif;
    }
    .navbar-brand i {
      color: var(--primary);
      margin-right: 8px;
    }
    .nav-link {
      color: var(--text) !important;
      font-weight: 500;
      margin: 0 8px;
      border-bottom: 2px solid transparent;
    }
    .nav-link:hover { color: var(--primary) !important; border-bottom-color: var(--primary); }
    .navbar-toggler { border-color: var(--border-color); }

    /* 关键词标签云 hero */
    .hero-tags {
      padding: 40px 0 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 20px;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 20px;
    }
    .tag-item {
      display: inline-block;
      padding: 6px 18px;
      border: 1px solid var(--border-color);
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      transition: all 0.2s;
      cursor: default;
      background: transparent;
    }
    .tag-item:hover {
      border-color: var(--accent);
      color: var(--accent);
      box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    }

    /* 板块通用 */
    .section-title {
      font-size: 1.7rem;
      font-weight: 700;
      margin: 30px 0 20px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--border-color);
      font-family: 'Trebuchet MS', 'Segoe UI', cursive, sans-serif;
    }
    .section-title i {
      color: var(--accent);
      margin-right: 12px;
    }

    /* 影片卡片 */
    .movie-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
      position: relative;
      box-shadow: none;
    }
    .movie-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 20px rgba(6, 182, 212, 0.15);
    }
    .card-img-wrapper {
      position: relative;
      overflow: hidden;
      aspect-ratio: 2/3;
      background: #1a152e;
    }
    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .movie-card:hover .card-img-wrapper img { transform: scale(1.05); }
    .episode-badge {
      position: absolute;
      top: 8px; left: 8px;
      background: rgba(0,0,0,0.75);
      color: var(--text);
      font-size: 0.75rem;
      padding: 2px 8px;
      border-radius: 20px;
      border: 1px solid var(--primary);
      backdrop-filter: blur(4px);
      font-weight: 500;
    }
    .rating-badge {
      position: absolute;
      bottom: 8px; right: 8px;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 2px 8px;
      border-radius: 20px;
      box-shadow: 0 2px 8px rgba(236, 72, 153, 0.5);
    }
    .card-body {
      padding: 10px 12px;
    }
    .movie-title {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: var(--text);
    }
    .movie-meta {
      font-size: 0.75rem;
      color: rgba(224, 242, 254, 0.7);
      display: flex;
      justify-content: space-between;
    }

    /* 滚动错落延迟 */
    .movie-row {
      display: flex;
      overflow-x: auto;
      gap: 16px;
      padding-bottom: 10px;
      scrollbar-width: thin;
      scrollbar-color: var(--primary) transparent;
    }
    .movie-row::-webkit-scrollbar { height: 6px; }
    .movie-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
    .movie-col {
      flex: 0 0 auto;
      width: 160px;
      transition: opacity 0.5s, transform 0.5s;
      opacity: 0;
      transform: translateY(30px);
    }
    .movie-col.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    .movie-col:nth-child(2) { transition-delay: 0.1s; }
    .movie-col:nth-child(3) { transition-delay: 0.2s; }
    .movie-col:nth-child(4) { transition-delay: 0.3s; }
    .movie-col:nth-child(5) { transition-delay: 0.4s; }
    .movie-col:nth-child(6) { transition-delay: 0.5s; }
    .movie-col:nth-child(7) { transition-delay: 0.6s; }
    .movie-col:nth-child(8) { transition-delay: 0.7s; }

    /* 榜单 */
    .hot-list {
      list-style: none;
      padding-left: 0;
    }
    .hot-list li {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      border: 1px solid transparent;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .hot-list li:hover { background: rgba(6,182,212,0.05); }
    .hot-list .rank {
      font-weight: 800;
      width: 35px;
      color: var(--accent);
    }
    .hot-list .title { flex: 1; }
    .hot-list .score { color: var(--primary); font-weight: 600; }

    /* 手风琴说明 */
    .accordion-item {
      background: transparent;
      border: 1px solid var(--border-color) !important;
      margin-bottom: 10px;
      border-radius: 8px;
    }
    .accordion-button {
      background: transparent !important;
      color: var(--text) !important;
      border-bottom: 1px solid var(--border-color);
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) { background: rgba(6,182,212,0.05) !important; }
    .accordion-body {
      color: var(--text);
      background: rgba(0,0,0,0.2);
    }

    /* 侧边详情弹窗 */
    .detail-drawer {
      position: fixed;
      top: 0; right: -480px;
      width: 420px;
      max-width: 100vw;
      height: 100vh;
      background: #120e24;
      border-left: 1px solid var(--primary);
      z-index: 1050;
      transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      padding: 30px 20px;
      overflow-y: auto;
      box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .detail-drawer.show { right: 0; }
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    .drawer-backdrop.show { opacity: 1; visibility: visible; }
    .close-drawer {
      position: absolute;
      top: 15px; left: 15px;
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
      width: 36px; height: 36px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
    }
    .close-drawer:hover { background: var(--primary); color: #000; }
    .drawer-poster img {
      width: 100%;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      margin-bottom: 20px;
    }

    /* 页脚 & 友链 */
    .footer {
      border-top: 1px solid var(--border-color);
      padding: 40px 0 30px;
      margin-top: 60px;
      background: #0a0818;
    }
    .friend-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      justify-content: center;
      margin-bottom: 30px;
      color: var(--text);
    }
    .friend-links a { color: var(--text); opacity: 0.8; font-size: 0.9rem; }
    .friend-links a:hover { color: var(--primary); opacity: 1; }

    /* 按钮渐变流动 */
    .btn-neon {
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
      background-size: 200% auto;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 8px 22px;
      border-radius: 30px;
      transition: background-position 0.4s;
    }
    .btn-neon:hover { background-position: right center; color: #fff; }

    /* FAQ板块 */
    .faq-q {
      font-weight: 600;
    }

    /* 无阴影全局 */
    * { box-shadow: none !important; }
    .movie-card, .card-img-wrapper { box-shadow: none !important; }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
        .about-hero {
            padding: 80px 0 40px;
            background: radial-gradient(ellipse at 30% 20%, rgba(6, 182, 212, 0.15), transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1), transparent 50%);
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
.about-hero .lead {
            color: var(--text);
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
.about-section {
            padding: 40px 0;
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            backdrop-filter: blur(8px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(6, 182, 212, 0.15);
        }
.about-card h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.about-card h2 i {
            color: var(--accent);
        }
.about-card p {
            color: var(--text);
            opacity: 0.85;
            line-height: 1.8;
        }
.about-card ul {
            color: var(--text);
            opacity: 0.85;
            padding-left: 20px;
        }
.about-card ul li {
            margin-bottom: 8px;
            line-height: 1.7;
        }
.stats-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 30px 0;
        }
.stat-item {
            text-align: center;
        }
.stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
.stat-item .label {
            color: var(--text);
            opacity: 0.7;
            font-size: 0.9rem;
        }
.highlight-box {
            background: rgba(6, 182, 212, 0.08);
            border-left: 3px solid var(--primary);
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
.highlight-box p {
            margin: 0;
        }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-hero .lead {
                font-size: 1rem;
            }
.about-card {
                padding: 20px;
            }
.about-card h2 {
                font-size: 1.2rem;
            }
.stats-row {
                gap: 20px;
            }
.stat-item .num {
                font-size: 1.5rem;
            }

/* --- 子页面追加 --- */
.page-hero {
            padding: 80px 0 40px;
            text-align: center;
            background: linear-gradient(180deg, rgba(6,182,212,0.08) 0%, transparent 100%);
        }
.page-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }
.page-hero p {
            color: rgba(224,242,254,0.7);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1rem;
        }
.disclaimer-wrap {
            max-width: 860px;
            margin: 0 auto;
            padding: 20px 20px 60px;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px 28px;
            margin-bottom: 24px;
            transition: border-color .2s;
        }
.disclaimer-card:hover {
            border-color: rgba(6,182,212,0.5);
        }
.disclaimer-card h2 {
            color: var(--primary);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-card h2 i {
            color: var(--accent);
            font-size: 1.1rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: rgba(224,242,254,0.82);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }
.disclaimer-card ul {
            padding-left: 20px;
        }
.disclaimer-card li {
            margin-bottom: 6px;
        }
.notice-box {
            background: rgba(236,72,153,0.08);
            border: 1px solid rgba(236,72,153,0.25);
            border-radius: 8px;
            padding: 16px 18px;
            margin-top: 16px;
            font-size: 0.9rem;
            color: rgba(224,242,254,0.85);
            line-height: 1.7;
        }
.notice-box i {
            color: var(--accent);
            margin-right: 8px;
        }
.footer a {
            color: rgba(224,242,254,0.6);
            text-decoration: none;
            margin: 0 12px;
            font-size: 0.9rem;
            transition: color .2s;
        }
.footer a:hover {
            color: var(--primary);
        }
.footer .copyright {
            color: rgba(224,242,254,0.4);
            font-size: 0.8rem;
            margin-top: 16px;
        }

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