:root {
      --main: #f472b6;
      --accent: #fbbf24;
      --bg: #fff5f7;
      --text: #4a2530;
      --card-radius: 16px;
      --btn-radius: 999px;
      --shadow-sm: 0 4px 12px rgba(244, 114, 182, 0.08);
      --shadow-hover: 0 12px 28px rgba(244, 114, 182, 0.18);
      --font-head: 'Inter', system-ui, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-head);
      font-size: 0.95rem;
      line-height: 1.5;
      letter-spacing: 0.01em;
    }
    h1,h2,h3,h4 { font-weight: 800; letter-spacing: -0.02em; }

    /* 胶囊 & 按钮 */
    .pill-cat {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1.2rem 0;
    }
    .pill-cat .btn-pill {
      background: #fff;
      border: 1px solid #f9c6de;
      color: var(--text);
      padding: 0.3rem 1rem;
      border-radius: var(--btn-radius);
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.2s;
      box-shadow: var(--shadow-sm);
    }
    .pill-cat .btn-pill:hover {
      background: var(--main);
      color: #fff;
      border-color: var(--main);
    }
    .btn-solid-pill {
      background: var(--main);
      color: white;
      border: none;
      border-radius: var(--btn-radius);
      padding: 0.5rem 1.4rem;
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-solid-pill:hover { background: #e05a9f; }

    /* 导航 */
    .navbar-bika {
      background: rgba(255, 245, 247, 0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid #ffe1ec;
      padding: 0.8rem 0;
    }
    .navbar-brand {
      font-weight: 900;
      font-size: 1.7rem;
      color: var(--text);
      letter-spacing: -0.03em;
    }
    .navbar-brand i { color: var(--main); margin-right: 6px; }
    .navbar-bika .nav-link {
      font-weight: 600;
      color: var(--text);
      margin: 0 0.4rem;
      border-radius: 30px;
      padding: 0.3rem 0.9rem !important;
    }
    .navbar-bika .nav-link:hover { background: #ffe4f0; }

    /* 左侧分类栏 */
    .layout-sidebar {
      display: flex;
      gap: 1.6rem;
      padding: 1.5rem 4vw;
      max-width: 1500px;
      margin: 0 auto;
    }
    .sidebar-left {
      flex: 0 0 220px;
      position: sticky;
      top: 100px;
      align-self: flex-start;
      background: #fff;
      border-radius: 24px;
      padding: 1.2rem 1rem;
      box-shadow: var(--shadow-sm);
      height: fit-content;
    }
    .sidebar-left .cat-title {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 1rem;
      border-left: 4px solid var(--main);
      padding-left: 10px;
    }
    .sidebar-left .cat-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .sidebar-left .cat-list li a {
      display: block;
      padding: 0.4rem 0.8rem;
      border-radius: 40px;
      color: var(--text);
      font-weight: 500;
      font-size: 0.9rem;
      transition: 0.1s;
    }
    .sidebar-left .cat-list li a:hover {
      background: #ffecf3;
      color: var(--main);
      font-weight: 600;
    }
    .main-content {
      flex: 1;
      min-width: 0;
    }

    /* 卡片海报墙 */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 1rem;
    }
    .poster-card {
      background: white;
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: 0.25s ease;
      position: relative;
      cursor: pointer;
      border: 1px solid #ffe2ed;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .poster-img {
      position: relative;
      aspect-ratio: 2/3;
      background: #fcd3e4;
      overflow: hidden;
    }
    .poster-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-img img {
      transform: scale(1.08);
    }
    .poster-img .badge-ep {
      position: absolute;
      top: 6px;
      left: 6px;
      background: rgba(0,0,0,0.65);
      color: #fff;
      font-size: 0.7rem;
      padding: 0.15rem 0.7rem;
      border-radius: 20px;
      backdrop-filter: blur(3px);
      font-weight: 600;
      letter-spacing: 0.02em;
      z-index: 5;
    }
    .poster-img .rating-badge {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0,0,0,0.6);
      color: #fbbf24;
      font-weight: 700;
      font-size: 0.85rem;
      border-radius: 30px;
      padding: 0.1rem 0.6rem;
      backdrop-filter: blur(3px);
    }
    .poster-info {
      padding: 0.5rem 0.7rem 0.7rem;
    }
    .poster-info .name {
      font-weight: 700;
      font-size: 0.9rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-info .meta {
      font-size: 0.7rem;
      color: #9b6575;
      margin-top: 2px;
      display: flex;
      gap: 6px;
    }

    /* 区块标题 */
    .section-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 2rem 0 1rem;
    }
    .section-head h2 {
      font-size: 1.5rem;
      font-weight: 900;
      margin: 0;
      letter-spacing: -0.03em;
    }
    .section-head .icon-circle {
      background: var(--main);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-size: 1rem;
    }

    /* 手风琴 + 特色列表 */
    .feature-list i { color: var(--main); margin-right: 8px; }
    .feature-list li { margin-bottom: 0.7rem; font-weight: 500; }
    .accordion-item {
      background: white;
      border-radius: 16px !important;
      margin-bottom: 10px;
      border: 1px solid #ffe0ed;
      box-shadow: var(--shadow-sm);
    }
    .accordion-button { border-radius: 16px !important; font-weight: 700; background: white; }
    .accordion-button:not(.collapsed) { background: #fff0f6; color: var(--text); }

    /* Hero 打字机 */
    .hero-bika {
      background: linear-gradient(145deg, #ffe4f0, #fff1f7);
      padding: 2rem 4vw;
      text-align: center;
      border-radius: 0 0 48px 48px;
    }
    .typewriter {
      display: inline-block;
      font-size: 2.6rem;
      font-weight: 900;
      border-right: 3px solid var(--main);
      padding-right: 8px;
      white-space: nowrap;
      overflow: hidden;
      animation: blink 0.8s step-end infinite;
      max-width: 100%;
    }
    @keyframes blink { 50% { border-color: transparent; } }

    /* 滚动淡入 */
    .fade-block {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-block.visible { opacity: 1; transform: translateY(0); }

    /* 弹窗 */
    .modal-mask {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(8px);
      z-index: 1050;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .modal-mask.show { display: flex; }
    .modal-content-bika {
      background: white;
      border-radius: 32px;
      max-width: 560px;
      width: 100%;
      padding: 2rem 2rem 1.8rem;
      position: relative;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
    }
    .modal-close {
      position: absolute;
      top: 16px; right: 20px;
      font-size: 2rem;
      cursor: pointer;
      color: var(--text);
      line-height: 1;
    }
    .modal-score {
      color: var(--accent);
      font-size: 2.2rem;
      font-weight: 800;
      font-family: monospace;
    }
    .modal-detail-item { font-family: monospace; }

    /* footer */
    .footer-bika {
      background: #2d1a21;
      color: #ffdcea;
      padding: 2.5rem 4vw 1.5rem;
      margin-top: 3rem;
      border-radius: 40px 40px 0 0;
    }
    .footer-bika a { color: #fbb6d3; }
    .link-group a { display: inline-block; margin-right: 1.2rem; color: #f9c6de; }

    @media (max-width: 768px) {
      .layout-sidebar { flex-direction: column; }
      .sidebar-left { position: static; width: 100%; }
      .typewriter { font-size: 1.7rem; white-space: normal; }
    }

/* --- 子页面追加 --- */
/* 页面专用微调(合并进站点CSS) */
    .about-hero {
      padding: 4rem 0 2.5rem;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(244,114,182,0.06) 100%);
      border-bottom: 1px solid rgba(244,114,182,0.10);
    }
.about-hero .display-6 {
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
    }
.about-hero .lead {
      max-width: 680px;
      color: #7d4a5a;
      font-size: 1.05rem;
    }
.section-block {
      padding: 2.2rem 0 0.5rem;
    }
.section-block h2 {
      font-size: 1.55rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
.section-block h2 i {
      color: var(--main);
      font-size: 1.25rem;
    }
.section-block h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text);
      margin: 1.2rem 0 0.5rem;
    }
.section-block p {
      color: #5d3643;
      line-height: 1.75;
      font-size: 0.97rem;
    }
.about-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }
.about-card-item {
      background: #ffffff;
      border: 1px solid rgba(244,114,182,0.12);
      border-radius: var(--card-radius);
      padding: 1.25rem 1.1rem;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
.about-card-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }
.about-card-item .icon-circle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(244,114,182,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--main);
      margin-bottom: 0.7rem;
    }
.about-card-item .card-title-sm {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 0.35rem;
    }
.about-card-item .card-desc {
      font-size: 0.88rem;
      color: #6b4452;
      line-height: 1.55;
    }
.quote-bika {
      background: rgba(244,114,182,0.06);
      border-left: 3px solid var(--main);
      padding: 1rem 1.2rem;
      border-radius: 0 12px 12px 0;
      margin: 1.4rem 0;
      font-style: italic;
      color: #5d3643;
    }
.timeline-bika {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
    }
.timeline-bika li {
      display: flex;
      gap: 0.8rem;
      margin-bottom: 0.9rem;
      font-size: 0.95rem;
      color: #5d3643;
      line-height: 1.6;
    }
.timeline-bika li i {
      color: var(--main);
      margin-top: 0.2rem;
      font-size: 0.85rem;
      width: 1rem;
      flex-shrink: 0;
    }
.diff-list {
      list-style: none;
      padding: 0;
      margin: 0.8rem 0 0;
    }
.diff-list li {
      padding: 0.55rem 0;
      border-bottom: 1px dashed rgba(244,114,182,0.15);
      display: flex;
      gap: 0.7rem;
      font-size: 0.95rem;
      color: #5d3643;
      align-items: baseline;
    }
.diff-list li:last-child { border-bottom: none; }
.diff-list li i {
      color: var(--accent);
      font-size: 0.85rem;
      width: 1rem;
      flex-shrink: 0;
    }

/* --- 子页面追加 --- */
/* 保证所有bootstrap组件继承本站配色，避免白底黑字 */
    .disclaimer-card, .disclaimer-card .card-body,
    .disclaimer-card .card-header, .disclaimer-card .card-footer {
      background: var(--bg);
      color: var(--text);
      border-color: rgba(244, 114, 182, 0.2);
    }
.disclaimer-card .card-header {
      background: rgba(244, 114, 182, 0.08);
      border-bottom: 1px solid rgba(244, 114, 182, 0.15);
      font-weight: 600;
    }
.list-group-item.disclaimer-list-item {
      background: transparent;
      color: var(--text);
      border-color: rgba(244, 114, 182, 0.15);
    }
/* 覆盖手风琴默认白底 */
    .accordion-item {
      background: var(--bg);
      color: var(--text);
      border-color: rgba(244, 114, 182, 0.2);
    }
.accordion-body {
      background: var(--bg);
      color: var(--text);
    }
/* 额外保证文字可读 */
    .disclaimer-legal-block {
      background: rgba(251, 191, 36, 0.06);
      border-left: 4px solid var(--accent);
      padding: 1.2rem 1.5rem;
      border-radius: 0 12px 12px 0;
    }

/* --- 子页面追加 --- */
.privacy-hero {
            background: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(251,191,36,0.06) 100%);
            padding: 60px 0 40px;
            border-radius: 0 0 40px 40px;
        }
.privacy-section {
            padding: 30px 0;
            border-bottom: 1px solid rgba(244,114,182,0.12);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-icon {
            font-size: 1.8rem;
            color: var(--main);
            margin-right: 12px;
            vertical-align: middle;
        }
.privacy-note {
            background: rgba(244,114,182,0.06);
            border-left: 4px solid var(--main);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
            font-size: 0.95rem;
            line-height: 1.7;
        }
.policy-list {
            padding-left: 0;
            list-style: none;
        }
.policy-list li {
            padding: 8px 0 8px 28px;
            position: relative;
            line-height: 1.7;
        }
.policy-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--main);
        }
.update-badge {
            display: inline-block;
            background: rgba(251,191,36,0.15);
            color: #b45309;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card { background:rgba(0,0,0,.03) !important; color:#4a2530 !important; border-color:rgba(0,0,0,.12) !important; }
.accordion-header { background:transparent !important; }
