public void ChangeBalanceLevel(int additionalBeverageLevel)
    {
        ballanceSliderValue += additionalBeverageLevel;

        // Limit the alcohol count to be within the range of 0 and the maxValue of ballanceSlider
        ballanceSliderValue = (int)Mathf.Clamp(ballanceSliderValue, 0, ballanceSlider.maxValue);

        ballanceSlider.value = ballanceSliderValue;
        parallaxManager.ChangeSpeed(ballanceSlider.value);
    }