:root {
  --main: #f97316;
  --accent: #facc15;
  --bg: #1a1410;
  --text: #fff7ed;
  --card-bg: #241d17;
  --border: #3a2e24;
  --muted: #b8a99a;
}
* { box-sizing: border-box; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', '思源黑体', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6, .serif-title {
  font-family: 'Source Han Serif SC', '思源宋体', 'Noto Serif SC', 'Songti SC', serif;
}
a { color: inherit; text-decoration: none; }
.navbar-custom {
  background-color: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  z-index: 100;
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--main) !important;
  letter-spacing: -0.5px;
  font-family: 'Source Han Serif SC', serif;
}
.navbar-brand i { color: var(--accent); margin-right: 6px; }
.nav-link-custom {
  color: var(--text) !important;
  margin: 0 12px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-link-custom:hover { color: var(--main) !important; }
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main);
  transition: width 0.2s;
}
.nav-link-custom:hover::after { width: 100%; }
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff7ed' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.hero-section {
  position: relative;
  padding: 8rem 0 5rem;
  text-align: center;
  background: linear-gradient(135deg, #1a1410 0%, #2a1f18 50%, #1a1410 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent 70%);
  z-index: 1;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 50%;
  height: 90%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.1), transparent 70%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--main), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-custom {
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom {
  background: var(--main);
  color: #1a1410;
}
.btn-primary-custom:hover { background: #fb923c; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3); }
.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--main) !important;
  color: var(--main);
}
.btn-outline-custom:hover { background: rgba(249, 115, 22, 0.1); transform: translateY(-2px); }
.section-wrapper {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.section-tag {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--main);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--main);
  border-radius: 3px;
}
.section-desc {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 800px;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
  justify-content: center;
}
.category-item {
  padding: 8px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--muted);
}
.category-item:hover, .category-item.active {
  background: var(--main);
  color: #1a1410;
  border-color: var(--main);
  transform: translateY(-2px);
}
.movie-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  height: 100%;
  position: relative;
}
.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #2a221d;
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.movie-card:hover .movie-poster img { transform: scale(1.08); }
.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.95) 0%, rgba(26, 20, 16, 0.3) 40%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.movie-card:hover .poster-overlay { opacity: 1; }
.poster-plot {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.badge-format {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--main);
  color: #1a1410;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 2;
}
.badge-4k {
  background: var(--accent);
  color: #1a1410;
}
.movie-info {
  padding: 14px;
}
.movie-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.movie-rating {
  color: var(--accent);
  font-weight: 700;
}
.rank-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.rank-card:hover {
  border-color: var(--main);
  transform: translateX(6px);
}
.rank-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--main);
  min-width: 50px;
  text-align: center;
  font-family: 'Source Han Serif SC', serif;
}
.rank-info { flex: 1; }
.rank-title { font-weight: 700; }
.rank-meta { font-size: 0.8rem; color: var(--muted); }
.rank-arrow { color: var(--accent); }
.horizontal-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--main) var(--card-bg);
}
.horizontal-scroll::-webkit-scrollbar { height: 6px; }
.horizontal-scroll::-webkit-scrollbar-track { background: var(--card-bg); border-radius: 10px; }
.horizontal-scroll::-webkit-scrollbar-thumb { background: var(--main); border-radius: 10px; }
.horizontal-scroll .movie-card { min-width: 180px; max-width: 180px; }
.step-section {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.05), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.step-card:hover {
  border-color: var(--main);
  transform: translateY(-4px);
}
.step-num {
  width: 50px;
  height: 50px;
  background: var(--main);
  color: #1a1410;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.step-title { font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { color: var(--muted); font-size: 0.9rem; }
.friend-links {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 3rem;
}
.friend-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--main);
}
.friend-links .links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.friend-links a {
  color: var(--muted);
  transition: color 0.2s;
  font-size: 0.9rem;
}
.friend-links a:hover { color: var(--main); }
.footer-custom {
  background: #120e0b;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--main);
  font-family: 'Source Han Serif SC', serif;
  margin-bottom: 0.5rem;
}
.footer-desc { color: var(--muted); font-size: 0.9rem; max-width: 300px; }
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--main); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--main);
  color: #1a1410;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.6);
}
.tip-list {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid var(--main);
  margin-bottom: 1rem;
}
.tip-list i { color: var(--accent); margin-right: 10px; }
.pickup-card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.pickup-card h5 { color: var(--main); margin-bottom: 0.5rem; }
.pickup-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer-overlay.active { display: block; opacity: 1; }
.drawer-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 70vh;
  background: #2a1f18;
  border-radius: 16px 16px 0 0;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  padding: 2rem;
  border-top: 3px solid var(--main);
}
.drawer-panel.open { transform: translateY(0); }
.drawer-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--main); }
.drawer-content { max-width: 800px; margin: 0 auto; }
.drawer-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 0.5rem; color: var(--main); }
.drawer-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 1rem; font-size: 0.9rem; color: var(--muted); }
.drawer-plot { color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
@media (max-width: 768px) {
  .hero-section { padding: 5rem 0 3rem; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .horizontal-scroll .movie-card { min-width: 150px; max-width: 150px; }
  .navbar-brand { font-size: 1.2rem; }
  .nav-link-custom { margin: 0 8px; font-size: 0.85rem; }
}

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            padding: 1.5rem 0;
        }
.movie-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: var(--card-bg);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
.movie-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
        }
