:root{
  /* 底色 */
  --bg-top:#0a1424; --bg-bottom:#13263f;
  /* 卡片表面 */
  --surface:#0f2238; --surface-2:#14283f; --surface-3:#16304b;
  /* 邊框 */
  --border:#274056; --border-soft:#23394f;
  /* 文字 */
  --text:#e8eef5; --text-dim:#9fb2c6; --text-muted:#6f87a0;
  /* 強調色 */
  --cyan:#5ee7ff;      /* 氣流、進度、資料 */
  --amber:#ffb454;     /* 主要行動 CTA、升力 */
  --amber-soft:#ffd9a0;
  --gold:#e8c66b;      /* 階級肩章/翼章 */
  --danger:#ff6b6b;    /* 迷思/錯誤 */
  --success:#9fe6a0;   /* 正解/通過 */
  /* 形狀 */
  --radius:12px; --radius-sm:8px;
  /* 字體 */
  --font-cjk:"Noto Sans TC", system-ui, sans-serif;
  --font-ui:"IBM Plex Sans", var(--font-cjk);
  --font-data:"IBM Plex Mono", ui-monospace, monospace;  /* 數字/速度/% 用，做出航電感 */
}
body{
  background:linear-gradient(180deg,var(--bg-top),var(--bg-bottom)) fixed;
  color:var(--text); font-family:var(--font-cjk);
}
