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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a14;
  font-family: 'Special Elite', cursive;
}

#canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.touch-zone {
  display: none;
  position: fixed;
  bottom: 0;
  width: 50%;
  height: 40%;
  z-index: 10;
  pointer-events: auto;
}

#touch-left {
  left: 0;
}

#touch-right {
  right: 0;
}

#touch-joystick {
  position: fixed;
  z-index: 11;
  pointer-events: none;
}

#joystick-base {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(200,200,200,0.1);
  border: 2px solid rgba(200,200,200,0.2);
  position: relative;
}

#joystick-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(200,200,200,0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
  .touch-zone {
    display: block;
  }
}

a {
  color: #667;
  text-decoration: none;
}
a:hover {
  color: #99a;
}