/* ============================================
   短剧创作平台 - 主样式表
   独特设计：暗紫电影风格 + 金色点缀
   ============================================ */

/* CSS变量定义 */
:root {
  --clr-bg: #0f0c19;
  --clr-surface: #1a1530;
  --clr-surface-alt: #231e3a;
  --clr-primary: #8a2be2;
  --clr-secondary: #dc143c;
  --clr-accent: #ffa500;
  --clr-gold: #ffd700;
  --clr-teal: #00b4b4;
  --clr-rose: #ff698c;
  --clr-text: #e8e6f0;
  --clr-text-muted: #a09cb0;
  --clr-border: #2e2850;
  --font-heading: "Noto Serif SC", "STSong", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --shadow-card: 0 4px 24px rgba(138,43,226,0.15);
  --shadow-glow: 0 0 30px rgba(138,43,226,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* 基础重置 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-accent);
}

ul, ol {
  list-style: none;
}

/* 容器 */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   导航栏（非sticky）
   ============================================ */
.site-header {
  background: linear-gradient(135deg, var(--clr-surface) 0%, #1f1540 100%);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
  position: relative;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--clr-gold);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 1.5rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(255,215,0,0.1);
}

.main-nav {
  background: var(--clr-surface-alt);
  border-top: 1px solid var(--clr-border);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: block;
  padding: 14px 22px;
  color: var(--clr-text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--clr-gold);
  background: rgba(138,43,226,0.1);
  border-bottom-color: var(--clr-gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary)) !important;
  color: #fff !important;
  border-radius: var(--radius-sm);
  margin: 8px 0;
  border-bottom: none !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* ============================================
   面包屑导航
   ============================================ */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.breadcrumb a {
  color: var(--clr-text-muted);
}

.breadcrumb a:hover {
  color: var(--clr-gold);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--clr-border);
}

/* ============================================
   英雄横幅区域
   ============================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,25,0.3) 0%, rgba(15,12,25,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(138,43,226,0.5);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   按钮样式
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), #6a1fb8);
  color: #fff;
  box-shadow: 0 4px 20px rgba(138,43,226,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(138,43,226,0.6);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-accent));
  color: var(--clr-bg);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255,215,0,0.5);
  color: var(--clr-bg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

/* ============================================
   章节标题
   ============================================ */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--clr-surface);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  color: var(--clr-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   视频卡片网格
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--clr-surface-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--clr-border);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.video-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.05);
}

.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity var(--transition);
}

.video-card:hover .video-card-play {
  opacity: 1;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(138,43,226,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.video-card-body {
  padding: 16px;
}

.video-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-card-meta {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-card-rating {
  color: var(--clr-gold);
}

.video-card-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(138,43,226,0.2);
  color: var(--clr-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 8px;
}

/* ============================================
   明星合作模块
   ============================================ */
.star-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.star-card {
  text-align: center;
  background: var(--clr-surface-alt);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.star-card:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-glow);
}

.star-card img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto 12px;
}

.star-card h4 {
  color: var(--clr-gold);
  font-size: 1rem;
  margin-bottom: 4px;
}

.star-card p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

/* ============================================
   服务模块
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.service-item {
  background: var(--clr-surface-alt);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.service-item:hover {
  border-color: var(--clr-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.service-item p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   评论/评价模块
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--clr-surface-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--clr-primary);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-card);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 600;
  color: #fff;
}

.review-city {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.review-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--clr-text);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.review-date {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ============================================
   常见问题
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--clr-surface-alt);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--clr-border);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(138,43,226,0.08);
}

.faq-arrow {
  font-size: 1.2rem;
  color: var(--clr-gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

/* ============================================
   关于我们
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--clr-gold);
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ============================================
   支付方式
   ============================================ */
.payment-section {
  text-align: center;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-badge {
  background: var(--clr-surface-alt);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  font-weight: 600;
  color: var(--clr-text);
  transition: all var(--transition);
}

.payment-badge.pix-highlight {
  border-color: var(--clr-teal);
  background: rgba(0,180,180,0.1);
  color: var(--clr-teal);
  font-size: 1.1rem;
}

.payment-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* ============================================
   咨询模块
   ============================================ */
.consult-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 20px 0;
}

.consult-banner img {
  width: 100%;
  height: auto;
}

.consult-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15,12,25,0.5);
  text-align: center;
  padding: 20px;
}

.consult-overlay h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.consult-overlay p {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

/* ============================================
   视频播放模块
   ============================================ */
.video-player-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
}

.video-player-poster .play-icon {
  width: 72px;
  height: 72px;
  background: rgba(138,43,226,0.85);
}

/* ============================================
   授权/牌照
   ============================================ */
.license-section {
  text-align: center;
}

.license-badge-img {
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
}

.license-info {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ============================================
   客户支持
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.support-card {
  background: var(--clr-surface-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.support-card:hover {
  border-color: var(--clr-teal);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.support-card h4 {
  color: #fff;
  margin-bottom: 8px;
}

.support-card p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

/* ============================================
   页脚
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--clr-surface) 0%, #0a0815 100%);
  border-top: 1px solid var(--clr-border);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--clr-gold);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--clr-gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-surface-alt);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0;
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.82rem;
}

.footer-payment {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.footer-payment span {
  background: var(--clr-surface-alt);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}

/* ============================================
   内页横幅
   ============================================ */
.page-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,12,25,0.7);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.page-banner-content p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

/* ============================================
   内页内容
   ============================================ */
.content-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-article h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--clr-gold);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--clr-border);
}

.content-article h3 {
  font-size: 1.25rem;
  color: #fff;
  margin: 24px 0 12px;
}

.content-article p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.content-article img {
  border-radius: var(--radius-md);
  margin: 20px 0;
  box-shadow: var(--shadow-card);
}

.content-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.content-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0;
}

/* ============================================
   APP下载页
   ============================================ */
.app-hero {
  text-align: center;
  padding: 60px 20px;
}

.app-mockup-img {
  max-width: 320px;
  margin: 30px auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.app-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.app-feature-item {
  background: var(--clr-surface-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--clr-border);
}

.app-feature-item h4 {
  color: var(--clr-gold);
  margin-bottom: 8px;
}

.app-download-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

/* ============================================
   响应式设计 - 移动优先
   ============================================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--clr-border);
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-section {
    min-height: 400px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .star-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-banner {
    height: 200px;
  }

  .page-banner-content h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .header-top {
    padding: 8px 0;
  }

  .site-logo img {
    height: 36px;
  }

  .site-logo-text {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .star-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .app-download-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   动画效果
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-accent), var(--clr-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* 滚动动画 */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   打印样式
   ============================================ */
@media print {
  .site-header, .site-footer, .nav-toggle {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
}
