:root {
  --primary: #dc2626;
  --accent: #fb923c;
  --bg: #141013;
  --text: #fef2f2;
  --card-bg: #1e1618;
  --card-bg-hover: #2a1e20;
  --border-light: #3a2a2c;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --font-mono: 'SF Mono', 'Cascadia Code', 'Roboto Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-weight: 900;
  letter-spacing: -0.02em;
}
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

/* 滚动动效 - 数字计数 */
.count-num {
  font-family: var(--font-mono);
  font-weight: 700;
}

/* 导航栏 */
.navbar {
  background: rgba(20, 16, 19, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(20, 16, 19, 0.92);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  padding: 8px 0;
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.navbar-brand i { color: var(--primary); font-size: 1.8rem; }
.navbar-brand:hover { color: var(--text); }
.navbar-nav .nav-link {
  color: rgba(254,242,242,0.75);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}
.navbar-nav .nav-link:hover {
  color: var(--accent);
  background: rgba(251,146,60,0.08);
}
.navbar-nav .nav-link.active {
  color: var(--accent);
  background: rgba(251,146,60,0.12);
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  padding: 6px 10px;
}

/* Hero 关键词云 */
.hero-tags {
  padding: 60px 0 20px;
  text-align: center;
  background: radial-gradient(circle at 50% 80%, rgba(220,38,38,0.12) 0%, transparent 60%);
}
.hero-tags h1 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tags .subtitle {
  color: rgba(254,242,242,0.6);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.tag-cloud .tag {
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  color: var(--text);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}
.tag-cloud .tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px rgba(220,38,38,0.4);
}
.tag-cloud .tag i { margin-right: 6px; font-size: 0.8rem; color: var(--accent); }

/* 区块通用 */
.section-block {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title i {
  color: var(--primary);
  font-size: 1.3rem;
}
.section-title::after {
  content: '';
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin-left: 8px;
}
.more-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.more-link:hover { color: var(--text); }

/* 顶部榜单 */
.top-list-section {
  padding: 40px 0 20px;
}
.top-list-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 24px;
  transition: all 0.3s;
  height: 100%;
}
.top-list-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.top-list-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-list-card h3 i { color: var(--primary); }
.top-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  gap: 12px;
  transition: all 0.2s;
}
.top-item:last-child { border-bottom: none; }
.top-item:hover { padding-left: 8px; }
.top-item .rank {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  min-width: 32px;
}
.top-item .rank.rank-1 { color: var(--primary); font-size: 1.3rem; }
.top-item .rank.rank-2 { color: var(--accent); }
.top-item .rank.rank-3 { color: #e8b4b8; }
.top-item .t-name { flex: 1; font-weight: 600; font-size: 0.9rem; }
.top-item .t-score {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.top-item .t-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  background: rgba(220,38,38,0.15);
  border-radius: 20px;
  color: var(--primary);
  font-weight: 600;
}

/* 影片卡片 */
.movie-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  cursor: pointer;
}
.movie-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.movie-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1e20, #1a1215);
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.movie-card:hover .movie-poster img {
  transform: scale(1.05);
}
.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,16,19,0.9) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.movie-card:hover .poster-overlay { opacity: 1; }
.poster-overlay .play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.badge-update {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(220,38,38,0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.badge-hot {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(251,146,60,0.9);
  color: #141013;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}
.movie-info {
  padding: 14px;
}
.movie-info .m-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-info .m-meta {
  font-size: 0.8rem;
  color: rgba(254,242,242,0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.movie-info .m-score {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}
.movie-info .m-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.movie-info .m-desc {
  font-size: 0.75rem;
  color: rgba(254,242,242,0.4);
  margin-top: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分类筛选区 */
.category-sidebar {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.category-sidebar h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--accent);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}
.cat-list {
  list-style: none;
}
.cat-list li {
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(254,242,242,0.7);
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-list li i { width: 20px; text-align: center; color: var(--accent); font-size: 0.85rem; }
.cat-list li:hover {
  background: rgba(220,38,38,0.08);
  color: var(--text);
}
.cat-list li.active {
  background: rgba(220,38,38,0.15);
  color: var(--text);
  border-left: 3px solid var(--primary);
}
.cat-list li .count {
  margin-left: auto;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 12px;
  color: rgba(254,242,242,0.5);
}

/* 经典专区 */
.classic-section {
  background: linear-gradient(180deg, transparent, rgba(220,38,38,0.04), transparent);
}
.classic-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.classic-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.classic-card .c-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}
.classic-card .c-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 900;
}
.classic-card .c-name { font-weight: 800; font-size: 1rem; }
.classic-card .c-sub { font-size: 0.75rem; color: rgba(254,242,242,0.5); }
.classic-card .c-body { padding: 14px 16px; font-size: 0.85rem; color: rgba(254,242,242,0.7); }

/* 预告专区 */
.trailer-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.trailer-card:hover {
  transform: scale(1.02);
  border-color: var(--accent);
}
.trailer-thumb {
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(135deg, #2a1e20, #1a1215);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.trailer-play {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(220,38,38,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.3s;
}
.trailer-card:hover .trailer-play {
  transform: scale(1.1);
  background: var(--primary);
}
.trailer-info {
  padding: 12px 14px;
}
.trailer-info .t-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.trailer-info .t-meta { font-size: 0.75rem; color: rgba(254,242,242,0.5); }

/* 指南板块 */
.guide-section {
  padding: 50px 0;
}
.guide-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 28px;
}
.guide-content h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.guide-content p {
  font-size: 0.95rem;
  color: rgba(254,242,242,0.75);
  line-height: 1.8;
  margin-bottom: 14px;
}
.tips-list {
  list-style: none;
}
.tips-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(254,242,242,0.8);
  border-bottom: 1px dashed var(--border-light);
}
.tips-list li:last-child { border-bottom: none; }
.tips-list i { color: var(--accent); font-size: 1rem; margin-top: 3px; }

/* 相关推荐 */
.recommend-section {
  padding: 40px 0;
}
.recommend-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.recommend-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.recommend-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.recommend-item h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.recommend-item p { font-size: 0.75rem; color: rgba(254,242,242,0.5); }

/* 友情链接 */
.friend-links {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 24px;
  margin: 40px 0;
}
.friend-links h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 弹窗 */
.movie-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20,16,19,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.movie-modal.open { display: flex; }
.modal-content-custom {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  max-width: 420px;
  width: 90%;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(254,242,242,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--primary); transform: rotate(90deg); }
.modal-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text);
}
.modal-badge {
  display: inline-block;
  background: rgba(220,38,38,0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.modal-score {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
  margin: 10px 0;
}
.modal-stars { color: var(--accent); font-size: 1rem; }
.modal-desc {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(254,242,242,0.7);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}
.modal-meta {
  font-size: 0.85rem;
  color: rgba(254,242,242,0.6);
  margin-bottom: 4px;
}
.modal-meta strong { color: var(--text); font-weight: 600; }

/* 页脚 */
.footer {
  background: #0d0a0c;
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: rgba(254,242,242,0.5);
  font-size: 0.85rem;
}
.footer .brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}
.footer a { color: rgba(254,242,242,0.6); }
.footer a:hover { color: var(--accent); }

/* 步骤条 */
.steps-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.step-item {
  flex: 1;
  min-width: 150px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 16px;
  text-align: center;
  position: relative;
}
.step-item .step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.step-item h6 { font-size: 0.85rem; font-weight: 700; }
.step-item p { font-size: 0.75rem; color: rgba(254,242,242,0.5); margin: 0; }

/* 响应式 */
@media (max-width: 992px) {
  .category-sidebar {
    position: static;
    margin-bottom: 20px;
  }
  .hero-tags h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .section-title { font-size: 1.3rem; }
  .hero-tags { padding: 40px 0 10px; }
  .hero-tags h1 { font-size: 1.7rem; }
  .tag-cloud .tag { padding: 4px 14px; font-size: 0.8rem; }
}

/* 数字计数动画 */
.count-up { will-change: transform, opacity; }

/* 滚动条 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* --- 子页面追加 --- */
/* 关于我们页面专属样式 —— 补丁式覆盖,沿用站点变量 */
        .about-hero {
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 40px;
        }
.about-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
.about-hero .lead {
            color: var(--text);
            opacity: 0.85;
            font-size: 1.1rem;
            max-width: 760px;
            margin-top: 16px;
            line-height: 1.8;
        }
.about-section {
            padding: 32px 0;
            border-bottom: 1px solid var(--border-light);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 20px;
            position: relative;
            padding-left: 18px;
        }
.about-section h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 6px;
            height: 22px;
            background: var(--primary);
            border-radius: 3px;
        }
.about-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 24px 0 12px;
        }
