/* ============================================================
   魔法使之夜中文主题站 - 全局样式 style.css
   设计风格：深空青蓝渐变背景 + 青蓝强调色 + 赛博朋克冷调科技感
   完整响应式：手机 / 平板 / 桌面三端自适应
   ============================================================ */

/* ---------- 设计变量（可在本处统一替换主题色等） ---------- */
:root {
  --bg-primary: #06070f;       /* 主背景（深空黑） */
  --bg-secondary: #0a0f1a;     /* 次背景 */
  --bg-tertiary: #0e1828;     /* 卡片背景 */
  --bg-deep: #03050c;          /* 更深的背景层 */
  --accent: #00d4ff;           /* 青蓝强调色 */
  --accent-2: #5ae8ff;         /* 渐变收尾色（浅青） */
  --accent-soft: rgba(0, 212, 255, 0.15);
  --text: #ffffff;             /* 正文白 */
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.10);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 18px 45px rgba(0, 212, 255, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --header-h: 64px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans CJK SC", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 60%, var(--bg-primary) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--text); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 1em; }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto;
  padding: 8px 14px; background: var(--accent); color: #fff; border-radius: var(--radius-sm);
  z-index: 1000; clip: auto; }

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

/* ============================================================
   1. 顶部固定导航
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(15, 15, 35, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(10, 10, 24, 0.92); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 16px;
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 16px; }
.brand-sub { font-size: 11px; color: var(--text-dim); font-weight: 400; }

.primary-nav ul { display: flex; gap: 6px; }
.primary-nav a {
  display: block; padding: 8px 14px; color: var(--text-muted);
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 500;
}
.primary-nav a:hover, .primary-nav a.is-active {
  color: var(--text); background: var(--accent-soft);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; padding: 9px 8px;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(10, 10, 24, 0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .primary-nav.is-open { max-height: 360px; }
  .primary-nav ul {
    flex-direction: column; gap: 0; padding: 8px 20px 18px;
  }
  .primary-nav a { padding: 14px 8px; border-bottom: 1px solid var(--border); }
}

/* ============================================================
   2. Hero 主视觉区
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
}
.hero-bg {
  /* 首屏背景图：使用本地 1.jpg 作为第一个游戏图片 */
  position: absolute; inset: 0;
  background-image: url("1.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out infinite alternate;
  z-index: 0;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.14); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(0, 212, 255, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(15, 15, 35, 0.78) 0%, rgba(15, 15, 35, 0.62) 50%, rgba(15, 15, 35, 0.96) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}

.version-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 13px; font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.35);
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  margin: 0;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #fff 30%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(0, 212, 255, 0.25);
}
.hero-jp {
  font-size: clamp(1rem, 2.6vw, 1.6rem);
  color: var(--text-muted); letter-spacing: 6px; margin: 0;
}
.hero-slogan {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text); margin: 0; max-width: 760px;
}

.tag-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tag-list li {
  padding: 6px 14px; border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px; font-size: 13px; color: var(--text-muted);
}
.feature-tags li {
  border-color: rgba(0, 212, 255, 0.4);
  background: var(--accent-soft);
  color: var(--accent-2);
}

.info-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; max-width: 720px; width: 100%;
  margin-top: 6px;
}
.info-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px;
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}
.info-label { font-size: 12px; color: var(--text-dim); }
.info-value { font-size: 16px; font-weight: 700; color: var(--text); }

@media (max-width: 600px) {
  .info-cards { grid-template-columns: 1fr; }
}

.cta-btn {
  display: inline-block; margin-top: 10px;
  padding: 14px 40px;
  font-size: 16px; font-weight: 700; letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.6);
  filter: brightness(1.08);
  color: #fff;
}
.cta-note { font-size: 12px; color: var(--text-dim); margin: 0; }

/* ============================================================
   通用区块样式
   ============================================================ */
.section { padding: 80px 0; position: relative; }
.section:nth-child(even) { background: rgba(255, 255, 255, 0.015); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.section-eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin: 0 0 8px; font-weight: 600;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 12px;
}
.section-desc { color: var(--text-muted); margin: 0; }

