* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #07090c;
  color: #e6edf3;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  width: 1280px;
  height: 800px;
  max-width: 100vw;
  max-height: 100vh;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}

#game canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
