/* ====== CSS Variables & Reset ====== */
:root {
  --bg:#faf8f5; --sidebar-bg:#faf8f5; --card:#fff; --border:#e8e4dc;
  --text:#1c1b18; --text2:#6b6964; --text3:#a8a59d;
  --pri:#2d2c2a; --pri-lt:#f2f0ea; --suc:#1b6b3a; --suc-lt:#edf7f1;
  --war:#b86018; --war-lt:#fef9f1; --dan:#c0392b; --dan-lt:#fef5f5;
  --blu:#3b5e8c; --blu-lt:#eff4fa; --r:12px; --rs:8px;
  --shadow:0 1px 2px rgba(0,0,0,.04);
  --shadow-md:0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:0 8px 30px rgba(0,0,0,.12);
  --transition:.15s ease;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Noto Sans SC','Microsoft YaHei',sans-serif;background:var(--bg);color:var(--text);font-size:14px;line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
img{max-width:100%;display:block}
::-webkit-scrollbar{width:6px;height:6px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:var(--text3)}
