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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', Courier, 'STENCIL', monospace;
}

#app {
  position: relative;
  width: 800px;
  height: 600px;
}

#game-canvas {
  display: block;
  background: #000;
  width: 800px;
  height: 600px;
}

#hud-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  padding: 8px 12px;
  font-family: 'Courier New', 'STENCIL', monospace;
  font-size: 11px;
  color: #33ff33;
  text-shadow: 0 0 2px #000;
}

#hud-mission, #hud-objective, #hud-contacts {
  line-height: 1.6;
}

#ship-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #cc9900;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: 'Courier New', 'STENCIL', monospace;
  font-size: 14px;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
