:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: #040406;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* { box-sizing: border-box; }
html, body, #app { width: 100%; height: 100%; margin: 0; }
body { overflow: hidden; background: #040406; }
canvas { display: block; width: 100%; height: 100%; touch-action: none; }

#app {
  background:
    radial-gradient(circle at 13% 22%, rgba(255, 80, 125, .045), transparent 29%),
    radial-gradient(circle at 84% 43%, rgba(88, 223, 255, .04), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.01), transparent 25%),
    #040406;
}

.hud {
  position: fixed;
  z-index: 10;
  inset: 24px 28px auto 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.brand { display: grid; gap: 4px; }
.hud span { font-size: 9px; opacity: .46; }
.hud strong { font-size: 12px; font-weight: 600; letter-spacing: .06em; }
.hud p { margin: 0; font-size: 9px; opacity: .3; text-align: right; }

.stats {
  display: flex;
  gap: 22px;
  padding-top: 2px;
}
.stats span { display: flex; gap: 8px; }
.stats b { color: #fff; font-weight: 600; opacity: .92; }

@media (max-width: 700px) {
  .hud { inset: 18px; grid-template-columns: 1fr auto; }
  .hud p { display: none; }
  .brand strong { display: none; }
  .stats { gap: 12px; }
}
