:root {
  --primary: #f472b6;
  --accent: #fbbf24;
  --bg: #fff5f7;
  --text: #4a2530;
  --card-bg: #ffffff;
  --border: #4a2530;
  --shadow: 8px 8px 0px 0px rgba(74, 37, 48, 1);
  --shadow-hover: 12px 12px 0px 0px rgba(74, 37, 48, 1);
  --radius: 0px;
}
* { border-radius: 0 !important; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans SC', 'Inter', sans-serif;
  line-height: 1.8;
}
h1, h2, h3, h4, h5, h6, .navbar-brand, .hero-title, .section-title, .footer-brand {
  font-family: 'Noto Serif SC', 'Inter', serif;
  font-weight: 900;
}
a { text-decoration: none; color: inherit; }
.btn { border: 3px solid var(--border); box-shadow: 4px 4px 0px 0px var(--border); font-weight: 700; transition: all 0.2s ease; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px 0px var(--border); }
.navbar {
  background: var(--bg) !important;
  border-bottom: 3px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand { font-size: 1.8rem; font-weight: 900; letter-spacing: 1px; }
.navbar-brand i { color: var(--primary); margin-right: 8px; }
.navbar .nav-link { font-weight: 700; color: var(--text) !important; margin: 0 10px; border: 2px solid transparent; padding: 6px 12px !important; transition: all 0.2s; }
.navbar .nav-link:hover { border-color: var(--border); background: var(--accent); }
.navbar-toggler { border: 3px solid var(--border); box-shadow: 3px 3px 0px 0px var(--border); }
.navbar-toggler:focus { box-shadow: none; }

.hero-section {
  background: linear-gradient(135deg, #fff5f7 0%, #fce7f3 50%, #fdf3d8 100%);
  border-bottom: 4px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(45deg, var(--primary) 0px, var(--primary) 15px, transparent 15px, transparent 30px);
  opacity: 0.1;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-title { font-size: 3.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.hero-title .highlight { color: var(--primary); border-bottom: 6px solid var(--accent); display: inline-block; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 40px; font-weight: 400; }
.hero-buttons .btn { margin-right: 20px; padding: 12px 30px; font-size: 1.1rem; }
.hero-feature-row { margin-top: 60px; }
.hero-feature {
  background: var(--card-bg);
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-feature i { font-size: 2rem; color: var(--primary); }

.section-block { padding: 70px 0; border-bottom: 3px dashed rgba(74, 37, 48, 0.2); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 35px; }
.section-title {
  font-size: 2rem;
  font-weight: 900;
  display: inline-block;
  border-left: 10px solid var(--accent);
  padding-left: 20px;
  line-height: 1.2;
}
.section-more { font-weight: 700; border-bottom: 3px solid var(--primary); padding-bottom: 2px; transition: all 0.2s; }
.section-more:hover { color: var(--primary); border-bottom-color: var(--accent); }

.movie-card {
  background: var(--card-bg);
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  margin-bottom: 30px;
}
.movie-card:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.movie-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #f0e0e5;
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.movie-card:hover .movie-poster img { transform: scale(1.05); }
.quality-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 10px;
  border: 2px solid var(--border);
  z-index: 2;
}
.quality-badge.bg-primary { background: var(--primary); }
.movie-info { padding: 15px; }
.movie-title { font-weight: 900; font-size: 1rem; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.movie-meta { font-size: 0.85rem; color: #6b4a55; display: flex; align-items: center; gap: 8px; }
.rating { color: var(--accent); font-weight: 700; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.movie-type { border: 1px solid rgba(74, 37, 48, 0.3); padding: 0px 6px; font-size: 0.75rem; }

.list-card {
  background: var(--card-bg);
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 12px;
  transition: all 0.2s;
  cursor: pointer;
}
.list-card:hover { transform: translateX(-5px); box-shadow: 5px 5px 0px 0px var(--border); border-color: var(--primary); }
.list-rank {
  font-size: 1.5rem;
  font-weight: 900;
  width: 50px;
  text-align: center;
  color: var(--primary);
  font-family: 'Noto Serif SC', serif;
}
.list-rank.top1 { color: #ff6b35; }
.list-rank.top2 { color: #e0a800; }
.list-rank.top3 { color: #c0a080; }
.list-info { flex: 1; padding: 0 15px; }
.list-title { font-weight: 700; font-size: 1rem; }
.list-sub { font-size: 0.8rem; color: #6b4a55; }
.list-rating { font-weight: 900; color: var(--accent); font-size: 1.1rem; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }

.faq-section { background: #fef0f5; }
.faq-item { border: 3px solid var(--border); margin-bottom: 15px; background: var(--card-bg); }
.faq-header { padding: 15px 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.faq-header:hover { background: #fce7f3; }
.faq-header i { transition: transform 0.3s; }
.faq-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; border-top: 0px solid transparent; }
.faq-item.active .faq-body { padding: 15px 20px; max-height: 300px; border-top: 2px dashed rgba(74, 37, 48, 0.2); }
.faq-item.active .faq-header i { transform: rotate(180deg); }

.tip-list { list-style: none; padding: 0; }
.tip-list li {
  background: var(--card-bg);
  border: 3px solid var(--border);
  box-shadow: 4px 4px 0px 0px var(--border);
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.tip-list i { font-size: 1.5rem; color: var(--primary); }

.mood-tags { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; }
.mood-tag {
  background: var(--card-bg);
  border: 3px solid var(--border);
  box-shadow: 3px 3px 0px 0px var(--border);
  padding: 10px 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.mood-tag:hover, .mood-tag.active { background: var(--accent); transform: translate(-2px, -2px); box-shadow: 5px 5px 0px 0px var(--border); }
.mood-result { margin-top: 20px; }
.mood-movie {
  background: var(--card-bg);
  border: 3px solid var(--border);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.2s;
  cursor: pointer;
}
.mood-movie:hover { border-color: var(--primary); transform: translateX(-5px); }

.friend-links {
  background: #fce7f3;
  border-top: 4px solid var(--border);
  border-bottom: 4px solid var(--border);
  padding: 40px 0;
}
.friend-links h3 { font-size: 1.3rem; margin-bottom: 20px; font-weight: 900; }
.friend-links .links-row { display: flex; flex-wrap: wrap; gap: 10px; }
.friend-links .links-row span { 
  background: var(--card-bg);
  border: 2px solid var(--border);
  padding: 6px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 2px 2px 0px 0px var(--border);
  transition: all 0.2s;
}
.friend-links .links-row span:hover { background: var(--accent); transform: translate(-2px, -2px); box-shadow: 4px 4px 0px 0px var(--border); }

footer {
  background: var(--text);
  color: #fff5f7;
  padding: 40px 0 20px;
  border-top: 6px solid var(--accent);
}
.footer-brand { font-size: 1.8rem; font-weight: 900; }
.footer-links a { color: #fce7f3; margin-right: 20px; opacity: 0.8; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255, 245, 247, 0.2); margin-top: 30px; padding-top: 20px; font-size: 0.9rem; }

/* 抽屉弹窗 */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }
.drawer-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 6px solid var(--border);
  z-index: 2001;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}
.drawer-panel.show { transform: translateY(0); }
.drawer-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  cursor: pointer;
  background: var(--accent);
  border: 3px solid var(--border);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  z-index: 10;
  transition: all 0.2s;
}
.drawer-close:hover { background: var(--primary); color: white; transform: rotate(90deg); }
.drawer-content { padding: 30px 40px 40px; }
.drawer-poster { width: 200px; border: 3px solid var(--border); box-shadow: var(--shadow); margin-right: 30px; }
.drawer-poster img { width: 100%; display: block; }
.drawer-details { flex: 1; }
.drawer-details h2 { font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.drawer-details .meta { margin-bottom: 15px; }
.drawer-details .meta span { border: 2px solid var(--border); padding: 2px 10px; margin-right: 10px; background: white; display: inline-block; margin-bottom: 8px; }
.drawer-details .plot { margin-top: 15px; background: white; border: 3px solid var(--border); padding: 15px; font-size: 0.95rem; }

/* 回到顶部 */
.back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--primary);
  border: 3px solid var(--border);
  box-shadow: 4px 4px 0px 0px var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  color: white;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--accent); color: var(--text); }

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.5rem; }
  .drawer-content { padding: 20px; }
  .drawer-poster { width: 100%; margin-right: 0; margin-bottom: 20px; }
}

/* --- 子页面追加 --- */
.about-hero { background: var(--bg); }
.about-section { padding: 4rem 0; }
.about-title { font-weight: 900; letter-spacing: -0.02em; }
.about-lede { font-size: 1.2rem; line-height: 1.8; color: var(--text); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.8rem; margin-top: 2rem; }
.feature-item { background: var(--card-bg); border: 2px solid var(--border); box-shadow: var(--shadow); padding: 1.8rem 1.5rem; transition: transform .2s, box-shadow .2s; }
.feature-item:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hover); }
.feature-item i { color: var(--primary); font-size: 2rem; margin-bottom: 1rem; }
.feature-item h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .8rem; }
.timeline { list-style: none; padding-left: 0; border-left: 3px solid var(--primary); margin-left: 0.5rem; }
.timeline li { padding-left: 1.8rem; margin-bottom: 1.8rem; position: relative; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; background: var(--accent); border: 2px solid var(--border); }
.list-badge { display: inline-block; background: var(--primary); color: #fff; padding: 0.2rem 1rem; font-weight: 600; font-size: .85rem; margin-right: .5rem; }
.text-contrast { background: var(--card-bg); padding: 1.8rem; border: 2px solid var(--border); box-shadow: var(--shadow); }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .page-header {
            background: var(--bg);
            padding: 80px 0 40px;
            border-bottom: 2px solid var(--border);
        }
.page-header h1 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 10px;
        }
.page-header p {
            font-size: 1.1rem;
            color: var(--text);
            opacity: 0.8;
            max-width: 700px;
        }
.filter-bar {
            background: var(--card-bg);
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            padding: 20px;
            margin-bottom: 40px;
        }
.filter-bar .filter-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
.filter-bar .filter-group:last-child {
            margin-bottom: 0;
        }
.filter-bar .filter-label {
            font-weight: 700;
            color: var(--text);
            min-width: 60px;
        }
.filter-bar .filter-btn {
            padding: 6px 16px;
            background: transparent;
            border: 2px solid var(--border);
            color: var(--text);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 0.9rem;
        }
.filter-bar .filter-btn:hover,
        .filter-bar .filter-btn.active {
            background: var(--primary);
            color: #fff;
        }
.movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
.pagination-wrap {
            display: flex;
            justify-content: center;
            margin: 40px 0 60px;
        }
.pagination-wrap .page-link {
            background: var(--card-bg);
            border: 2px solid var(--border);
            color: var(--text);
            margin: 0 5px;
            padding: 8px 16px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
.pagination-wrap .page-link:hover,
        .pagination-wrap .page-link.active {
            background: var(--primary);
            color: #fff;
        }
.page-header {
                padding: 60px 0 30px;
            }
.page-header h1 {
                font-size: 1.8rem;
            }
.movie-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 20px;
            }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
    .tv-hero {
      background: linear-gradient(135deg, var(--bg) 0%, #fde3ea 100%);
      border-bottom: 3px solid var(--border);
      padding: 60px 0 40px;
      position: relative;
      overflow: hidden;
    }
.tv-hero::after {
      content: '';
      position: absolute;
      right: -40px;
      top: -40px;
      width: 180px;
      height: 180px;
      background: var(--accent);
      opacity: 0.15;
      border-radius: 50%;
      z-index: 0;
    }
.tv-hero-content {
      position: relative;
      z-index: 1;
    }
.tv-hero h1 {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 15px;
      letter-spacing: -1px;
    }
.tv-hero p {
      font-size: 1.15rem;
      color: var(--text);
      opacity: 0.85;
      max-width: 700px;
      margin-bottom: 25px;
    }
.tv-filter-bar {
      background: var(--card-bg);
      border: 2px solid var(--border);
      box-shadow: var(--shadow);
      padding: 20px 24px;
      margin: -25px 0 40px;
      position: relative;
      z-index: 5;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: center;
      justify-content: space-between;
    }
.tv-filter-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
.tv-filter-btn {
      background: transparent;
      border: 2px solid var(--border);
      color: var(--text);
      padding: 6px 16px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.2s;
    }
.tv-filter-btn:hover, .tv-filter-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
.tv-search-box {
      display: flex;
      align-items: center;
      border: 2px solid var(--border);
      background: var(--card-bg);
    }
.tv-search-box input {
      border: none;
      outline: none;
      padding: 8px 12px;
      background: transparent;
      color: var(--text);
      font-size: 0.9rem;
      width: 220px;
    }
.tv-search-box button {
      background: var(--primary);
      border: none;
      color: #fff;
      padding: 8px 16px;
      font-weight: 700;
      cursor: pointer;
    }
.tv-section {
      padding: 50px 0;
    }
.tv-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
      border-bottom: 3px solid var(--border);
      padding-bottom: 12px;
    }
.tv-section-title {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.tv-section-title i {
      color: var(--primary);
    }
.tv-section-more {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 0.9rem;
    }
.tv-section-more:hover {
      text-decoration: underline;
    }
.tv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 25px 20px;
    }
.tv-card {
      position: relative;
      cursor: pointer;
      transition: transform 0.25s;
    }
.tv-card:hover {
      transform: translateY(-5px);
    }
.tv-poster {
      position: relative;
      overflow: hidden;
      border: 2px solid var(--border);
      box-shadow: var(--shadow);
      aspect-ratio: 3/4;
      background: #f0d0d8;
    }
.tv-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
.tv-poster .quality-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      background: var(--accent);
      color: var(--text);
      font-size: 0.7rem;
      font-weight: 800;
      padding: 2px 8px;
      border: 2px solid var(--border);
    }
.tv-card-info {
      margin-top: 10px;
    }
.tv-card-title {
      font-weight: 700;
      color: var(--text);
      font-size: 0.95rem;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
.tv-card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text);
      opacity: 0.7;
    }
.tv-rating {
      color: var(--accent);
      font-weight: 700;
    }
.tv-featured-row {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }
.tv-featured-main {
      grid-column: span 8;
      border: 2px solid var(--border);
      box-shadow: var(--shadow);
      background: var(--card-bg);
      overflow: hidden;
      position: relative;
    }
.tv-featured-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 380px;
    }
.tv-featured-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px 25px 20px;
      background: linear-gradient(to top, rgba(74,37,48,0.9) 0%, transparent 100%);
      color: #fff;
    }
.tv-featured-overlay .tag {
      background: var(--accent);
      color: var(--text);
      font-weight: 800;
      font-size: 0.75rem;
      padding: 3px 10px;
      display: inline-block;
      margin-bottom: 10px;
    }
.tv-featured-overlay h3 {
      font-weight: 800;
      font-size: 1.5rem;
      margin-bottom: 8px;
    }
.tv-featured-overlay p {
      font-size: 0.9rem;
      opacity: 0.9;
      margin-bottom: 10px;
    }
.tv-featured-side {
      grid-column: span 4;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
.tv-side-card {
      border: 2px solid var(--border);
      background: var(--card-bg);
      box-shadow: var(--shadow);
      padding: 20px;
      flex: 1;
    }
.tv-side-card h4 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text);
      border-bottom: 2px solid var(--primary);
      padding-bottom: 8px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
.tv-side-card h4 i {
      color: var(--primary);
    }
.tv-side-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
.tv-side-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed var(--border);
      font-size: 0.9rem;
    }
.tv-side-list li:last-child {
      border-bottom: none;
    }
.tv-side-list .rank {
      font-weight: 800;
      color: var(--primary);
      width: 24px;
      display: inline-block;
    }
.tv-side-list .title {
      flex: 1;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
.tv-side-list .score {
      font-weight: 700;
      color: var(--accent);
    }
.tv-guide {
      background: var(--card-bg);
      border: 2px solid var(--border);
      box-shadow: var(--shadow);
      padding: 30px;
      margin: 40px 0;
    }
.tv-guide h3 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.tv-guide h3 i {
      color: var(--primary);
    }
.tv-guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
.tv-guide-item {
      border: 2px solid var(--border);
      padding: 20px;
      background: var(--bg);
    }
.tv-guide-item .icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 12px;
    }
.tv-guide-item h5 {
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }
.tv-guide-item p {
      font-size: 0.85rem;
      color: var(--text);
      opacity: 0.8;
      margin: 0;
      line-height: 1.6;
    }
.tv-featured-main { grid-column: span 12; }
.tv-featured-side { grid-column: span 12; }
.tv-featured-main img { min-height: 300px; }
.tv-hero h1 { font-size: 2rem; }
.tv-filter-bar { flex-direction: column; align-items: stretch; }
.tv-search-box input { width: 100%; }
.tv-search-box { width: 100%; }
.tv-search-box input { flex: 1; }
.tv-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 15px; }

