/* No Name Records — Dark, bold, underground */
:root {
  --bg: #0a0a0f;
  --fg: #ffffff;
  --accent: #c8ff00;
  --muted: #555;
  --surface: #111118;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #222 #0a0a0f;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom cursor */
* { cursor: default; }
a, button, [role="button"] { cursor: pointer; }

/* Selection */
::selection { background: rgba(200,255,0,0.15); color: #fff; }

/* Focus */
:focus-visible { outline: 1px solid rgba(200,255,0,0.4); outline-offset: 3px; }

/* Typography baseline */
h1, h2, h3, h4 { font-weight: 700; }
