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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0A0A1A;
  font-family: 'Press Start 2P', monospace;
}

canvas {
  display: block;
  width: 100%;
  cursor: pointer;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 6px 0;
  background: rgba(10, 10, 26, 0.9);
  z-index: 10;
}

#footer a {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #666;
  text-decoration: none;
  letter-spacing: 1px;
}

#footer a:hover {
  color: #00D4FF;
}