/* --- 子页面追加 --- */
/* 本页专属样式 —— 补充站点CSS未覆盖的部分 */
        body { font-family: 'Noto Sans SC', 'Inter', sans-serif; background: var(--bg); color: var(--text); }
.variety-hero {
            background: var(--card-bg);
            border: 3px solid var(--border);
            box-shadow: var(--shadow);
            padding: 3rem 2rem;
            margin: 2rem 0;
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
        }
.variety-hero::before {
            content: "";
            position: absolute;
            top: -30px; right: -30px;
            width: 120px; height: 120px;
            background: var(--accent);
            opacity: 0.15;
            transform: rotate(45deg);
        }
.variety-hero h1 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
        }
.variety-hero p {
            font-size: 1.1rem;
            max-width: 800px;
            position: relative;
        }
.variety-section {
            background: var(--card-bg);
            border: 3px solid var(--border);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: var(--radius);
            transition: box-shadow 0.3s ease;
        }
.variety-section:hover {
            box-shadow: var(--shadow-hover);
        }
.variety-section h2 {
            color: var(--primary);
            font-weight: 800;
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.6rem;
            display: inline-block;
        }
.variety-section h3 {
            color: var(--text);
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }
.variety-section p {
            line-height: 1.9;
            margin-bottom: 1rem;
        }
