@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #1a1a2e;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'DotGothic16', monospace;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

#gameWrapper {
  position: relative;
  width: 480px;
  height: 640px;
  max-width: 100vw;
  max-height: 100vh;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#touchArea {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
}