.movie-item:hover .movie-poster img {
            transform: scale(1.05);
        }
.movie-item:hover .poster-overlay {
            opacity: 1;
        }
.filter-bar {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
.filter-btn {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--muted);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0.2rem;
        }
.filter-btn:hover, .filter-btn.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.sort-select {
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            outline: none;
            cursor: pointer;
        }
.sort-select option {
            background: var(--card-bg);
            color: var(--text);
        }
.pagination-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
.page-btn {
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.page-btn:hover, .page-btn.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
.section-feature {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }
.feature-icon {
            font-size: 2.5rem;
            color: var(--main);
            margin-bottom: 1rem;
        }
.feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.feature-text {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
        }
.movie-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 1rem;
            }
.filter-bar {
                padding: 1rem;
            }
.filter-btn {
                font-size: 0.75rem;
                padding: 0.3rem 0.8rem;
            }

/* --- 子页面追加 --- */
/* 页面专属样式 - 剧集页 */
        .episode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
        }
.episode-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s;
            position: relative;
        }
.episode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(249,115,22,.15);
            border-color: var(--main);
        }
.episode-poster {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
            background: #1a1410;
        }
.episode-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }
.episode-card:hover .episode-poster img {
            transform: scale(1.05);
        }
.episode-info {
            padding: 15px 16px 20px;
        }
.episode-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.episode-meta {
            font-size: .8rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
.episode-update {
            display: inline-block;
            background: rgba(249,115,22,.15);
            color: var(--main);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: .75rem;
            font-weight: 500;
        }
.episode-tags {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
.episode-tag {
            background: rgba(250,204,21,.1);
            color: var(--accent);
            padding: 2px 10px;
            border-radius: 4px;
            font-size: .75rem;
        }
.badge-hot {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #f97316, #facc15);
            color: #1a1410;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: .75rem;
            font-weight: 700;
            z-index: 2;
        }
.category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0 25px;
        }
.category-tab {
            padding: 8px 20px;
            border-radius: 25px;
            border: 1px solid var(--border);
            color: var(--muted);
            cursor: pointer;
            font-size: .9rem;
            transition: all .3s;
            background: transparent;
            text-decoration: none;
            display: inline-block;
        }
.category-tab:hover,
        .category-tab.active {
            background: var(--main);
            color: #fff;
            border-color: var(--main);
        }
.sort-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px 20px;
            background: rgba(36,29,23,.6);
            border: 1px solid var(--border);
            border-radius: 10px;
        }
.sort-options {
            display: flex;
            gap: 10px;
        }
.sort-btn {
            padding: 6px 16px;
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: .85rem;
            color: var(--muted);
            background: transparent;
            cursor: pointer;
            transition: all .3s;
        }
.sort-btn:hover,
        .sort-btn.active {
            background: rgba(249,115,22,.15);
            border-color: var(--main);
            color: var(--main);
        }
.result-count {
            color: var(--muted);
            font-size: .85rem;
        }
.result-count strong {
            color: var(--main);
        }
.pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 40px 0;
        }
.page-btn:hover,
        .page-btn.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.page-arrow {
            width: auto;
            padding: 0 16px;
        }
.episode-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }
.episode-poster {
                height: 220px;
            }
.category-tabs {
                gap: 8px;
            }
.category-tab {
                padding: 6px 14px;
                font-size: .8rem;
            }

/* --- 子页面追加 --- */
.variety-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
.variety-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 25px;
            height: 100%;
        }
.variety-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
.variety-poster {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
        }
.variety-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.variety-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--main);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }
.variety-update {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: var(--accent);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
.variety-info {
            padding: 15px;
        }
.variety-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.variety-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 8px;
        }
.variety-score {
            color: var(--accent);
            font-weight: 700;
        }
.variety-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
.section-header {
            margin-bottom: 30px;
        }
