* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
  width: 100%; height: 100%; overflow: hidden; 
  background: #0D0D1A; 
  font-family: 'Orbitron', sans-serif;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
#canvas { 
  display: block; 
  position: absolute; 
  top: 50%; left: 50%; 
  transform: translate(-50%, -50%); 
}
#touch-controls {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 10;
}
#joystick-area {
  position: absolute;
  left: 30px; bottom: 30px;
  width: 140px; height: 140px;
  pointer-events: auto;
}
#joystick-base {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(0,255,255,0.15);
  border: 2px solid rgba(0,255,255,0.3);
  position: relative;
}
#joystick-thumb {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(0,255,255,0.4);
  position: absolute;
  top: 35px; left: 35px;
  transition: none;
}
#dash-btn {
  position: absolute;
  right: 40px; bottom: 50px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(0,255,255,0.2);
  border: 2px solid rgba(0,255,255,0.5);
  color: #0ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  pointer-events: auto;
}
#footer-link {
  position: fixed;
  bottom: 4px; right: 8px;
  z-index: 100;
}
#footer-link a {
  color: rgba(0,255,255,0.3);
  text-decoration: none;
  font-size: 10px;
  font-family: 'Orbitron', sans-serif;
}
#footer-link a:hover { color: rgba(0,255,255,0.6); }

@media (hover: none) and (pointer: coarse) {
  #touch-controls { display: block; }
}