.about-section p {
            color: var(--text);
            opacity: 0.82;
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 0.98rem;
        }
.about-section ul {
            list-style: none;
            padding: 0;
            margin: 16px 0;
        }
.about-section ul li {
            color: var(--text);
            opacity: 0.85;
            padding: 8px 0 8px 28px;
            position: relative;
            line-height: 1.7;
            font-size: 0.96rem;
        }
.about-section ul li::before {
            content: "\f105";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 8px;
            color: var(--primary);
        }
.value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 24px;
        }
.value-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 24px;
            transition: all 0.3s ease;
        }
.value-card:hover {
            background: var(--card-bg-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
.value-card i {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 14px;
            display: block;
        }
.value-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
.value-card p {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.75;
            line-height: 1.7;
            margin: 0;
        }
.stat-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            margin-top: 32px;
            text-align: center;
        }
.stat-box {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 24px 16px;
        }
.stat-box .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            font-family: var(--font-mono);
        }
.stat-box .label {
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.7;
            margin-top: 6px;
        }
.timeline {
            margin-top: 28px;
            padding-left: 20px;
            border-left: 2px solid var(--border-light);
        }
.timeline-item {
            position: relative;
            padding: 0 0 28px 24px;
        }
.timeline-item::before {
            content: "";
            position: absolute;
            left: -7px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 2px solid var(--bg);
        }
