function showWalkthroughContent(){ // Hide all buttons first, then switch to walkthrough mode and show the banner setButtonVisibility(false); isOnWalktroughMode = true; walkthroughBanner.style.display = "flex"; } function hideWalkthroughContent(){ // Exit walkthrough mode first, then restore buttons to their pre-walkthrough state isOnWalktroughMode = false; walkthroughBanner.style.display = "none"; setButtonVisibility(!areButtonsHidden); }