@media (max-width: 768px) {
  #bartender-game.mobile-fullscreen .game-content-wrapper {
    /*
      This transform pushes the main content block down.
      The value can be adjusted to fine-tune the final position.
      A positive percentage moves it down the screen.
    */
    transform: translateY(23%);
    transition: transform 0.3s ease-in-out;
  }
}