.section-header h1 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
.section-header .subtitle {
            color: var(--muted);
            font-size: 15px;
        }
.hot-badge {
            background: linear-gradient(135deg, #ff6b6b, #ffd93d);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
        }
.category-tabs h3 {
            font-size: 16px;
            color: var(--text);
            margin-bottom: 15px;
            font-weight: 600;
        }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .new-hero {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(250, 204, 21, 0.05) 50%, rgba(26, 20, 16, 0.9) 100%), var(--bg);
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border);
        }
.new-hero .page-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
            line-height: 1.2;
        }
.new-hero .page-title span {
            color: var(--main);
        }
.new-hero .page-subtitle {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 700px;
            line-height: 1.8;
        }
.update-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(249, 115, 22, 0.15);
            border: 1px solid var(--main);
            color: var(--main);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
.update-badge i {
            font-size: 0.9rem;
        }
.new-section {
            padding: 70px 0;
        }
.new-section-alt {
            background: rgba(36, 29, 23, 0.4);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
.new-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px;
            height: 100%;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }
.new-card:hover {
            transform: translateY(-6px);
            border-color: var(--main);
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
        }
.new-card .card-icon {
            font-size: 2rem;
            color: var(--main);
            margin-bottom: 15px;
        }
.new-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.new-card p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
.feature-list li:last-child {
            border-bottom: none;
        }
.feature-list li i {
            color: var(--main);
            margin-top: 4px;
            font-size: 1rem;
            flex-shrink: 0;
        }
.feature-list li span {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.6;
        }
.feature-list li small {
            display: block;
            color: var(--muted);
            font-size: 0.85rem;
            margin-top: 3px;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
.timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -27px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--main);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--main);
        }
