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

body {
  background: #111;
  color: #e8e8e8;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

#game-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#game {
  display: block;
  width: 100vw;
  height: 100vh;
  image-rendering: pixelated;
  background: #0b0f14;
}

#hud {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 300px;
  line-height: 1.55;
  font-size: 14px;
  z-index: 10;
}

#hud strong {
  color: #ffd166;
}
