* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0f;
  font-family: 'Share Tech Mono', monospace;
  color: #c0c0c0;
  user-select: none;
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#ui-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#game-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  text-align: center;
  padding: 4px 8px;
  font-size: 10px;
  color: #553322;
  background: rgba(10, 10, 15, 0.9);
  border-top: 1px solid #221100;
  pointer-events: auto;
}

#game-footer a {
  color: #c44e20;
  text-decoration: none;
}

#game-footer a:hover {
  color: #00e5ff;
}