:root {
    --primary: #f472b6;
    --accent: #fbbf24;
    --bg: #fff5f7;
    --text: #4a2530;
    --border-color: rgba(244, 114, 182, 0.3);
    --card-bg: #ffffff;
  }
  * { box-sizing: border-box; }
  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.75;
    margin: 0;
    padding: 0;
  }
  h1, h2, h3, h4, .navbar-brand, .brand-font {
    font-family: 'Inter', cursive, 'Comic Sans MS', 'Chalkboard SE', '幼圆', 'Yuanti SC', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  a { color: inherit; text-decoration: none; }
  .no-shadow { box-shadow: none !important; border: 1px solid var(--border-color); }

  /* 导航栏 */
  .navbar {
    background: rgba(255, 245, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, box-shadow 0.2s;
    padding: 0.5rem 0;
  }
  .navbar.scrolled {
    background: rgba(255, 245, 247, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  }
  .navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .navbar .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 30px;
  }
  .navbar .nav-link:hover { color: var(--primary); background: rgba(244,114,182,0.05); }
  @media (max-width: 992px) {
    .navbar-collapse { background: #fff5f7; padding: 10px; border-top: 1px solid var(--border-color); }
  }

  /* 英雄区视差 */
  .hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-image: url('{随机图片}');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    isolation: isolate;
  }
  .hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 245, 247, 0.2);
    backdrop-filter: blur(2px);
    z-index: -1;
  }
  .hero-content {
    background: rgba(255, 245, 247, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(8px);
    max-width: 700px;
    margin: 4rem auto;
  }
  .hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: space-around;
    margin-bottom: 2rem;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }
  .stat-label { letter-spacing: 1px; font-weight: 400; }

  /* 卡片网格 */
  .section-title {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
    margin: 3rem 0 1.5rem;
  }
  .card-movie {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    margin-bottom: 1.8rem;
    cursor: pointer;
    position: relative;
  }
  .card-movie:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 15px 30px rgba(244,114,182,0.12);
  }
  .poster-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
  }
  .poster-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  .card-movie:hover .poster-wrapper img { transform: scale(1.05); }
  .badge-quality {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    z-index: 3;
  }
  .card-body-movie {
    padding: 0.9rem 0.8rem 1rem;
  }
  .movie-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .movie-meta {
    font-size: 0.8rem;
    opacity: 0.75;
    display: flex;
    justify-content: space-between;
  }
  .movie-score { color: var(--primary); font-weight: 600; }

  /* 分类海报矩阵 + 标签 */
  .category-chip {
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    margin: 0.2rem;
    display: inline-block;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.2s;
  }
  .category-chip:hover { background: var(--primary); color: white; border-color: var(--primary); }

  /* 步骤条 */
  .steps-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
  }
  .step-item {
    flex: 1 1 180px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 1.8rem 1.2rem;
    text-align: center;
  }
  .step-num {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  /* 弹窗抽屉 */
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .drawer-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 30px 30px 0 0;
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    max-height: 85vh;
    overflow-y: auto;
    z-index: 1060;
    border-top: 4px solid var(--primary);
  }
  .drawer-panel.show { transform: translateY(0); }
  .drawer-overlay.show { opacity: 1; visibility: visible; }
  .drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
    color: var(--text);
  }
  .drawer-body h5 { margin-bottom: 0.5rem; }
  .drawer-body p { margin-bottom: 0.5rem; }

  /* 页脚和友链 */
  .footer-links {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
  }
  .friend-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.8rem;
    font-size: 0.9rem;
    padding: 1rem 0;
  }
  footer {
    border-top: 1px solid var(--border-color);
    background: #fdeef2;
  }
  .theme-badge { color: var(--primary); }

/* --- 子页面追加 --- */
.about-hero {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.12) 0%, rgba(251, 191, 36, 0.08) 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 3.5rem 2rem;
            margin-bottom: 2.5rem;
            position: relative;
            overflow: hidden;
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
.about-hero h1 {
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1rem;
            font-size: 2.2rem;
            position: relative;
        }
.about-hero p {
            color: var(--text);
            font-size: 1.05rem;
            max-width: 700px;
            margin-bottom: 0;
            opacity: 0.85;
        }
.about-section {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem 1.8rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 12px rgba(244, 114, 182, 0.06);
        }
.about-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid rgba(244, 114, 182, 0.15);
        }
.about-section h3 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1.2rem;
            margin-bottom: 0.5rem;
        }
.about-section p {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            opacity: 0.88;
        }
.about-section ul, .about-section ol {
            color: var(--text);
            line-height: 1.9;
            font-size: 0.95rem;
            opacity: 0.88;
            padding-left: 1.2rem;
        }
.about-section li {
            margin-bottom: 0.4rem;
        }
.feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(244, 114, 182, 0.1);
            color: var(--primary);
            font-size: 1.1rem;
            margin-right: 0.6rem;
            flex-shrink: 0;
        }
.feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.1rem;
        }
.feature-item p {
            margin-bottom: 0;
        }
.stats-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0 0.5rem;
        }
.stats-box {
            background: rgba(244, 114, 182, 0.06);
            border: 1px solid rgba(244, 114, 182, 0.15);
            border-radius: 10px;
            padding: 1.2rem 1rem;
            text-align: center;
        }
.stats-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
.stats-label {
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.7;
            margin-top: 0.3rem;
        }
.about-quote {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(244, 114, 182, 0.06));
            border-left: 4px solid var(--accent);
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
            font-style: italic;
        }
.about-quote p {
            margin-bottom: 0;
            font-size: 1rem;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, var(--bg) 0%, #fce7f0 100%);
            text-align: center;
        }
.disclaimer-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }
.disclaimer-hero p {
            font-size: 1.1rem;
            color: var(--text);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(244, 114, 182, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.disclaimer-section:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(244, 114, 182, 0.15);
        }
.disclaimer-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-section h2 i {
            font-size: 1.3rem;
            color: var(--accent);
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
            list-style: none;
        }
.disclaimer-section ul li {
            padding-left: 20px;
            position: relative;
            margin-bottom: 8px;
        }
.disclaimer-section ul li::before {
            content: "✦";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 0.8rem;
            top: 2px;
        }
.last-updated {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 16px;
        }
.disclaimer-hero { padding: 60px 0 30px; }
.disclaimer-hero h1 { font-size: 1.8rem; }
.disclaimer-section { padding: 20px; }