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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #060e1a;
  font-family: 'Fredoka', sans-serif;
  touch-action: none;
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}

.touch-zone {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 10;
}

.joystick-container {
  position: fixed;
  z-index: 20;
  pointer-events: none;
}

.joystick-base {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.15);
  border: 2px solid rgba(45, 212, 191, 0.3);
  position: relative;
  pointer-events: none;
}

.joystick-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.5);
  border: 2px solid rgba(45, 212, 191, 0.7);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

#footer a {
  color: rgba(45, 212, 191, 0.4);
  text-decoration: none;
  font-size: 11px;
  font-family: 'Fredoka', sans-serif;
}

#footer a:hover {
  color: rgba(45, 212, 191, 0.7);
}

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