/* ============================================================
   style.css — Game container styling
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000008;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Courier New', monospace;
  user-select: none;
  overflow: hidden;
}

#wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#gameCanvas {
  display: block;
  border: 2px solid #1a1a4a;
  box-shadow:
    0 0 20px #00ffcc44,
    0 0 60px #00ffcc11,
    inset 0 0 20px #00001188;
  cursor: crosshair;
  image-rendering: pixelated;
  max-width: 100vw;
  max-height: 90vh;
  width: 880px;
  height: 640px;
}
