:root {
  --bg: #0b0d10;
  --bg-2: #13161b;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.12);
  --text: #f5f1e7;
  --muted: #b7b0a0;
  --gold: #d8bc7c;
  --gold-2: #9d7f45;
  --danger: #d06d6d;
  --success: #7ed9b1;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, #1b2028, var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body { padding-bottom: 96px; }
button, input, textarea { font: inherit; }
canvas { display: block; }
.hidden { display: none !important; }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 22px; }
