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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #2d5a1b;
  font-family: 'Press Start 2P', monospace;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

#canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#controls {
  display: none;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #5a3a1a;
  background: linear-gradient(to bottom, rgba(139,90,43,0.9), rgba(101,67,33,0.95));
  padding: 4px 8px;
  z-index: 100;
  border-top: 2px solid #3e2510;
}

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

#footer a:hover {
  text-decoration: underline;
}