#mobile-controls {
  display: none;
}

#joystick {
  position: fixed;
  left: 24px;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: rgba(44, 44, 58, 0.13);
  border: 1px solid rgba(44, 44, 58, 0.18);
  z-index: 20;
  touch-action: none;
  backdrop-filter: blur(8px);
}

#joystick-stick {
  position: absolute;
  left: 36px;
  top: 36px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.88);
  border: 1px solid rgba(139, 69, 19, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

#run-button {
  position: fixed;
  right: 24px;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(139, 69, 19, 0.25);
  background: rgba(245, 240, 235, 0.88);
  color: #8b4513;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 20;
  touch-action: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  user-select: none;
}

#run-button:active {
  background: rgba(139, 69, 19, 0.15);
}

@media (pointer: coarse) {
  #mobile-controls {
    display: block;
  }

  #crosshair {
    display: none;
  }

  #hint {
    bottom: calc(160px + env(safe-area-inset-bottom, 0px));
  }
}
