:root {
  --bg: #0b0b0f;
  --bg-card: #1a1a22;
  --bg-hover: #22222d;
  --text: #f6f7fb;
  --text-muted: #8b8d98;
  --primary: #6366f1;
  --primary-hover: #818cf8;
  --accent: #6ce5b1;
  --danger: #ff5c7a;
  --gold: #ffd146;
  --orange: #ff6b35;
  --pink: #ed64a6;
  --purple: #9f7aea;
  --teal: #38b2ac;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --transition: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, Inter, 'Helvetica Neue', Arial, sans-serif;
  --toolbar-h: 68px;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { display: none; }
body { scrollbar-width: none; }

a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }
