* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%;
  background: #1a1a2e;
  overflow: hidden;
  font-family: 'Bangers', cursive;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
canvas {
  display: block;
  margin: 0 auto;
}
footer {
  position: fixed;
  bottom: 4px;
  width: 100%;
  text-align: center;
  z-index: 100;
}
footer a {
  color: #ff6b9d;
  text-decoration: none;
  font-size: 12px;
  font-family: 'Permanent Marker', cursive;
  opacity: 0.7;
}
footer a:hover { opacity: 1; }

#touch-controls {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  pointer-events: none;
  z-index: 50;
}
#touch-left, #touch-right {
  position: absolute;
  bottom: 20px;
  pointer-events: auto;
}
#touch-left { left: 20px; }
#touch-right { right: 20px; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
#joystick-area {
  width: 120px; height: 120px;
  position: relative;
}
#joystick-base {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,217,15,0.2);
  border: 3px solid rgba(255,217,15,0.5);
  position: absolute;
  top: 10px; left: 10px;
  display: flex; align-items: center; justify-content: center;
}
#joystick-knob {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,217,15,0.6);
  border: 2px solid #FFD90F;
}
.touch-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,217,15,0.25);
  border: 2px solid rgba(255,217,15,0.6);
  color: #FFD90F;
  font-family: 'Bangers', cursive;
  font-size: 14px;
  pointer-events: auto;
}
.touch-btn:active {
  background: rgba(255,217,15,0.5);
}

@media (max-width: 768px), (pointer: coarse) {
  #touch-controls { display: flex; }
}