.timeline-item .time-label {
            color: var(--main);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
.timeline-item h4 {
            color: var(--text);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
.timeline-item p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.tag-pill {
            display: inline-block;
            background: rgba(249, 115, 22, 0.1);
            border: 1px solid rgba(249, 115, 22, 0.3);
            color: var(--main);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin: 0 6px 8px 0;
        }
.notice-box {
            background: rgba(250, 204, 21, 0.08);
            border: 1px solid rgba(250, 204, 21, 0.2);
            border-radius: 12px;
            padding: 20px 25px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
.notice-box i {
            color: var(--accent);
            font-size: 1.3rem;
            margin-top: 3px;
        }
.notice-box p {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.new-hero {
                padding: 50px 0 40px;
            }
.new-hero .page-title {
                font-size: 2rem;
            }
.new-section {
                padding: 50px 0;
            }
.new-card {
                padding: 20px;
                margin-bottom: 20px;
            }

/* --- 子页面追加 --- */
/* 页面专属少量样式 */
        .about-hero {
            padding: 80px 0 50px;
            background: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, transparent 100%);
        }
.about-section {
            padding: 40px 0;
            border-bottom: 1px solid var(--border);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--main);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
.about-section p {
            color: var(--muted);
            line-height: 1.9;
            font-size: 1rem;
        }
.about-section .highlight {
            color: var(--text);
            font-weight: 500;
        }
.about-tag {
            display: inline-block;
            background: rgba(249, 115, 22, 0.15);
            color: var(--main);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 4px 6px 4px 0;
            border: 1px solid rgba(249, 115, 22, 0.3);
        }
.about-stats {
            display: flex;
            gap: 30px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
.stat-item {
            text-align: center;
            padding: 15px 20px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid var(--border);
            min-width: 120px;
        }
.stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--main);
            line-height: 1.2;
        }
.stat-item .label {
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 4px;
        }
.timeline-item .time {
            color: var(--main);
            font-weight: 600;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 4px;
        }
.timeline-item .desc {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

/* --- 子页面追加 --- */
/* 确保 Bootstrap 组件与本站深色暖色调一致 */
        .disclaimer-card, .disclaimer-card .card-body {
            background: var(--card-bg);
            color: var(--text);
            border: 1px solid var(--border);
            border-radius: 1rem;
        }
.disclaimer-card .card-title {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.4rem;
            border-left: 4px solid var(--main);
            padding-left: 0.75rem;
        }
.disclaimer-card .card-text {
            color: var(--muted);
            line-height: 1.75;
        }
.list-group-item-custom {
            background: rgba(0,0,0,0.2);
            border: 1px solid var(--border);
            color: var(--text);
            border-radius: 0.5rem !important;
            margin-bottom: 0.5rem;
        }
.list-group-item-custom i {
            color: var(--main);
            margin-right: 8px;
        }
.disclaimer-highlight {
            background: rgba(249,115,22,0.08);
            border-left: 4px solid var(--main);
            padding: 1rem 1.25rem;
            border-radius: 0.5rem;
            color: var(--text);
        }
.disclaimer-highlight strong {
            color: var(--accent);
        }
/* 覆盖 Bootstrap 默认白底 */
        .accordion-item, .accordion-button, .accordion-body {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--border);
        }
.accordion-button:not(.collapsed) {
            background: rgba(249,115,22,0.15);
            color: var(--accent);
        }
.accordion-button::after {
            filter: invert(1) sepia(1) saturate(5) hue-rotate(350deg);
        }
/* 覆盖任何可能的白底 */
        .card, .list-group-item, .form-control, .form-select {
            background-color: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: var(--border) !important;
        }
.nav-link-custom.active {
            color: var(--accent) !important;
            font-weight: 600;
        }
.navbar-brand, .nav-link-custom {
            color: var(--text) !important;
        }

/* --- 子页面追加 --- */
/* 本页补充：覆盖bootstrap组件默认白底，并保持品牌深色风格 */
    .card, .card-body, .card-header, .card-footer {
      background: var(--card-bg);
      color: var(--text);
      border-color: var(--border);
    }
.accordion-item, .accordion-button {
      background: var(--card-bg);
      color: var(--text);
      border-color: var(--border);
    }
.list-group-item {
      background: var(--card-bg);
      color: var(--text);
      border-color: var(--border);
    }
.form-control::placeholder {
      color: rgba(255,255,255,.45);
    }
.guide-icon {
      color: var(--main);
      width: 2rem;
      text-align: center;
    }
.step-number {
      background: var(--main);
      color: #1a1410;
      font-weight: 700;
      display: inline-block;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      text-align: center;
      line-height: 28px;
      margin-right: 8px;
    }
.guide-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      transition: transform .2s, border-color .2s;
    }
.guide-card:hover {
      border-color: var(--main);
      transform: translateY(-3px);
    }
.guide-card h3 {
      color: var(--accent);
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: .8rem;
    }
.guide-card p, .guide-card li {
      color: var(--muted);
      font-size: .95rem;
    }
.guide-card i {
      color: var(--main);
      font-size: 1.6rem;
    }
.section-divider {
      border-top: 1px solid var(--border);
      opacity: .6;
      margin: 2.5rem 0;
    }
/* 高亮当前导航项 */
    .navbar .nav-link.active {
      color: var(--accent) !important;
      font-weight: 600;
    }

/* --- 子页面追加 --- */
/* 隐私政策页面专属样式 */
        .privacy-header {
            padding: 60px 0 30px;
            border-bottom: 1px solid var(--border);
        }
.privacy-header .page-badge {
            display: inline-block;
            background: var(--main);
            color: #fff;
            padding: 4px 14px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
.privacy-header h1 {
            color: var(--text);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.3;
        }
.privacy-header p {
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 700px;
        }
.privacy-section {
            padding: 40px 0;
            border-bottom: 1px solid var(--border);
        }
.privacy-section:last-of-type {
            border-bottom: none;
        }
.privacy-section h2 {
            color: var(--text);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.privacy-section h2 i {
            color: var(--main);
            font-size: 1.3rem;
        }
.privacy-section h3 {
            color: var(--text);
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 10px;
        }
.privacy-section p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 12px;
        }
.privacy-section ul {
            color: var(--muted);
            line-height: 1.8;
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-section ul li {
            margin-bottom: 6px;
        }
.privacy-note {
            background: rgba(249, 115, 22, 0.08);
            border-left: 3px solid var(--main);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
            color: var(--text);
            line-height: 1.7;
            font-size: 0.95rem;
        }
.privacy-note i {
            color: var(--main);
            margin-right: 8px;
        }
.privacy-updated {
            color: var(--muted);
            font-size: 0.9rem;
            font-style: italic;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed var(--border);
        }
.contact-email {
            color: var(--main);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed var(--main);
        }
.contact-email:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
.table-of-contents {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 28px;
            margin: 30px 0;
        }
.table-of-contents h4 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.table-of-contents h4 i {
            color: var(--main);
        }
.table-of-contents ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.table-of-contents li {
            padding: 6px 0;
            border-bottom: 1px solid rgba(58, 46, 36, 0.5);
        }
.table-of-contents li:last-child {
            border-bottom: none;
        }
.table-of-contents a {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
            display: inline-block;
        }
.table-of-contents a:hover {
            color: var(--main);
        }
.table-of-contents a i {
            font-size: 0.7rem;
            margin-right: 8px;
            color: var(--main);
        }

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