:root {
      --primary: #6d5dfc;
      --accent: #22d3ee;
      --bg: #0f1020;
      --text: #e8eaf6;
      --radius-lg: 24px;
      --radius-md: 18px;
      --shadow: 0 12px 40px rgba(109, 93, 252, 0.12), 0 4px 12px rgba(0,0,0,0.3);
    }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      letter-spacing: 0.2px;
    }
    .navbar {
      background: rgba(15,16,32,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(109, 93, 252, 0.2);
      padding-top: 12px;
      padding-bottom: 12px;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.6rem;
      color: var(--text) !important;
      letter-spacing: -0.5px;
    }
    .navbar-brand i {
      color: var(--accent);
      margin-right: 6px;
    }
    .nav-link {
      color: rgba(232,234,246,0.85) !important;
      font-weight: 500;
      margin: 0 8px;
      border-radius: 40px;
      padding: 8px 16px !important;
      transition: all 0.2s;
    }
    .nav-link:hover {
      background: rgba(109,93,252,0.15);
      color: #fff !important;
    }
    .btn-accent {
      background: var(--primary);
      border: none;
      border-radius: 60px;
      padding: 10px 24px;
      font-weight: 600;
      color: white;
      box-shadow: 0 6px 16px rgba(109,93,252,0.35);
      transition: all 0.2s;
    }
    .btn-outline-accent {
      background: transparent;
      border: 2px solid var(--accent);
      border-radius: 60px;
      padding: 8px 24px;
      font-weight: 600;
      color: var(--accent);
      transition: all 0.2s;
    }
    .btn-outline-accent:hover {
      background: var(--accent);
      color: #0f1020;
    }
    .section-title {
      font-weight: 800;
      font-size: 2rem;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-title i {
      color: var(--accent);
      font-size: 1.8rem;
    }
    .card-movie {
      background: #1a1b2e;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.3s, border-color 0.3s;
      height: 100%;
      box-shadow: 0 8px 20px rgba(0,0,0,0.35);
      position: relative;
      backdrop-filter: blur(4px);
    }
    .card-movie:hover {
      transform: scale(1.02) translateY(-4px);
      border-color: var(--primary);
      box-shadow: 0 20px 40px rgba(109, 93, 252, 0.3);
    }
    .card-movie img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      background: #252640;
      transition: opacity 0.5s;
      opacity: 0.9;
    }
    .card-movie img.loaded {
      opacity: 1;
    }
    .card-movie .info {
      padding: 16px 14px 18px;
    }
    .card-movie .title {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .meta-badge {
      display: inline-block;
      background: rgba(109, 93, 252, 0.2);
      border-radius: 30px;
      padding: 4px 10px;
      font-size: 0.7rem;
      font-weight: 600;
      color: #c8caf0;
      margin-right: 6px;
    }
    .rating {
      color: #ffb74d;
      font-weight: 800;
    }
    .ranking-badge {
      background: #2d2f4a;
      border-radius: 14px;
      padding: 2px 10px;
      font-weight: 700;
      font-size: 0.8rem;
    }
    .badge-gold { background: #ffd700; color: #2a2a2a; }
    .badge-silver { background: #c0c0c0; color: #2a2a2a; }
    .badge-bronze { background: #cd7f32; color: #2a2a2a; }
    .filter-chips .badge {
      background: rgba(255,255,255,0.08);
      border-radius: 30px;
      padding: 8px 16px;
      font-weight: 500;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.2s;
      font-size: 0.85rem;
      color: var(--text);
    }
    .filter-chips .badge:hover, .filter-chips .badge.active {
      background: var(--primary);
      border-color: var(--accent);
    }
    .left-filter {
      background: rgba(26, 27, 46, 0.7);
      border-radius: var(--radius-lg);
      padding: 24px 18px;
      backdrop-filter: blur(6px);
      position: sticky;
      top: 100px;
    }
    .left-filter h5 {
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .left-filter .filter-group {
      margin-bottom: 24px;
    }
    .left-filter .filter-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      color: #9fa1c9;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .list-item {
      background: rgba(255,255,255,0.03);
      border-radius: 40px;
      padding: 8px 14px;
      margin-bottom: 6px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: 0.2s;
      border: 1px solid transparent;
    }
    .list-item:hover {
      background: rgba(109, 93, 252, 0.15);
      border-color: var(--primary);
    }
    .movie-row .col-lg-2, .movie-row .col-md-3, .movie-row .col-6 {
      margin-bottom: 24px;
    }
    .drawer-overlay {
      position: fixed;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(3px);
      z-index: 1050;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .drawer-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .drawer-panel {
      position: fixed;
      bottom:0; left:0; width:100%;
      background: #1a1b2e;
      border-radius: 28px 28px 0 0;
      padding: 32px 24px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 1060;
      max-height: 80vh;
      overflow-y: auto;
      box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    }
    .drawer-panel.active {
      transform: translateY(0);
    }
    .drawer-close {
      position: absolute;
      top: 20px; right: 24px;
      font-size: 1.8rem;
      color: var(--text);
      cursor: pointer;
      opacity: 0.8;
      transition: 0.2s;
    }
    .drawer-close:hover { opacity: 1; }
    .step-card {
      background: rgba(109, 93, 252, 0.08);
      border-radius: 18px;
      padding: 20px;
      height: 100%;
      border: 1px solid rgba(109,93,252,0.2);
    }
    .footer-links a {
      color: #a5a8d0;
      text-decoration: none;
      margin-right: 20px;
      font-size: 0.9rem;
    }
    .footer-links a:hover { color: var(--accent); }
    .btn-close {
      filter: invert(1);
    }
    .friend-links a {
      color: #b0b3dc;
      margin-right: 18px;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .friend-links a:hover { color: var(--accent); }
    .lazy-img {
      background: #262848;
    }

/* --- 子页面追加 --- */
.about-hero { background: linear-gradient(135deg, rgba(109, 93, 252, 0.15), rgba(34, 211, 238, 0.08)); border-radius: var(--radius-lg); padding: 60px 0; margin-bottom: 40px; }
.about-section { margin-bottom: 60px; }
.about-section .section-title { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.about-text { color: var(--text); line-height: 1.9; font-size: 1.05rem; }
.about-card { background: rgba(109, 93, 252, 0.08); border: 1px solid rgba(109, 93, 252, 0.2); border-radius: var(--radius-md); padding: 30px; height: 100%; transition: transform 0.3s ease; }
.about-card:hover { transform: translateY(-5px); }
.about-card i { font-size: 2.2rem; color: var(--accent); margin-bottom: 15px; }
.about-card h3 { color: var(--primary); font-weight: 700; font-size: 1.3rem; margin-bottom: 12px; }
.about-card p { color: var(--text); font-size: 0.95rem; line-height: 1.7; }
.highlight-box { background: rgba(34, 211, 238, 0.1); border-left: 4px solid var(--accent); border-radius: 12px; padding: 25px 30px; margin: 30px 0; }
.highlight-box p { margin-bottom: 0; }
.about-footer-note { text-align: center; padding: 40px 0; border-top: 1px solid rgba(109, 93, 252, 0.15); margin-top: 40px; }

/* --- 子页面追加 --- */
.disclaimer-page { padding: 60px 0; }
.disclaimer-hero { text-align: center; margin-bottom: 50px; }
.disclaimer-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.disclaimer-hero .hero-subtitle { color: var(--text); opacity: 0.8; font-size: 1.1rem; }
.disclaimer-card { background: rgba(109, 93, 252, 0.08); border: 1px solid rgba(109, 93, 252, 0.2); border-radius: var(--radius-lg); padding: 30px; margin-bottom: 30px; }
.disclaimer-card h2 { color: var(--primary); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.disclaimer-card h2 i { font-size: 1.3rem; }
.disclaimer-card p { color: var(--text); opacity: 0.85; line-height: 1.8; margin-bottom: 15px; }
.disclaimer-card ul { color: var(--text); opacity: 0.85; padding-left: 20px; margin-bottom: 15px; }
.disclaimer-card ul li { margin-bottom: 8px; line-height: 1.7; }
.disclaimer-highlight { background: rgba(34, 211, 238, 0.1); border-left: 4px solid var(--accent); padding: 15px 20px; border-radius: 8px; margin: 20px 0; }
.disclaimer-highlight p { margin: 0; }
.update-info { text-align: center; color: var(--text); opacity: 0.6; font-size: 0.9rem; margin-top: 40px; }
.btn-back { display: inline-block; padding: 12px 30px; background: var(--primary); color: #fff; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.btn-back:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }
.disclaimer-page { padding: 40px 0; }
.disclaimer-hero h1 { font-size: 1.8rem; }
.disclaimer-card { padding: 20px; }
.disclaimer-card h2 { font-size: 1.2rem; }

/* --- 子页面追加 --- */
.sitemap-hero {
            background: linear-gradient(135deg, rgba(109,93,252,0.15) 0%, rgba(34,211,238,0.1) 100%);
            border-radius: var(--radius-lg);
            padding: 3.5rem 2rem;
            margin-bottom: 3rem;
            text-align: center;
            border: 1px solid rgba(109,93,252,0.2);
        }
.sitemap-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.sitemap-hero h1 span {
            color: var(--primary);
        }
.sitemap-hero p {
            color: rgba(232,234,246,0.7);
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto;
        }
.sitemap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
.sitemap-card {
            background: rgba(109,93,252,0.06);
            border: 1px solid rgba(109,93,252,0.15);
            border-radius: var(--radius-md);
            padding: 1.8rem 1.5rem;
            transition: all 0.3s ease;
        }
.sitemap-card:hover {
            background: rgba(109,93,252,0.12);
            border-color: var(--primary);
            transform: translateY(-4px);
        }
.sitemap-card .icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            background: rgba(109,93,252,0.2);
            color: var(--primary);
        }
.sitemap-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
        }
.sitemap-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.sitemap-card ul li {
            margin-bottom: 0.6rem;
        }
.sitemap-card ul li a {
            color: rgba(232,234,246,0.75);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
.sitemap-card ul li a i {
            font-size: 0.7rem;
            color: var(--accent);
        }
.sitemap-card ul li a:hover {
            color: var(--primary);
        }
.sitemap-card ul li a .badge {
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 20px;
            margin-left: 4px;
        }
.sitemap-note {
            background: rgba(34,211,238,0.08);
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 1.2rem 1.5rem;
            margin-top: 2.5rem;
        }
.sitemap-note p {
            color: rgba(232,234,246,0.8);
            margin: 0;
            font-size: 0.95rem;
        }
.sitemap-note p i {
            color: var(--accent);
            margin-right: 8px;
        }
.btn-accent:hover {
            background: #5a4ce0;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(109,93,252,0.4);
        }