.timeline-item .year {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 1px;
        }
.timeline-item h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin: 6px 0 8px;
        }
.timeline-item p {
            font-size: 0.92rem;
            margin: 0;
            opacity: 0.8;
        }
.about-cta {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 32px;
            margin-top: 40px;
            text-align: center;
        }
.about-cta h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.about-cta p {
            color: var(--text);
            opacity: 0.75;
            max-width: 600px;
            margin: 0 auto 24px;
        }
.btn-about {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 12px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }
.btn-about:hover {
            background: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
            color: #fff;
        }
.about-hero h1 { font-size: 1.7rem; }
.about-section h2 { font-size: 1.25rem; }
.value-grid { grid-template-columns: 1fr; }
.stat-row { grid-template-columns: repeat(2, 1fr); }

/* --- 子页面追加 --- */
.disclaimer-hero {
            padding: 3rem 0 2rem;
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 2rem;
        }
.disclaimer-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.disclaimer-hero h1 span {
            color: var(--primary);
        }
.disclaimer-hero .sub-text {
            color: rgba(254, 242, 242, 0.7);
            font-size: 1rem;
            max-width: 700px;
            line-height: 1.8;
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            margin-bottom: 1.8rem;
            box-shadow: var(--shadow);
            transition: background 0.3s ease;
        }
.disclaimer-section:hover {
            background: var(--card-bg-hover);
        }
.disclaimer-section h2 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.2rem;
            padding-left: 1rem;
            border-left: 4px solid var(--primary);
        }
.disclaimer-section h2 i {
            color: var(--primary);
            margin-right: 0.5rem;
        }
