:root {
      --primary: #f472b6;
      --accent: #fbbf24;
      --bg: #fff5f7;
      --text-dark: #4a2530;
      --card-shadow: 0 4px 12px rgba(244, 114, 182, 0.12);
      --hover-shadow: 0 14px 28px rgba(74, 37, 48, 0.18);
      --radius: 8px;
      --serif: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
      --sans: 'Inter', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    }

    * {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg);
      color: var(--text-dark);
      font-family: var(--sans);
      letter-spacing: 0.01em;
    }

    h1, h2, h3, h4, .brand-font {
      font-family: var(--serif);
      font-weight: 600;
    }

    /* 顶部进度条 */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      z-index: 9999;
      border-radius: 0 4px 4px 0;
      transition: width 0.1s;
    }

    /* 导航栏 */
    .navbar-madou {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(244, 114, 182, 0.25);
      padding: 12px 0;
    }
    .navbar-brand {
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--primary) !important;
      letter-spacing: 1px;
      font-family: var(--serif);
    }
    .navbar-brand i {
      color: var(--accent);
      margin-right: 6px;
    }
    .nav-link {
      color: var(--text-dark) !important;
      font-weight: 500;
      margin: 0 8px;
      transition: 0.2s;
      border-radius: var(--radius);
    }
    .nav-link:hover {
      color: var(--primary) !important;
      background: rgba(244, 114, 182, 0.08);
    }

    /* 打字机 hero */
    .hero-typing {
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: radial-gradient(circle at 20% 30%, #ffe0ec, transparent 60%);
      padding: 40px 20px;
    }
    .typewriter h1 {
      font-size: clamp(1.8rem, 5vw, 3.2rem);
      color: var(--primary);
      border-right: 3px solid var(--accent);
      white-space: nowrap;
      overflow: hidden;
      display: inline-block;
      animation: blink-caret 0.8s step-end infinite;
    }
    @keyframes blink-caret {
      50% { border-color: transparent; }
    }

    /* 区块标题 */
    .section-title {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
      position: relative;
      display: inline-block;
      font-family: var(--serif);
    }
    .section-title i {
      color: var(--primary);
      margin-right: 10px;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 4px;
    }

    /* 海报卡片 */
    .poster-card {
      border: none;
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: var(--card-shadow);
      background: #fff;
      cursor: pointer;
    }
    .poster-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--hover-shadow);
    }
    .poster-img-wrapper {
      position: relative;
      aspect-ratio: 2/3;
      background: #ffe0ec;
    }
    .poster-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .badge-ep {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(0,0,0,0.7);
      color: #fff;
      font-size: 0.7rem;
      padding: 2px 8px;
      border-radius: 20px;
      backdrop-filter: blur(4px);
      letter-spacing: 0.5px;
    }
    .badge-score {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: var(--accent);
      color: #3a2a1a;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 2px 8px;
      border-radius: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .poster-info {
      padding: 12px 10px 14px;
    }
    .poster-info .movie-name {
      font-weight: 600;
      font-size: 1rem;
      font-family: var(--serif);
      margin-bottom: 4px;
      color: var(--text-dark);
    }
    .poster-info .meta {
      font-size: 0.78rem;
      color: #9a6a76;
    }

    /* 横向滚动 */
    .scroll-row {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 10px;
      scroll-snap-type: x mandatory;
    }
    .scroll-row .poster-card {
      flex: 0 0 auto;
      width: 170px;
      scroll-snap-align: start;
    }

    /* 热度榜 */
    .hot-list .list-item {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      background: #fff;
      border-radius: var(--radius);
      margin-bottom: 10px;
      box-shadow: 0 2px 8px rgba(244, 114, 182, 0.08);
      transition: 0.2s;
    }
    .hot-list .list-item:hover {
      background: #ffe9f1;
      transform: translateX(4px);
    }
    .hot-list .rank {
      font-size: 1.5rem;
      font-weight: 800;
      width: 45px;
      color: var(--primary);
      font-family: var(--serif);
    }
    .hot-list .item-name {
      flex: 1;
      font-weight: 500;
    }
    .hot-list .hot-score {
      background: var(--accent);
      padding: 2px 10px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #3a2a1a;
    }

    /* 折叠面板 */
    .accordion-item {
      border: none;
      margin-bottom: 10px;
      border-radius: var(--radius) !important;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    .accordion-button {
      background: #fff;
      color: var(--text-dark);
      font-weight: 500;
    }
    .accordion-button:not(.collapsed) {
      background: #ffe3ed;
      color: var(--primary);
    }

    /* 回到顶部 */
    #back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      border: none;
      box-shadow: 0 4px 12px rgba(244,114,182,0.4);
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      z-index: 999;
      transition: 0.2s;
    }
    #back-to-top.show {
      display: flex;
    }
    #back-to-top:hover {
      background: #e45f9f;
      transform: translateY(-4px);
    }

    /* 详情弹窗 */
    .movie-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(14px);
      z-index: 1000;
      padding: 20px;
      overflow-y: auto;
    }
    .modal-content-card {
      max-width: 700px;
      margin: 10vh auto;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.3);
      position: relative;
    }
    .modal-bg {
      width: 100%;
      height: 220px;
      background-size: cover;
      background-position: center;
    }
    .modal-detail {
      padding: 20px 24px 30px;
    }
    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      background: rgba(0,0,0,0.5);
      border: none;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
    }

    footer {
      background: #fdeaf2;
      padding: 30px 0 20px;
      margin-top: 50px;
      border-top: 1px solid #f5c4d8;
      font-size: 0.9rem;
    }
    .friend-links {
      background: #fff;
      border-radius: var(--radius);
      padding: 20px;
      margin: 40px 0 20px;
    }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.12) 0%, rgba(251, 191, 36, 0.08) 100%);
            border-radius: 16px;
            padding: 48px 24px;
            margin: 24px 0 40px;
            text-align: center;
        }
