* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0A0E2A;
  font-family: 'Dela Gothic One', sans-serif;
}

#game-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#canvas {
  display: block;
  image-rendering: auto;
}

#game-footer {
  position: fixed;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 100;
  pointer-events: none;
}

#game-footer a {
  pointer-events: auto;
  color: #0D4B5E;
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

#game-footer a:hover {
  opacity: 1;
  color: #00FFD4;
}