:root {
      --main: #f472b6;
      --accent: #fbbf24;
      --bg: #fff5f7;
      --text: #4a2530;
      --soft-shadow: 0 6px 18px rgba(244, 114, 182, 0.12);
      --radius: 18px;
      --radius-sm: 12px;
    }
    * { box-sizing: border-box; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-size: 14px;
      line-height: 1.5;
      letter-spacing: 0.01em;
    }
    h1,h2,h3,h4,.brand-font {
      font-family: 'Comic Neue', 'Kalam', 'Patrick Hand', 'Segoe Script', cursive, sans-serif;
      font-weight: 700;
    }
    .navbar {
      background: rgba(255, 245, 247, 0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(244, 114, 182, 0.2);
      transition: all 0.2s ease;
      padding: 0.5rem 1rem;
      font-weight: 600;
    }
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .navbar .navbar-brand {
      font-size: 1.6rem;
      color: var(--main);
      letter-spacing: 1px;
      text-shadow: 0 2px 8px rgba(244,114,182,0.2);
    }
    .navbar .nav-link {
      color: var(--text);
      border-radius: 50rem;
      padding: 0.4rem 1rem;
      margin: 0 0.1rem;
      font-size: 0.95rem;
      transition: 0.2s;
    }
    .navbar .nav-link:hover {
      background-color: var(--main);
      color: white;
    }
    .hero-tags {
      background: transparent;
      padding: 2.5rem 0 0.8rem;
      text-align: center;
    }
    .hero-tags .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 0.9rem;
      justify-content: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .hero-tags .tag {
      background: white;
      padding: 0.4rem 1.2rem;
      border-radius: 50rem;
      box-shadow: 0 2px 10px rgba(244,114,182,0.15);
      font-size: 0.9rem;
      color: #a34a6a;
      font-weight: 500;
      border: 1px solid #ffe1ec;
      transition: 0.15s;
      cursor: default;
    }
    .hero-tags .tag:hover {
      background: var(--main);
      color: white;
      transform: translateY(-2px);
    }
    .section-title {
      border-left: 8px solid var(--main);
      padding-left: 1rem;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 2rem 0 1rem;
      color: #3a1e26;
    }
    .section-title i { color: var(--main); margin-right: 8px; }
    
    /* 卡片布局 */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1.2rem;
    }
    .movie-card {
      background: white;
      border-radius: var(--radius);
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      transition: all 0.25s cubic-bezier(0.2, 0, 0.2, 1);
      overflow: hidden;
      cursor: pointer;
      position: relative;
      border: 1px solid #fde3ec;
    }
    .movie-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 30px rgba(244, 114, 182, 0.18);
    }
    .movie-card img {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      display: block;
      background: #ffe9f1;
    }
    .movie-info {
      padding: 0.5rem 0.6rem 0.7rem;
    }
    .movie-title {
      font-weight: 700;
      font-size: 0.9rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 2px;
    }
    .movie-meta {
      font-size: 0.7rem;
      color: #956b77;
      display: flex;
      justify-content: space-between;
    }
    .badge-ep {
      position: absolute;
      top: 8px;
      left: 8px;
      background: var(--accent);
      color: #4a2a2a;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      border-radius: 50rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .rating-badge {
      background: var(--main);
      color: white;
      font-size: 0.7rem;
      padding: 0.1rem 0.5rem;
      border-radius: 50rem;
      font-weight: 600;
      letter-spacing: 0.3px;
    }
    .num-badge {
      background: #ffe9f1;
      color: #d6336c;
      font-size: 0.75rem;
      font-weight: 800;
      width: 1.7rem; height: 1.7rem;
      display: inline-flex; align-items: center; justify-content: center;
      border-radius: 50rem;
    }
    .hot-list .list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: white;
      padding: 0.6rem 1rem;
      border-radius: 50rem;
      margin-bottom: 0.5rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
      transition: 0.2s;
    }
    .hot-list .list-item:hover { background: #fff0f6; }
    .hot-list .rank { color: var(--main); font-weight: 800; width: 24px; }
    .left-filter {
      position: sticky;
      top: 80px;
    }
    .filter-panel {
      background: white;
      padding: 1.2rem 1rem;
      border-radius: var(--radius);
      box-shadow: var(--soft-shadow);
      border: 1px solid #f8d7e6;
    }
    .filter-panel .filter-btn {
      display: block;
      width: 100%;
      text-align: left;
      background: transparent;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 50rem;
      color: var(--text);
      font-weight: 500;
      transition: 0.1s;
      border: 1px solid transparent;
    }
    .filter-panel .filter-btn:hover {
      background: #ffe4ef;
      border-color: var(--main);
    }
    .filter-panel .filter-btn.active {
      background: var(--main);
      color: white;
    }
    .btn-more-round {
      background: white;
      border: 1px solid var(--main);
      color: var(--main);
      border-radius: 50rem;
      padding: 0.4rem 1.5rem;
      font-size: 0.85rem;
    }
    .btn-more-round:hover {
      background: var(--main);
      color: white;
    }
    /* 弹窗 */
    .movie-modal {
      position: fixed;
      inset: 0;
      background: rgba(20, 5, 10, 0.5);
      backdrop-filter: blur(12px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    .modal-card {
      width: min(650px, 92vw);
      background: rgba(255, 255, 255, 0.92);
      border-radius: 28px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.3);
      display: flex;
      overflow: hidden;
      border: 2px solid #fff;
    }
    .modal-img {
      width: 40%;
      min-width: 200px;
      background-size: cover;
      background-position: center;
      background-image: url('{随机图片}');
    }
    .modal-content-right {
      padding: 1.5rem;
      flex: 1;
    }
    .modal-close {
      position: absolute;
      top: 20px; right: 30px;
      font-size: 2.5rem;
      color: white;
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
      text-shadow: 0 2px 10px black;
      z-index: 10;
    }
    .step-guide {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      background: #fff2f8;
      padding: 1.5rem;
      border-radius: var(--radius);
    }
    .step-item {
      flex: 1 1 150px;
      background: white;
      border-radius: 18px;
      padding: 0.8rem;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.03);
    }
    footer {
      background: #fde8f0;
      padding: 2rem 0;
      margin-top: 2.5rem;
      border-radius: 48px 48px 0 0;
    }
    .footer-link a {
      color: var(--text);
      text-decoration: none;
    }
    .friend-links a {
      margin-right: 1.2rem;
      color: #6e3a4b;
    }
    #backToTop {
      position: fixed;
      bottom: 30px; right: 30px;
      background: var(--main);
      color: white;
      width: 44px; height: 44px;
      border-radius: 50rem;
      display: none;
      align-items: center; justify-content: center;
      border: none;
      box-shadow: 0 6px 18px rgba(244,114,182,0.5);
      z-index: 999;
    }
    .gadget-reco {
      background: white;
      border-radius: 30px;
      padding: 1.2rem 2rem;
      box-shadow: var(--soft-shadow);
      text-align: center;
    }
    @media (max-width: 768px) {
      .poster-grid { grid-template-columns: repeat(2, 1fr); }
      .modal-card { flex-direction: column; }
      .modal-img { width: 100%; height: 180px; }
    }

