:root {
  --bg: #0b1220;
  --panel: #0f1724;
  --panel-soft: #141c2c;
  --text: #e6eef6;
  --muted: #9aa4b2;
  --accent: #38bdf8;
}

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

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}