.mobile-controls {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
}

.joystick-sprint-ring {
    position: absolute;
    left: 80px;
    bottom: 80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.joystick-base {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.joystick-stick {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.05s ease-out;
}

.jump-button {
    position: absolute;
    right: 80px;
    bottom: 120px;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: auto;
    transition: background 0.1s;
}

.jump-button:active {
    background: rgba(255, 255, 255, 0.8);
}
