:root {
      --primary: #dc2626;
      --accent: #fb923c;
      --bg-dark: #141013;
      --text-light: #fef2f2;
      --card-bg: #1e181e;
      --border-line: #3a2a2e;
      --shadow-card: 0 8px 20px rgba(0,0,0,0.6);
      --radius: 8px;
    }
    * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
    body {
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.7;
      font-weight: 400;
    }
    h1,h2,h3,h4,h5 { font-weight: 800; letter-spacing: -0.02em; }
    .navbar-brand {
      font-weight: 900;
      font-size: 1.6rem;
      color: var(--text-light) !important;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .navbar-dark .navbar-nav .nav-link {
      color: rgba(254,242,242,0.8);
      font-weight: 500;
      margin: 0 4px;
    }
    .navbar-dark .navbar-nav .nav-link:hover { color: var(--accent); }
    .btn-outline-light { border-color: var(--border-line); }
    .badge-4k {
      background: var(--primary);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 5px;
      border-radius: 4px;
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
    }
    .badge-hd {
      background: rgba(0,0,0,0.7);
      color: white;
      font-size: 0.6rem;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 4px;
      position: absolute;
      top: 10px;
      left: 10px;
      backdrop-filter: blur(2px);
      letter-spacing: 0.3px;
    }
    .hero-section {
      position: relative;
      background: url('{随机图片}') center center / cover no-repeat;
      min-height: 420px;
      display: flex;
      align-items: center;
      background-attachment: fixed; /* parallax */
      background-position: 50% 30%;
    }
    .hero-overlay {
      background: linear-gradient(0deg, rgba(20,16,19,0.85) 0%, rgba(20,16,19,0.4) 100%);
      padding: 3rem 0;
      width: 100%;
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    .stat-item {
      font-weight: 800;
      font-size: 2.2rem;
      line-height: 1.2;
      color: white;
    }
    .stat-item small {
      display: block;
      font-size: 0.85rem;
      font-weight: 400;
      color: #d6c6c6;
      letter-spacing: 0.03em;
    }
    .section-title {
      border-left: 6px solid var(--primary);
      padding-left: 12px;
      margin: 2.2rem 0 1.5rem;
      font-weight: 800;
      font-size: 1.6rem;
    }
    .poster-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.25s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      border: 1px solid #2e1f24;
      height: 100%;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }
    .poster-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 18px 30px rgba(0,0,0,0.8);
      border-color: var(--primary);
    }
    .poster-card .img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 2/3;
      background: #1a1118;
    }
    .poster-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .poster-card:hover img {
      transform: scale(1.08);
    }
    .card-info {
      padding: 0.8rem 0.9rem 1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .card-title {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 4px;
      line-height: 1.3;
      color: white;
    }
    .card-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #bda6a6;
      margin-top: auto;
    }
    .rating {
      color: var(--accent);
      font-weight: 700;
    }
    .genre-tag {
      background: rgba(220,38,38,0.18);
      border-radius: 20px;
      padding: 0 8px;
      font-size: 0.68rem;
      color: var(--accent);
      font-weight: 500;
    }
    .filter-badge {
      background: transparent;
      border: 1px solid var(--border-line);
      border-radius: 30px;
      padding: 4px 14px;
      font-size: 0.8rem;
      color: var(--text-light);
      transition: all 0.2s;
    }
    .filter-badge:hover {
      background: var(--primary);
      border-color: var(--primary);
    }
    .footer-link {
      color: #c9b3b3;
      text-decoration: none;
      margin-right: 20px;
      font-size: 0.9rem;
    }
    .footer-link:hover { color: var(--accent); }
    .friend-links a {
      color: #b19090;
      margin-right: 16px;
      font-size: 0.8rem;
      text-decoration: underline dotted;
    }
    .friend-links a:hover { color: white; }
    .card-overlay {
      position: absolute;
      bottom: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.85));
      width: 100%;
      padding: 1.2rem 0.8rem 0.5rem;
      opacity: 0;
      transition: opacity 0.2s;
      font-size: 0.7rem;
      color: #e6dada;
    }
    .poster-card:hover .card-overlay { opacity: 1; }
    /* drawer modal */
    .drawer-overlay {
      position: fixed;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.7);
      z-index: 1060;
      display: none;
      justify-content: center;
      align-items: flex-end;
    }
    .drawer-panel {
      background: #1d141a;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      border-radius: 20px 20px 0 0;
      padding: 1.5rem 2rem 2.5rem;
      color: var(--text-light);
      transform: translateY(100%);
      transition: transform 0.3s ease-out;
      max-height: 80vh;
      overflow-y: auto;
      border-top: 2px solid var(--primary);
    }
    .drawer-panel.show { transform: translateY(0); }
    .drawer-overlay.active { display: flex; }
    .close-drawer {
      background: none;
      border: none;
      font-size: 2rem;
      color: #bbb;
      float: right;
      line-height: 1;
    }
    .btn-close-icon:hover { color: white; }
    .backdrop-filter { backdrop-filter: blur(2px); }
    .text-accent { color: var(--accent); }
    .border-line { border-color: var(--border-line); }
    .fa, .fas, .far { color: inherit; }