.variety-section ul {
            list-style: none;
            padding: 0;
        }
.variety-section ul li {
            padding: 0.5rem 0;
            padding-left: 1.8rem;
            position: relative;
            line-height: 1.8;
        }
.variety-section ul li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 900;
        }
.feature-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
.feature-item p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }
.policy-box {
            background: var(--bg);
            border-left: 5px solid var(--primary);
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
.policy-box strong {
            color: var(--primary);
        }
.steps-list {
            counter-reset: step;
        }
.steps-list li {
            counter-increment: step;
            padding-left: 3rem !important;
        }
.steps-list li::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }
.variety-hero h1 { font-size: 1.8rem; }
.variety-section { padding: 1.5rem; }

/* --- 子页面追加 --- */
/* 本页专属样式，自动合并进站点CSS */
        .more-hero {
            background: var(--bg);
            padding: 80px 0 40px;
            text-align: center;
        }
.more-hero h1 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--text);
            text-shadow: 4px 4px 0 var(--accent);
            margin-bottom: 20px;
        }
.more-hero p {
            font-size: 1.2rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
        }
.info-section {
            background: var(--card-bg);
            border: 3px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
.info-section:hover {
            box-shadow: var(--shadow-hover);
            transform: translate(-2px, -2px);
        }
.info-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            border-bottom: 3px solid var(--accent);
            padding-bottom: 15px;
            margin-bottom: 25px;
            display: inline-block;
        }
