*, *::before, *::after { box-sizing: border-box; }

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebas-neue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: 180,120,255;
  --accent-dim: 140,80,255;
  --accent-dark: 120,60,200;
  --bg-tint: 40,20,80;
  --screen-bg: 2,0,12;
  --text-primary: 230,215,255;
  --text-secondary: 200,180,255;
  --text-muted: 180,160,220;
  --grad-start: #b478ff;
  --grad-end: #7840e0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #020008;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
  touch-action: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

canvas {
  display: block;
  position: absolute;
  top: 0; left: 0;
  touch-action: none;
}

.screen {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top, 20px) 20px calc(20px + env(safe-area-inset-bottom, 0px));
}