/* --- 子页面追加 --- */
/* 关于页专属样式 */
        .about-hero {
            padding: 80px 0 50px;
            position: relative;
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 20px;
        }
.about-hero h1 .text-accent {
            color: var(--accent);
        }
.about-hero p.lead {
            font-size: 1.15rem;
            color: rgba(254, 242, 242, 0.7);
            max-width: 760px;
            line-height: 1.8;
        }
.about-section {
            padding: 50px 0;
            border-bottom: 1px solid var(--border-line);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 25px;
            position: relative;
            padding-left: 18px;
        }
.about-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 4px;
            height: 28px;
            background: var(--accent);
            border-radius: 2px;
        }
.about-section h2 .text-accent {
            color: var(--accent);
        }
.about-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-light);
            margin-top: 25px;
            margin-bottom: 12px;
        }
.about-section p {
            color: rgba(254, 242, 242, 0.75);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 15px;
        }
.about-section ul {
            color: rgba(254, 242, 242, 0.75);
            line-height: 1.9;
            padding-left: 20px;
        }
.about-section ul li {
            margin-bottom: 8px;
        }
.about-section ul li::marker {
            color: var(--accent);
        }
.about-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
            padding: 25px;
            background: var(--card-bg);
            border: 1px solid var(--border-line);
            border-radius: var(--radius);
            box-shadow: var(--shadow-card);
        }
.about-stat-item {
            flex: 1;
            min-width: 140px;
            text-align: center;
        }
.about-stat-item .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
            margin-bottom: 5px;
        }
.about-stat-item .stat-label {
            font-size: 0.9rem;
            color: rgba(254, 242, 242, 0.6);
        }
.about-quote {
            margin: 30px 0;
            padding: 25px 30px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(251, 146, 60, 0.08));
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
        }
.about-quote p {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 8px;
        }
.about-quote .quote-author {
            font-size: 0.9rem;
            color: rgba(254, 242, 242, 0.6);
        }
.about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
.about-feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-line);
            border-radius: var(--radius);
            padding: 25px 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
.about-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-card);
        }
.about-feature-card .feature-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
.about-feature-card h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 10px;
        }
.about-feature-card p {
            font-size: 0.9rem;
            color: rgba(254, 242, 242, 0.65);
            line-height: 1.7;
            margin-bottom: 0;
        }
.about-timeline {
            margin-top: 30px;
            padding-left: 25px;
            border-left: 2px solid var(--border-line);
        }
.about-timeline-item {
            position: relative;
            padding: 0 0 30px 25px;
        }
.about-timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
        }
.about-timeline-item .timeline-year {
            font-weight: 700;
            color: var(--accent);
            font-size: 1.05rem;
            margin-bottom: 5px;
        }
.about-timeline-item p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
.about-hero {
                padding: 50px 0 30px;
            }
.about-hero h1 {
                font-size: 2rem;
            }
.about-section h2 {
                font-size: 1.5rem;
            }
.about-stats {
                gap: 15px;
                padding: 15px;
            }
.about-stat-item .stat-number {
                font-size: 1.6rem;
            }

