/* style.css */

/* Remove default margins and hide scrollbars */
body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #222;
}

/* Full-screen game canvas */
#gameCanvas {
  display: block;
}

/* Virtual Joystick Areas */
#joystickLeft, #joystickRight {
  position: fixed;
  bottom: 0;
  height: 33.33%;
  background: rgba(255, 255, 255, 0.1);
  touch-action: none;
}
#joystickLeft {
  left: 0;
  width: 50%;
}
#joystickRight {
  right: 0;
  width: 50%;
}

/* Joystick Inner Handle */
#joystickLeftInner, #joystickRightInner {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
