html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 30%, #1a1028 0%, #050508 62%, #000 100%);
  overflow: hidden;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  font-family: "Courier New", Courier, monospace;
}

#wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Portrait phones: pin the dock to the physical bottom so it never floats mid-screen. */
@media (max-aspect-ratio: 640/1100) {
  #wrap { align-items: flex-end; }
}

#game {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
    touch-action: none;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(80, 200, 255, 0.18),
    0 0 40px rgba(40, 120, 255, 0.22),
    0 18px 60px rgba(0, 0, 0, 0.65);
}

@media (min-aspect-ratio: 640/1100) {
  #game { height: 100vh; height: 100dvh; width: auto; }
}
@media (max-aspect-ratio: 640/1100) {
  #game { width: 100vw; height: auto; }
}