/* --- 子页面追加 --- */
/* 免责声明页专属样式 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(220,38,38,0.15) 0%, rgba(251,146,60,0.1) 50%, rgba(20,16,19,0.9) 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border-line);
        }
.disclaimer-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
.disclaimer-subtitle {
            color: rgba(254,242,242,0.7);
            font-size: 1.05rem;
            max-width: 680px;
            line-height: 1.7;
        }
.disclaimer-section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(58,42,46,0.5);
        }
.disclaimer-section:last-child {
            border-bottom: none;
        }
.disclaimer-section h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 20px;
            position: relative;
            padding-left: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 24px;
            background: var(--primary);
            border-radius: 2px;
        }
.disclaimer-section h2 i {
            color: var(--accent);
            font-size: 1.4rem;
        }
.disclaimer-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--accent);
            margin: 24px 0 12px;
        }
.disclaimer-section p {
            color: rgba(254,242,242,0.85);
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 0.98rem;
        }
.disclaimer-section ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
.disclaimer-section ul li {
            color: rgba(254,242,242,0.85);
            line-height: 1.8;
            padding: 8px 0 8px 28px;
            position: relative;
            font-size: 0.98rem;
        }
.disclaimer-section ul li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 8px;
            color: var(--accent);
            font-size: 0.9rem;
        }
.notice-box {
            background: var(--card-bg);
            border: 1px solid var(--border-line);
            border-radius: var(--radius);
            padding: 24px;
            margin: 20px 0;
            box-shadow: var(--shadow-card);
        }
.notice-box .notice-icon {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
.notice-box p {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
.contact-highlight {
            background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(251,146,60,0.08));
            border: 1px solid rgba(220,38,38,0.3);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin-top: 20px;
        }
.contact-highlight p {
            margin-bottom: 8px;
        }
.contact-highlight i {
            color: var(--accent);
            margin-right: 10px;
        }
.disclaimer-hero {
                padding: 50px 0 40px;
            }
.disclaimer-title {
                font-size: 1.8rem;
            }
.disclaimer-section {
                padding: 40px 0;
            }
.disclaimer-section h2 {
                font-size: 1.4rem;
            }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(20,16,19,.9), rgba(30,24,30,.85)), url(' {随机图片}
.privacy-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
.privacy-hero h1 span {
            color: var(--accent);
        }
.privacy-hero .sub-text {
            color: rgba(254,242,242,.75);
            font-size: 1.05rem;
            max-width: 640px;
            line-height: 1.6;
        }
.privacy-section {
            padding: 56px 0;
        }
.privacy-card {
            background: var(--card-bg);
            border: 1px solid var(--border-line);
            border-radius: var(--radius);
            padding: 32px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-card);
            transition: transform .25s ease, box-shadow .25s ease;
        }
.privacy-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 28px rgba(0,0,0,.7);
        }
.privacy-card h2 {
            color: var(--accent);
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.privacy-card h2 i {
            font-size: 1.2rem;
            color: var(--accent);
            opacity: .9;
        }
.privacy-card p {
            color: rgba(254,242,242,.82);
            font-size: .95rem;
            line-height: 1.75;
            margin-bottom: 14px;
        }
.privacy-card ul {
            padding-left: 20px;
            margin-bottom: 14px;
        }
.privacy-card ul li {
            color: rgba(254,242,242,.8);
            font-size: .93rem;
            line-height: 1.7;
            margin-bottom: 6px;
        }
.privacy-card ul li strong {
            color: var(--text-light);
            font-weight: 600;
        }
.privacy-note {
            background: rgba(220,38,38,.08);
            border-left: 4px solid var(--primary);
            padding: 18px 22px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-top: 16px;
            font-size: .9rem;
            color: rgba(254,242,242,.85);
        }
.privacy-note i {
            color: var(--accent);
            margin-right: 6px;
        }
.update-date {
            color: rgba(254,242,242,.55);
            font-size: .85rem;
            text-align: right;
            margin-top: 8px;
        }
.back-top {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            text-decoration: none;
            font-size: .9rem;
            font-weight: 500;
            margin-top: 24px;
            transition: color .2s;
        }
.back-top:hover {
            color: var(--primary);
        }
.privacy-hero { padding: 70px 0 45px; }
.privacy-hero h1 { font-size: 2rem; }
.privacy-card { padding: 22px; }