.disclaimer-section p {
            color: rgba(254, 242, 242, 0.85);
            line-height: 1.9;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
.disclaimer-section ul {
            padding-left: 1.2rem;
            margin-bottom: 1rem;
        }
.disclaimer-section ul li {
            color: rgba(254, 242, 242, 0.85);
            line-height: 1.9;
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
        }
.notice-box {
            background: rgba(220, 38, 38, 0.08);
            border: 1px solid rgba(220, 38, 38, 0.25);
            border-radius: var(--radius);
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
        }
.notice-box p {
            color: var(--text);
            margin-bottom: 0;
            font-size: 0.95rem;
        }
.notice-box i {
            color: var(--primary);
            margin-right: 0.5rem;
        }
.last-updated {
            color: rgba(254, 242, 242, 0.5);
            font-size: 0.85rem;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .privacy-hero {
            padding: 3rem 0 2rem;
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 2rem;
        }
.privacy-hero h1 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
        }
.privacy-hero h1 span {
            color: var(--primary);
        }
.privacy-hero .last-updated {
            font-size: 0.875rem;
            color: var(--accent);
            font-family: var(--font-mono);
        }
.privacy-section {
            margin-bottom: 2.5rem;
        }
.privacy-section h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
            padding-left: 1rem;
            border-left: 3px solid var(--primary);
        }
.privacy-section h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.75rem;
            margin-top: 1.25rem;
        }
.privacy-section p {
            color: rgba(254, 242, 242, 0.8);
            line-height: 1.8;
            font-size: 0.9375rem;
            margin-bottom: 1rem;
        }
.privacy-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.privacy-section ul li {
            color: rgba(254, 242, 242, 0.8);
            font-size: 0.9375rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }
.privacy-callout {
            background: rgba(220, 38, 38, 0.08);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
.privacy-callout p {
            margin-bottom: 0;
            color: var(--text);
            font-size: 0.9375rem;
        }
.privacy-callout i {
            color: var(--primary);
            margin-right: 0.5rem;
        }
.contact-info {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
.contact-info h3 {
            margin-top: 0;
            color: var(--accent);
        }
.contact-info p {
            margin-bottom: 0.5rem;
        }
.contact-info a {
            color: var(--primary);
            text-decoration: none;
        }
.contact-info a:hover {
            text-decoration: underline;
        }
.privacy-nav-list {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
.privacy-nav-list h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1rem;
        }
.privacy-nav-list ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
.privacy-nav-list ul li {
            margin-bottom: 0.5rem;
            padding: 0.25rem 0;
            border-bottom: 1px dashed var(--border-light);
        }
.privacy-nav-list ul li:last-child {
            border-bottom: none;
        }
.privacy-nav-list ul li a {
            color: rgba(254, 242, 242, 0.8);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }
.privacy-nav-list ul li a:hover {
            color: var(--primary);
        }
.privacy-nav-list ul li a i {
            margin-right: 0.5rem;
            color: var(--accent);
            font-size: 0.75rem;
        }
.privacy-hero h1 {
                font-size: 1.5rem;
            }
.privacy-section h2 {
                font-size: 1.125rem;
            }

/* --- 子页面追加 --- */
/* 本页专属小范围样式 */
    .sitemap-card {
      background: var(--card-bg);
      border: 1px solid var(--border-light);
      border-radius: var(--radius);
      padding: 1.5rem;
      transition: background 0.3s ease, transform 0.2s ease;
      height: 100%;
    }
.sitemap-card:hover {
      background: var(--card-bg-hover);
      transform: translateY(-3px);
    }
.sitemap-card h3 {
      color: var(--accent);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--border-light);
    }
.sitemap-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
.sitemap-card ul li {
      margin-bottom: 0.6rem;
    }
.sitemap-card ul li a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.2s;
    }
.sitemap-card ul li a i {
      color: var(--primary);
      font-size: 0.7rem;
    }
.sitemap-card ul li a:hover {
      color: var(--accent);
    }
.sitemap-guide {
      background: rgba(220, 38, 38, 0.08);
      border-left: 4px solid var(--primary);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 1rem 1.5rem;
      margin-bottom: 2rem;
    }
.sitemap-guide p {
      color: var(--text);
      opacity: 0.9;
      margin-bottom: 0.3rem;
      font-size: 0.95rem;
    }
.sitemap-guide p:last-child {
      margin-bottom: 0;
    }
.sitemap-guide i {
      color: var(--accent);
      margin-right: 0.4rem;
    }