/* --- 子页面追加 --- */
/* 关于我们页专属小样式 */
        .about-hero { padding: 3rem 0 2rem; }
.about-card { background: rgba(255,255,255,.6); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.8rem; box-shadow: var(--soft-shadow); }
.about-card h2 { color: var(--main); font-weight: 800; font-size: 1.5rem; margin-bottom: 1.2rem; }
.about-card h2 i { margin-right: .5rem; color: var(--accent); }
.about-card p { line-height: 1.9; color: var(--text); font-size: .98rem; }
.about-card ul { padding-left: 1.2rem; }
.about-card li { margin-bottom: .5rem; line-height: 1.7; }
.about-card .highlight { color: var(--main); font-weight: 600; }
.about-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
.stat-item { flex: 1; min-width: 120px; background: var(--bg); border-radius: var(--radius-sm); padding: 1rem 1.2rem; text-align: center; }
.stat-item .num { font-size: 1.8rem; font-weight: 800; color: var(--main); }
.stat-item .label { font-size: .85rem; color: var(--text); opacity: .75; }
.values-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 1rem; }
.value-item { background: var(--bg); border-radius: var(--radius-sm); padding: 1.2rem; text-align: center; }
.value-item i { font-size: 1.8rem; color: var(--main); margin-bottom: .6rem; }
.value-item .value-title { font-weight: 600; font-size: 1rem; color: var(--text); }
.value-item .value-desc { font-size: .85rem; color: var(--text); opacity: .7; margin-top: .3rem; }
.timeline-item { position: relative; padding-left: 2rem; margin-bottom: 1.2rem; }
.timeline-item::before { content: ''; position: absolute; left: .5rem; top: .4rem; width: 10px; height: 10px; background: var(--main); border-radius: 50%; }
.timeline-item .time { font-weight: 700; color: var(--main); font-size: .9rem; }
.timeline-item .desc { color: var(--text); font-size: .95rem; margin-top: .2rem; }

