@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--fc-accent) #1a1a1a;
}

*::-webkit-scrollbar       { width: 8px; background: #1a1a1a; }
*::-webkit-scrollbar-thumb { background: var(--fc-accent); border-radius: 0; }

html {
  font-family: 'Press Start 2P', monospace;
  image-rendering: pixelated;
  scroll-behavior: smooth;
}

body {
  background: var(--fc-bg);
  color: var(--fc-text-primary);
  -webkit-font-smoothing: none;
  overflow-x: hidden;
}