.info-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-top: 25px;
            margin-bottom: 10px;
        }
.info-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
        }
.info-section ul {
            padding-left: 20px;
            color: var(--text);
            line-height: 2;
        }
.info-section li {
            margin-bottom: 8px;
        }
.feature-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-right: 10px;
            display: inline-block;
            vertical-align: middle;
        }
.card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
.info-card {
            background: var(--card-bg);
            border: 3px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
.info-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translate(-2px, -2px);
        }
.info-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.info-card p {
            color: var(--text);
            line-height: 1.7;
        }
.faq-item h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
.faq-item p {
            color: var(--text);
            line-height: 1.8;
            margin: 0;
        }
.cta-section {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: 3px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 50px 40px;
            text-align: center;
            margin: 60px 0;
        }
.cta-section h2 {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 3px 3px 0 var(--border);
        }
.cta-section p {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 25px;
        }
.more-hero h1 {
                font-size: 2.2rem;
            }
.more-hero p {
                font-size: 1rem;
            }
.info-section {
                padding: 25px;
            }
.info-section h2 {
                font-size: 1.5rem;
            }
.card-grid {
                grid-template-columns: 1fr;
            }

/* --- 子页面追加 --- */
.privacy-hero {
            background: var(--primary);
            color: var(--text);
            padding: 60px 0;
            border-bottom: 3px solid var(--border);
        }