/* --- 子页面追加 --- */
/* 观影指南页面专属样式 */
        .guide-hero {
            background: linear-gradient(135deg, rgba(244,114,182,0.15) 0%, rgba(251,191,36,0.1) 100%);
            border-radius: var(--radius);
            padding: 3rem 2rem;
            margin-bottom: 2.5rem;
            text-align: center;
            border: 1px solid rgba(244,114,182,0.2);
        }
.guide-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
        }
.guide-hero p {
            color: rgba(74,37,48,0.8);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
.guide-section {
            margin-bottom: 3rem;
        }
.guide-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.guide-section h2 i {
            color: var(--main);
        }
.guide-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }
.guide-section p {
            color: rgba(74,37,48,0.85);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
.guide-section ul, .guide-section ol {
            color: rgba(74,37,48,0.85);
            line-height: 1.8;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.guide-section li {
            margin-bottom: 0.5rem;
        }
.guide-card {
            background: rgba(255,255,255,0.6);
            border: 1px solid rgba(244,114,182,0.15);
            border-radius: var(--radius-sm);
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--soft-shadow);
        }
.guide-card:hover {
            border-color: rgba(244,114,182,0.35);
        }
.guide-card .icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(244,114,182,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--main);
            margin-bottom: 1rem;
        }
.guide-tip {
            background: rgba(251,191,36,0.12);
            border-left: 4px solid var(--accent);
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin: 1.5rem 0;
        }
.guide-tip p {
            margin-bottom: 0;
            color: rgba(74,37,48,0.9);
        }
.guide-tip i {
            color: var(--accent);
            margin-right: 0.4rem;
        }
.step-item .num-badge {
            min-width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.step-item .step-content {
            flex: 1;
        }
.step-item .step-content h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
.step-item .step-content p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
.faq-item {
            border-bottom: 1px solid rgba(244,114,182,0.15);
            padding: 1.2rem 0;
        }
.faq-item:last-child {
            border-bottom: none;
        }
.faq-item h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
        }
.faq-item h3 i {
            color: var(--main);
            margin-right: 0.4rem;
        }
.faq-item p {
            font-size: 0.95rem;
            margin-bottom: 0;
            padding-left: 1.8rem;
        }
.tag-badge {
            display: inline-block;
            background: rgba(244,114,182,0.12);
            color: var(--main);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin: 0.2rem 0.3rem;
        }
.gadget-reco .gadget-item {
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(244,114,182,0.12);
            border-radius: var(--radius-sm);
            padding: 1.2rem;
        }
.gadget-reco .gadget-item h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
        }
.gadget-reco .gadget-item p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }