:root {
      --primary: #f472b6;
      --accent: #fbbf24;
      --bg: #fff5f7;
      --text: #4a2530;
      --radius-xl: 24px;
      --radius-lg: 20px;
      --radius-md: 16px;
      --shadow-soft: 0 8px 30px rgba(244, 114, 182, 0.12), 0 4px 10px rgba(74, 37, 48, 0.05);
      --shadow-hover: 0 20px 40px rgba(244, 114, 182, 0.2), 0 8px 20px rgba(74, 37, 48, 0.1);
      --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-display);
      line-height: 1.75;
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5 {
      font-weight: 800;
      letter-spacing: -0.01em;
    }
    .display-4, .display-5 {
      font-weight: 900;
    }
    .navbar {
      backdrop-filter: blur(16px);
      background: rgba(255, 245, 247, 0.85);
      border-bottom: 1px solid rgba(244, 114, 182, 0.15);
      padding: 14px 0;
      border-radius: 0 0 var(--radius-xl) var(--radius-xl);
      box-shadow: 0 4px 30px rgba(244, 114, 182, 0.1);
    }
    .navbar-brand {
      font-weight: 900;
      font-size: 1.7rem;
      color: var(--primary);
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .navbar-brand i {
      color: var(--accent);
    }
    .nav-link {
      font-weight: 600;
      color: var(--text);
      padding: 0.5rem 1rem !important;
      border-radius: 50rem;
      transition: all 0.2s;
    }
    .nav-link:hover {
      background: rgba(244, 114, 182, 0.1);
      color: var(--primary);
    }
    .navbar-toggler {
      border: none;
    }
    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
      border-radius: 50rem;
      font-weight: 600;
    }
    .btn-primary:hover {
      background-color: #e05da3;
      border-color: #e05da3;
    }
    .btn-accent {
      background-color: var(--accent);
      border-color: var(--accent);
      color: var(--text);
      font-weight: 700;
    }
    .section-title {
      font-weight: 900;
      font-size: 1.9rem;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-title i {
      color: var(--primary);
    }
    .card-poster {
      border: none;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: white;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .card-poster:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    .poster-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #f3e1e6;
    }
    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
      opacity: 0.9;
    }
    .card-poster:hover .poster-wrap img {
      transform: scale(1.05);
    }
    .play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
    }
    .card-poster:hover .play-overlay {
      opacity: 1;
    }
    .play-circle {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.8rem;
      padding-left: 5px;
    }
    .card-body {
      padding: 1rem 0.9rem;
      background: white;
      border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }
    .card-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .meta-badge {
      background: var(--bg);
      padding: 0.2rem 0.6rem;
      border-radius: 50rem;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--text);
      border: 1px solid rgba(244, 114, 182, 0.2);
    }
    .rating {
      font-family: 'Inter', monospace;
      font-weight: 800;
      color: var(--accent);
      font-size: 0.9rem;
    }
    .category-pills {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(8px);
      border-radius: 50rem;
      padding: 0.25rem;
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.2rem;
      box-shadow: var(--shadow-soft);
    }
    .category-pills .btn {
      border-radius: 50rem;
      border: none;
      padding: 0.3rem 1.2rem;
      font-weight: 600;
      color: var(--text);
      background: transparent;
    }
    .category-pills .btn.active {
      background: var(--primary);
      color: white;
    }
    .list-group-rank {
      border-radius: var(--radius-lg);
      border: none;
      background: white;
      box-shadow: var(--shadow-soft);
    }
    .rank-item {
      display: flex;
      align-items: center;
      padding: 0.8rem 1rem;
      border-bottom: 1px dashed #f3d9e2;
      gap: 15px;
    }
    .rank-num {
      font-weight: 900;
      font-size: 1.4rem;
      width: 35px;
      font-family: 'Inter', monospace;
      color: #d1d5db;
    }
    .rank-num.gold { color: #fbbf24; }
    .rank-num.silver { color: #9ca3af; }
    .rank-num.bronze { color: #cd7f32; }
    .rank-title {
      flex: 1;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .tagline {
      border-left: 5px solid var(--primary);
      padding-left: 1rem;
      background: rgba(244,114,182,0.06);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    }
    .timeline {
      position: relative;
      padding-left: 30px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 10px;
      top: 0;
      width: 3px;
      height: 100%;
      background: var(--primary);
      border-radius: 10px;
    }
    .timeline-item {
      position: relative;
      margin-bottom: 1.2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -25px;
      top: 0.35rem;
      width: 14px;
      height: 14px;
      background: var(--accent);
      border-radius: 50%;
      border: 3px solid white;
      box-shadow: 0 0 0 2px var(--primary);
    }
    .faq-item {
      background: white;
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      box-shadow: var(--shadow-soft);
      margin-bottom: 1rem;
    }
    .friend-links {
      background: white;
      border-radius: var(--radius-xl);
      padding: 2rem;
      box-shadow: var(--shadow-soft);
    }
    .footer {
      background: white;
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
      padding: 2rem 0;
      color: var(--text);
      margin-top: 3rem;
    }
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      border-radius: 50rem;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      box-shadow: 0 8px 20px rgba(244,114,182,0.4);
      transition: 0.3s;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
    }
    #backToTop.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .typewriter {
      overflow: hidden;
      white-space: nowrap;
      border-right: 0.15em solid var(--accent);
      animation: typing 3.5s steps(30, end) infinite, blink-caret 0.75s step-end infinite;
      max-width: fit-content;
    }
    @keyframes typing {
      0%, 90%, 100% { width: 0; }
      30%, 60% { width: 100%; }
    }
    @keyframes blink-caret {
      50% { border-color: transparent; }
    }
    .hero-card {
      background: linear-gradient(145deg, rgba(244,114,182,0.15), rgba(255,255,255,0.6));
      backdrop-filter: blur(20px);
      border-radius: var(--radius-xl);
      padding: 3rem 2rem;
    }
    .modal-content {
      border-radius: var(--radius-xl);
      border: none;
      background: transparent;
      color: white;
    }
    .modal-backdrop.show {
      opacity: 0.6;
    }
    .detail-modal-bg {
      background-size: cover;
      background-position: center;
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .detail-modal-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
    }
    .detail-modal-content {
      position: relative;
      z-index: 2;
      padding: 2rem;
    }
    @media (max-width: 768px) {
      .section-title { font-size: 1.5rem; }
    }

/* --- 子页面追加 --- */
/* 保证任何 Bootstrap 组件类均被强制覆盖为站点配色（本页尽量未用组件类，但保留防御） */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .form-label, .input-group-text,
        .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
        .nav-link, .navbar, .navbar-brand, .btn-light, .btn-outline-* {
            background: var(--card-bg, #fff0f5) !important;
            color: var(--text) !important;
            border-color: var(--border-color, #f9c6d9) !important;
        }
/* 导航高亮（当前页） */
        .navbar .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
/* 本页专属细节 */
        .about-hero {
            background: linear-gradient(145deg, rgba(244,114,182,0.08), rgba(251,191,36,0.05));
            border-radius: var(--radius-xl);
            padding: 3.5rem 2.5rem;
        }
.about-icon {
            color: var(--primary);
            font-size: 1.8rem;
            margin-right: 0.5rem;
        }
.stat-chip {
            background: rgba(244,114,182,0.12);
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text);
        }
.about-hero { padding: 2rem 1.2rem; }

/* --- 子页面追加 --- */
/* 隐私页面专属样式 - 自动合并进站点CSS */
        .privacy-hero {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(251, 191, 36, 0.06) 100%);
            border-bottom: 1px solid rgba(244, 114, 182, 0.15);
        }
.privacy-section {
            padding: 50px 0;
            border-bottom: 1px solid rgba(244, 114, 182, 0.1);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-card {
            background: rgba(255, 255, 255, 0.85);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-soft);
            margin-bottom: 30px;
            border: 1px solid rgba(244, 114, 182, 0.15);
        }
.privacy-card:hover {
            box-shadow: var(--shadow-hover);
        }
.privacy-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
.privacy-list {
            list-style: none;
            padding-left: 0;
        }
.privacy-list li {
            padding: 10px 0 10px 30px;
            position: relative;
            color: var(--text);
            line-height: 1.7;
        }
.privacy-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1rem;
        }
.privacy-note {
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px 25px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 25px 0;
        }
.privacy-note strong {
            color: var(--text);
        }
.table-privacy {
            width: 100%;
            margin: 20px 0;
        }
.table-privacy th {
            background: rgba(244, 114, 182, 0.1);
            color: var(--text);
            font-weight: 600;
            padding: 14px 18px;
            border-bottom: 2px solid var(--primary);
        }
.table-privacy td {
            padding: 14px 18px;
            border-bottom: 1px solid rgba(244, 114, 182, 0.1);
            color: var(--text);
            vertical-align: top;
        }
.table-privacy tr:hover td {
            background: rgba(244, 114, 182, 0.05);
        }
.privacy-contact {
            background: var(--bg);
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            border: 2px dashed var(--primary);
            margin-top: 30px;
        }
.privacy-contact .btn-primary {
            margin-top: 15px;
        }
.privacy-hero {
                padding: 40px 0 30px;
            }
.privacy-card {
                padding: 20px;
            }
.privacy-contact {
                padding: 25px;
            }
.table-privacy th, .table-privacy td {
                padding: 10px 12px;
                font-size: 0.9rem;
            }