.about-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }
.about-hero p {
            font-size: 1.05rem;
            color: var(--text-dark);
            opacity: 0.75;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-section {
            margin: 48px 0;
        }
.about-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            padding-left: 16px;
            border-left: 4px solid var(--primary);
        }
.about-section p {
            font-size: 1rem;
            line-height: 1.9;
            color: var(--text-dark);
            opacity: 0.8;
            margin-bottom: 16px;
        }
.about-card {
            background: rgba(255, 255, 255, 0.7);
            border-radius: var(--radius);
            box-shadow: var(--card-shadow);
            padding: 28px;
            height: 100%;
            transition: box-shadow 0.3s ease;
        }
.about-card:hover {
            box-shadow: var(--hover-shadow);
        }
.about-card .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(244, 114, 182, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
.about-card .icon-wrap i {
            font-size: 1.4rem;
            color: var(--primary);
        }
.about-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
.about-card p {
            font-size: 0.92rem;
            line-height: 1.8;
            color: var(--text-dark);
            opacity: 0.75;
            margin-bottom: 0;
        }
.stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin: 32px 0;
        }
.stat-item {
            text-align: center;
            padding: 20px 32px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: var(--radius);
            box-shadow: var(--card-shadow);
            min-width: 140px;
        }
.stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }
.stat-item .label {
            font-size: 0.85rem;
            color: var(--text-dark);
            opacity: 0.6;
            margin-top: 4px;
        }
.about-hero h1 {
                font-size: 1.6rem;
            }
.about-card {
                margin-bottom: 16px;
            }

/* --- 子页面追加 --- */
/* 本页专属小范围样式 */
    .disclaimer-hero { background: linear-gradient(135deg, var(--bg) 0%, #ffe4ef 100%); padding: 70px 0 40px; }
.disclaimer-title { font-family: var(--serif); font-weight: 900; color: var(--text-dark); }
.disclaimer-subtitle { color: #8a5a68; font-size: 1.05rem; }
.disclaimer-card { background: rgba(255,255,255,0.75); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--card-shadow); border-left: 4px solid var(--primary); margin-bottom: 24px; transition: all 0.3s ease; }
.disclaimer-card:hover { box-shadow: var(--hover-shadow); transform: translateY(-3px); }
.disclaimer-card h2 { font-family: var(--serif); font-weight: 800; color: var(--text-dark); font-size: 1.4rem; margin-bottom: 14px; }
.disclaimer-card h2 i { color: var(--primary); margin-right: 8px; }
.disclaimer-card p, .disclaimer-card li { color: #5d3542; line-height: 1.8; font-size: 0.95rem; }
.disclaimer-card ul { padding-left: 20px; }
.disclaimer-card ul li { margin-bottom: 8px; }
.highlight-text { color: var(--primary); font-weight: 600; }
.update-badge { display: inline-block; background: var(--primary); color: #fff; font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.5px; }
.footer-note { background: #fff0f4; border-radius: var(--radius); padding: 16px 20px; text-align: center; color: #7a4a5a; font-size: 0.9rem; border: 1px dashed var(--primary); }
.footer-note i { color: var(--primary); }

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