/* ========================================
   base.css — CSS 变量、重置、全局字体
   ======================================== */

:root {
  --sidebar-width: 260px;
  --glass-bg: rgba(20, 20, 30, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --accent: #7ee787;
  --accent-dim: #4a9e54;
  --text: #e6e6e6;
  --text-dim: #999;
  --nav-bg: rgba(15, 15, 22, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #0a0a0f;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}
