@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0f0f0e;
  --surface: #1a1917;
  --surface-raised: #242220;
  --fg: #f2efe8;
  --muted: #8a8680;
  --border: #2e2b27;
  --accent: #e8a020;
  --accent-fg: #0f0f0e;
  --accent-dim: #c4871a;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Bebas Neue', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-sans); }
