```
/* ============================================
   黄漫画_禁漫天堂网页版
   设计系统 — "墨落·纸鸢" 东方纸感体系
   关键词：黄漫画
   域名：huangmanhua.net.cn
   配色：宣纸白底 + 藤黄 + 黛蓝 + 朱砂红点缀
   ============================================ */

/* ⚠️ 内容安全警示：本站仅面向成年用户访问，页面视觉不包含任何成人内容素材 */
/* ============================================
   设计理念：
   · 宣纸纹理质感 — 米白底 + 细颗粒噪点（用CSS模拟）
   · 东方卷轴叙事 — 横向滚动的"卷轴式"漫画库展示
   · 水墨晕染交互 — 鼠标悬浮产生墨点扩散效果
   · 印章式强调元素 — 红色方章作为品牌印记
   · 大字重对比 — 极粗标题 + 极细正文，制造张力
   ============================================ */

/* 基础重置 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  background-color: #FBF9F3; /* 宣纸米白 */
  color: #2D3748;
  line-height: 1.7;
  position: relative;
}

/* 宣纸噪点纹理 — 用CSS渐变模拟 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.04) 0.5px, transparent 0.5px),
    radial-gradient(rgba(0, 0, 0, 0.03) 0.5px, transparent 0.5px);
  background-size: 4px 4px, 8px 8px;
  background-position: 0 0, 2px 2px;
  mix-blend-mode: multiply;
}

::selection {
  background: #E8C531;
  color: #1A1A1A;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #FBF9F3;
}
::-webkit-scrollbar-thumb {
  background: #C9A227;
  border-radius: 8px;
  border: 2px solid #FBF9F3;
}
::-webkit-scrollbar-thumb:hover {
  background: #A88621;
}

/* ============================================
   核心布局
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 90px 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section:nth-child(even) {
  background: rgba(255, 255, 255, 0.7);
}

/* 卷轴侧边装饰线 — 左右竖向虚线 */
.section::before,
.section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(180, 148, 45, 0.25) 0px,
    rgba(180, 148, 45, 0.25) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.5;
}

.section::before { left: calc((100% - 1248px) / 2); }
.section::after { right: calc((100% - 1248px) / 2); }

@media (max-width: 1280px) {
  .section::before,
  .section::after { display: none; }
}

/* ============================================
   导航 — 卷轴悬停式固定导航
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 249, 243, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #E8C531 20%,
    #3B4252 50%,
    #D95D39 80%,
    transparent
  );
  opacity: 0.6;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  color: #2D3748;
  letter-spacing: 1px;
  position: relative;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #E8C531 0%, #C9A227 100%);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '漫';
  position: absolute;
  font-size: 0.65rem;
  font-weight: 900;
  color: #3B4252;
  transform: translateY(10px);
  opacity: 0.6;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4A5568;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.3px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #E8C531;
  transition: all 0.3s ease;
  transform: translateX(-50%) scaleX(0);
  border-radius: 2px;
}

.main-nav a:hover {
  color: #2D3748;
  background: rgba(232, 197, 49, 0.15);
}

.main-nav a:hover::before {
  width: 60%;
  transform: translateX(-50%) scaleX(1);
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, #E8C531 0%, #C9A227 100%);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(201, 162, 39, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.main-nav .nav-cta::before { display: none; }

.main-nav .nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
  background: linear-gradient(135deg, #C9A227 0%, #A88621 100%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #2D3748;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background: #E8C531;
  color: #fff;
}

/* ============================================
   Hero — 印章式东方封面
   ============================================ */

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FBF9F3 0%, #F5EFE3 100%);
  padding-top: 72px;
}

/* 水墨背景圆环 */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 49, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* 右下角印章 */
.hero::after {
  content: '漫';
  position: absolute;
  bottom: 40px;
  right: 5%;
  width: 72px;
  height: 72px;
  border: 2.5px solid #D95D39;
  color: #D95D39;
  font-size: 2.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 8px 2px;
  opacity: 0.5;
  transform: rotate(3deg);
  font-family: 'KaiTi', 'STKaiti', serif;
  box-shadow: inset 0 0 0 3px rgba(217, 93, 57, 0.1);
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: rgba(232, 197, 49, 0.18);
  color: #8A6D1A;
  border: 1px solid rgba(201, 162, 39, 0.25);
  letter-spacing: 1.5px;
  position: relative;
}

.hero-eyebrow::before {
  content: '●';
  font-size: 0.5rem;
  color: #D95D39;
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1px;
  color: #1A1A1A;
  position: relative;
}

.hero h1::first-line {
  color: #C9A227;
}

/* 标题下划线装饰 */
.hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #E8C531, #D95D39);
  margin-top: 20px;
  border-radius: 4px;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #4A5568;
  max-width: 620px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   按钮 — 墨块与描边混合
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #E8C531 0%, #C9A227 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C9A227 0%, #A88621 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border: 2px solid #C9A227;
  color: #8A6D1A !important;
}

.btn-outline:hover {
  background: rgba(232, 197, 49, 0.12);
  border-color: #8A6D1A;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(138, 109, 26, 0.15);
}

/* ============================================
   标题区 — 东方印章风格标签
   ============================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: #C9A227;
  text-transform: uppercase;
}

.section-label::before {
  content: '◆';
  font-size: 0.6rem;
  color: #D95D39;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A1A1A;
  letter-spacing: -0.5px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #E8C531, #D95D39);
  margin-top: 14px;
  border-radius: 4px;
}

.section-desc {
  max-width: 620px;
  font-size: 1rem;
  color: #5A5A5A;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 400;
}

/* ============================================
   漫画库卡片 — 宣纸墨块卡片
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}

.category-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

/* 卡片左上角折角样式 */
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(225deg, #FBF9F3 50%, transparent 50%);
  border-radius: 0 0 0 2px;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 16px 40px rgba(45, 55, 72, 0.08);
  border-color: rgba(201, 162, 39, 0.3);
  background: #FFFEFC;
}

.category-card:hover::before {
  background: linear-gradient(225deg, #E8C531 50%, transparent 50%);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px 12px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(232, 197, 49, 0.2),
    rgba(217, 93, 57, 0.15)
  );
  color: #B8860B;
}

.card-link {
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  color: #2D3748;
  display: inline-flex;
  align-items: 0;
  gap: 4px;
  margin-top: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.card-link:hover {
  color: #C9A227;
  gap: 8px;
}

.card-link::after {
  content: '→';
  font-size: 0.9rem;
}

/* ============================================
   特性块 — 双栏水平分割
   ============================================ */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.feature-image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  border-radius: 4px;
  pointer-events: none;
  transition: inset 0.3s ease;
}

.feature-image:hover::after {
  inset: 6px;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-text {
  padding: 20px 0;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.98rem;
  color: #333;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '◼';
  font-size: 0.8rem;
  color: #C9A227;
  font-weight: 900;
}

/* ============================================
   数据条 — 仿水墨数字
   ============================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 162, 39, 0.4);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, #E8C531, #D95D39);
  border-radius: 0 0 4px 4px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #C9A227, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: #6A6A6A;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* ============================================
   内容墙 — 漫画书封面瀑布
   ============================================ */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.content-wall-item {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.content-wall-item:nth-child(3n) {
  transform: translateY(20px);
}

.content-wall-item:nth-child(4n) {
  transform: translateY(-12px);
}

.content-wall-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: saturate(0.92) contrast(1.02);
}

.content-wall-item:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}

.content-wall-body {
  padding: 18px 16px;
}

.content-wall-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 6px;
  line-height: 1.4;
}

.content-wall-body p {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}

/* 漫画封面标签 */
.content-wall-item::after {
  content: '连载中';
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(232, 197, 49, 0.92);
  color: #3B2A1A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.content-wall-item:nth-child(even)::after {
  content: '已完结';
  background: rgba(217, 93, 57, 0.88);
  color: #fff;
}

/* ============================================
   FAQ — 手风琴折页感
   ============================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item.open {
  border-color: rgba(201, 162, 39, 0.6);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
  color: #2D3748;
  gap: 16px;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #C9A227;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(90deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #5A6A7A;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
  padding-top: 12px;
}

.faq-item.open .faq-answer {
  display: block;
  animation: faqOpen 0.35s ease;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CTA横幅 — 卷轴横批
   ============================================ */

.cta-banner {
  padding: 72px 48px;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(105deg, #E8C531 0%, #D9A514 45%, #C9A227 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
}

/* CTA顶部和底部的卷轴轴杆 */
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  top: -6px;
  bottom: -6px;
  width: 14px;
  background: linear-gradient(90deg, #A88621, #E8C531, #A88621);
  border-radius: 4px;
}

.cta-banner::before {
  left: 16px;
}

.cta-banner::after {
  right: 16px;
}

/* 内部细线框 */
.cta-banner .cta-inner {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  padding: 40px 24px;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: #FFFFFF !important;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #B8860B !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cta-banner .btn-primary::before {
  background: rgba(232, 197, 49, 0.2);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   页脚 — 墨色宣纸脚注
   ============================================ */

.site-footer {
  padding: 64px 0 32px;
  background: #2D3748;
  color: rgba(255, 255, 255, 0.75);
  border-top: 4px solid #C9A227;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E8C531, transparent);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, #E8C531, #C9A227);
  color: #2D3748;
  font-weight: 900;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.65;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #C9A227;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: #E8C531;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom span {
  color: #E8C531;
  font-weight: 700;
}

/* ============================================
   工具类
   ============================================ */

.text-accent {
  color: #C9A227;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-center .section-title::after,
.text-center .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #5A5A5A;
  opacity: 0.9;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* 滚动动画标记位 */
.section .section-title,
.section .section-desc {
  animation: slideUp 0.6s ease both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   响应式适配
   ============================================ */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .feature-block {
    gap: 36px;
  }

  .content-wall {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

  .content-wall-item:nth-child(3n),
  .content-wall-item:nth-child(4n) {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 70vh;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h1::after {
    width: 56px;
    height: 4px;
  }

  .hero p {
    font-size: 1rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0;
  }

  .feature-text {
    order: 2;
  }

  .feature-image {
    order: 1;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(251, 249, 243, 0.97);
    backdrop-filter: blur(16px);
    padding: 20px;
    gap: 6px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .main-nav.open {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero::after {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
    bottom: 24px;
    right: 6%;
  }

  .cta-banner {
    padding: 56px 20px;
  }

  .cta-banner::before,
  .cta-banner::after {
    width: 8px;
    left: 8px;
    right: 8px;
  }

  .cta-banner::after {
    left: auto;
    right: 8px;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .faq-item .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }

  .content-wall-item:nth-child(3n),
  .content-wall-item:nth-child(4n) {
    transform: none;
  }

  .hero::after {
    display: none;
  }

  .section-label {
    font-size: 0.72rem;
  }

  .btn {
    width: 100%;
  }
}

/* ============================================
   现代浏览器特性增强
   ============================================ */

@supports (font-variation-settings: normal) {
  body {
    font-optical-sizing: auto;
  }
}

/* 中文字体优化 */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 打印样式 */
@media print {
  .site-header,
  .menu-toggle,
  .hero-buttons,
  .cta-banner,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .section {
    break-inside: avoid;
  }

  .cards-grid,
  .content-wall {
    display: block;
  }

  .category-card,
  .content-wall-item {
    margin-bottom: 16px;
    break-inside: avoid;
  }
}