/* 滚动淡入动画 */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-animate].is-visible { opacity: 1; transform: none; }
[data-animate][data-delay="1"] { transition-delay: .08s; }
[data-animate][data-delay="2"] { transition-delay: .16s; }
[data-animate][data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   3. 最新资讯区
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 212, 255, 0.4);
}
.news-cat {
  align-self: flex-start;
  padding: 4px 12px; font-size: 12px; font-weight: 600;
  color: var(--accent-2); background: var(--accent-soft);
  border-radius: 999px;
}
.news-date { font-size: 13px; color: var(--text-dim); }
.news-card h3 { font-size: 18px; color: var(--text); }
.news-summary { color: var(--text-muted); font-size: 14px; flex: 1; margin: 0; }
.read-more {
  align-self: flex-start;
  padding: 8px 16px; font-size: 14px; font-weight: 600;
  color: var(--accent-2);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.read-more:hover { background: var(--accent); color: #fff; }

/* ============================================================
   4. 游戏截图区 3×3 九宫格
   ============================================================ */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .shots-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shots-grid { grid-template-columns: 1fr; } }

.shot {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  cursor: pointer;
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
}
.shot:hover img, .shot:focus-within img { transform: scale(1.08); filter: brightness(.7); }
.shot-caption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; gap: 4px;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 24, 0.92) 100%);
  color: var(--text);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.shot:hover .shot-caption, .shot:focus-within .shot-caption { opacity: 1; transform: none; }
.shot-caption h3 { margin: 0; font-size: 16px; color: var(--accent-2); }
.shot-caption p { margin: 0; font-size: 13px; color: var(--text-muted); }
.shot:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============================================================
   5. 版本历史时间线
   ============================================================ */
.timeline {
  position: relative; padding: 8px 0 8px 28px;
  border-left: 2px solid rgba(0, 212, 255, 0.3);
  display: flex; flex-direction: column; gap: 24px;
}
.timeline-item { position: relative; }
.timeline-dot {
  position: absolute; left: -36px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.18);
}
.timeline-item.is-latest .timeline-dot {
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(90, 232, 255, 0.25), 0 0 16px rgba(0, 212, 255, 0.6);
}