.privacy-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }
.privacy-section {
            background: var(--card-bg);
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
        }
.privacy-section h2 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
.privacy-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.privacy-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
.privacy-section strong {
            font-weight: 700;
            color: var(--text);
        }
.privacy-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--text);
            padding: 4px 12px;
            font-size: 0.8rem;
            font-weight: 700;
            border: 2px solid var(--border);
            margin-right: 8px;
            margin-bottom: 8px;
        }
.update-date {
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.7;
            margin-top: 30px;
            text-align: center;
        }
.contact-block {
            background: var(--primary);
            border: 2px solid var(--border);
            padding: 20px;
            margin-top: 20px;
        }
.contact-block a {
            color: var(--text);
            font-weight: 700;
            text-decoration: underline;
        }
.active-nav {
            background: var(--primary) !important;
            color: var(--text) !important;
            font-weight: 700;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明 */
        .disclaimer-section {
            padding: 80px 0;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 30px;
            transition: box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
.disclaimer-card h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 24px;
            background: var(--accent);
        }
.disclaimer-card p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.disclaimer-card ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-card ul li {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
.disclaimer-card strong {
            color: var(--primary);
            font-weight: 600;
        }
.back-home {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            border: 2px solid var(--border);
            box-shadow: 4px 4px 0px 0px rgba(74, 37, 48, 1);
            text-decoration: none;
            transition: all 0.3s ease;
        }
.back-home:hover {
            box-shadow: 6px 6px 0px 0px rgba(74, 37, 48, 1);
            transform: translate(-2px, -2px);
            color: #fff;
        }
.highlight-text {
            background: var(--accent);
            padding: 2px 8px;
            font-weight: 600;
            color: var(--text);
        }
.disclaimer-card {
                padding: 25px;
            }

/* --- 子页面追加 --- */
/* 页面专属补充样式,自动合并进站点CSS */
        .contact-hero {
            padding: 80px 0 50px;
            background: var(--bg);
        }
.contact-title {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 15px;
            border: 3px solid var(--border);
            background: var(--card-bg);
            padding: 20px 30px;
            box-shadow: var(--shadow);
            display: inline-block;
            transform: rotate(-1deg);
        }
.contact-subtitle {
            font-size: 1.2rem;
            color: var(--text);
            opacity: 0.85;
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.8;
        }
.contact-card {
            background: var(--card-bg);
            border: 3px solid var(--border);
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            padding: 35px 30px;
            margin-bottom: 30px;
            transition: transform .3s, box-shadow .3s;
        }
.contact-card:hover {
            transform: translate(-3px, -3px);
            box-shadow: var(--shadow-hover);
        }
.contact-card-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
.contact-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 8px;
            display: inline-block;
        }
.contact-card p, .contact-card a {
            color: var(--text);
            font-size: 1rem;
            line-height: 1.8;
        }
.contact-card a {
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: var(--accent);
        }
.contact-card a:hover {
            color: var(--primary);
        }
.contact-form-wrapper {
            background: var(--card-bg);
            border: 3px solid var(--border);
            box-shadow: var(--shadow);
            padding: 40px 35px;
            margin-top: 20px;
        }
.form-label {
            color: var(--text);
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 8px;
            display: block;
        }
.form-control {
            background: #fff;
            border: 2px solid var(--border);
            border-radius: 0;
            color: var(--text);
            padding: 12px 15px;
            font-size: 1rem;
            margin-bottom: 20px;
            transition: border-color .2s, box-shadow .2s;
        }
.form-control:focus {
            background: #fff;
            border-color: var(--primary);
            color: var(--text);
            box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.15);
            outline: none;
        }
