/* JOYSTICK - DEFAULT HIDDEN */
#mobile-joystick {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1500 !important;
    width: 120px !important;
    height: 120px !important;
}

/* HIDE ON DESKTOP */
@media (min-width: 769px) {
    #mobile-joystick {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

#joystick-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#joystick-knob {
    width: 40px;
    height: 40px;
    background: rgba(78, 205, 196, 0.9) !important;
    border-radius: 50%;
    cursor: grab;
    position: absolute;
}

#joystick-knob:active {
    cursor: grabbing;
}