.version-card {
  padding: 22px 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.version-head { display: flex; align-items: center; gap: 12px; }
.version-head h3 { margin: 0; font-size: 18px; }
.version-tag {
  padding: 2px 10px; font-size: 12px; font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border-radius: 999px;
}
.version-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin: 12px 0 16px; padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.version-meta li { display: flex; flex-direction: column; gap: 2px; }
.version-meta span { font-size: 12px; color: var(--text-dim); }
.version-meta strong { font-size: 14px; font-weight: 600; color: var(--text); }

.version-body {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 760px) { .version-body { grid-template-columns: 1fr; } }
.version-group { padding: 14px; border-radius: var(--radius-sm); }
.version-group.add  { background: rgba(0, 212, 255, 0.08); }
.version-group.opt  { background: rgba(15, 80, 150, 0.22); }
.version-group.fix  { background: rgba(255, 255, 255, 0.04); }
.version-group h4 {
  margin: 0 0 8px; font-size: 13px;
  color: var(--accent-2); letter-spacing: 1px;
}
.version-group.add h4 { color: var(--accent-2); }
.version-group.opt h4 { color: #6bd5ff; }
.version-group.fix h4 { color: var(--text-muted); }
.version-group ul { display: flex; flex-direction: column; gap: 6px; }
.version-group li {
  position: relative; padding-left: 14px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.version-group li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; opacity: .6;
}

/* ============================================================
   6. 用户评价区
   ============================================================ */
.reviews-top {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 28px; align-items: center; margin-bottom: 30px;
}
@media (max-width: 760px) { .reviews-top { grid-template-columns: 1fr; } }

.score-box {
  text-align: center; padding: 28px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.score-num {
  display: block; font-size: 64px; font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.score-out { font-size: 13px; color: var(--text-dim); }
.stars { font-size: 22px; color: #ffd866; letter-spacing: 3px; margin: 8px 0 4px; }
.star-half { color: rgba(255, 209, 102, 0.4); }
.score-base { font-size: 12px; color: var(--text-dim); margin: 0; }

.rating-bars { display: flex; flex-direction: column; gap: 10px; }
.rating-row {
  display: grid; grid-template-columns: 60px 1fr 50px;
  align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-muted);
}
.rating-row .bar {
  height: 8px; background: rgba(255, 255, 255, 0.08);
  border-radius: 999px; overflow: hidden;
}
.rating-row .bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transform-origin: left;
  animation: barGrow 1.4s var(--ease) both;
}
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.rating-row span:last-child { text-align: right; }

.keyword-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 0 0 32px;
}
.keyword-tags li {
  padding: 6px 16px; font-size: 13px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px; color: var(--text-muted);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.keyword-tags li:hover {
  border-color: var(--accent); color: var(--accent-2);
  transform: translateY(-2px);
}

.review-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .review-cards { grid-template-columns: 1fr; } }
.review-card {
  padding: 22px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease);
}
.review-card:hover { transform: translateY(-4px); }
.review-card h3 {
  font-size: 16px; color: var(--accent-2);
  margin-bottom: 10px;
}
.review-card p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* ============================================================
   7. 游戏介绍区
   ============================================================ */
.intro-body { display: flex; flex-direction: column; gap: 36px; max-width: 880px; margin: 0 auto; }
.intro-block {
  padding: 28px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.intro-block h3 {
  font-size: 20px; color: var(--accent-2);
  margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.intro-block h4 { font-size: 16px; color: var(--text); margin: 18px 0 8px; }
.intro-block p { color: var(--text-muted); margin-bottom: 12px; }
.intro-block p:last-child { margin-bottom: 0; }
.sys-list { display: flex; flex-direction: column; gap: 6px; }
.sys-list li {
  position: relative; padding-left: 18px;
  color: var(--text-muted); font-size: 14px;
}
.sys-list li::before {
  content: "▸"; position: absolute; left: 0; top: 0;
  color: var(--accent);
}

/* ============================================================
   8. 常见问题（FAQ）
   ============================================================ */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item[open] { border-color: rgba(0, 212, 255, 0.45); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  font-size: 16px; font-weight: 600; color: var(--text);
  position: relative; padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--accent); font-weight: 300;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 18px; }
.faq-answer p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* ============================================================
   9. 底部 CTA 区
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0, 212, 255, 0.18), transparent 60%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-section h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin: 0; max-width: 720px;
  background: linear-gradient(135deg, #fff, var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-section p { color: var(--text-muted); margin: 0; }

/* ============================================================
   10. 页脚（四栏布局）
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px; padding-bottom: 32px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h3 {
  font-size: 15px; color: var(--text);
  margin-bottom: 14px; letter-spacing: 1px;
}
.footer-col p, .footer-col li { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--accent-2); }
.contact-list li { margin-bottom: 6px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; margin: 12px 0 14px; }
.footer-links a {
  padding: 4px 0; font-size: 13px;
  color: var(--accent-2); border-bottom: 1px dashed transparent;
}
.footer-links a:hover { border-bottom-color: var(--accent-2); }
.footer-disclaimer {
  font-size: 12px !important; color: var(--text-dim) !important;
  line-height: 1.6; margin-top: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center; font-size: 13px; color: var(--text-dim);
}

/* ============================================================
   资讯弹层（Modal）
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 5, 15, 0.78);
  backdrop-filter: blur(8px);
  animation: fadeIn .25s var(--ease);
}
.modal-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 680px; max-height: 80vh; overflow-y: auto;
  padding: 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: modalIn .35s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 26px; line-height: 1;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.modal-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.modal-cat { display: inline-block; padding: 4px 12px; font-size: 12px; color: var(--accent-2); background: var(--accent-soft); border-radius: 999px; }
.modal-date { display: block; font-size: 13px; color: var(--text-dim); margin: 6px 0 8px; }
.modal-panel h3 { font-size: 22px; margin-bottom: 16px; }
.modal-content p { color: var(--text-muted); margin-bottom: 12px; }
.modal-content p:last-child { margin-bottom: 0; }

/* 简单静态页（隐私/协议/法律）共用样式 */
.simple-page { padding: calc(var(--header-h) + 60px) 0 80px; }
.simple-page .container { max-width: 860px; }
.simple-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.simple-page .meta { color: var(--text-dim); font-size: 13px; margin-bottom: 28px; }
.simple-page section { margin-bottom: 32px; }
.simple-page h2 { font-size: 18px; color: var(--accent-2); margin-bottom: 12px; }
.simple-page p, .simple-page li { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.simple-page ul { padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.simple-page ul li { list-style: disc; }
.simple-page .back-link {
  display: inline-block; margin-top: 20px;
  padding: 8px 18px; border: 1px solid var(--border); border-radius: 999px;
  color: var(--accent-2);
}
.simple-page .back-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
