/* ═══════════════════════════════════════
   8K剧库 — 公共基础样式
   ═══════════════════════════════════════ */

:root {
  --bg: #0a0a0f;
  --surface: #14141f;
  --surface2: #1c1c2e;
  --card-bg: #14141f;
  --card-hover: #1c1c2e;
  --accent: #e0c097;
  --accent2: #c9a96e;
  --accent-dim: rgba(224,192,151,0.12);
  --text: #e8e8e8;
  --text-dim: #8888a0;
  --border: #222238;
  --radius: 12px;
  --radius-sm: 8px;
  --green: #2ea043;
  --blue: #58a6ff;
  --max-width: 1200px;
  --page-padding: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
}

a {
  color: var(--accent2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 32px;
  color: var(--text-dim);
  font-size: 12px;
  border-top: 1px solid var(--border);
}
