:root {
  --bg: #0f1419;
  --bg-elevated: #1a222d;
  --surface: #242f3d;
  --border: #334155;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --accent-hover: #7dd3fc;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  /* 跨平台字体：拉丁文 + 中日韩（CJK）均用系统 UI 字体，UTF-8 页面无需单独编码字体 */
  --font: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei",
    "Helvetica Neue", "Noto Sans CJK SC", sans-serif;
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

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