.form-control::placeholder {
            color: #a78b96;
            opacity: 0.7;
        }
textarea.form-control {
            min-height: 140px;
            resize: vertical;
        }
.btn-send {
            background: var(--primary);
            color: #fff;
            border: 3px solid var(--border);
            border-radius: 0;
            font-weight: 800;
            padding: 12px 35px;
            font-size: 1.1rem;
            transition: all .3s;
            box-shadow: 4px 4px 0px rgba(74, 37, 48, 1);
        }
.btn-send:hover {
            transform: translate(-2px, -2px);
            box-shadow: 7px 7px 0px rgba(74, 37, 48, 1);
            background: var(--accent);
            color: var(--text);
        }
.faq-item:hover {
            box-shadow: var(--shadow);
        }
.faq-question {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.faq-question i {
            color: var(--primary);
        }
.faq-answer {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            padding-left: 30px;
        }
.contact-info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.contact-info-list li {
            padding: 10px 0;
            border-bottom: 2px dashed rgba(74, 37, 48, 0.15);
            color: var(--text);
            font-size: 1rem;
        }
.contact-info-list li:last-child {
            border-bottom: none;
        }
.contact-info-list i {
            color: var(--primary);
            width: 28px;
            font-size: 1.1rem;
        }
.social-links a {
            display: inline-block;
            font-size: 1.8rem;
            color: var(--text);
            margin-right: 20px;
            transition: color .3s, transform .3s;
        }
.social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }
.contact-title {
                font-size: 2rem;
                padding: 15px 20px;
            }
.contact-subtitle {
                font-size: 1rem;
            }
.contact-form-wrapper {
                padding: 25px 20px;
            }

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