/* Android Chrome: the document is the only normal-page scroll owner.
 * Explicitly reset both axes because later overflow-x:hidden rules otherwise
 * make overflow-y:visible compute to auto and trap touch gestures in the shell.
 */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html body #root > .guest-shell,
  html body #root > .player-shell,
  html body #root .guest-shell,
  html body #root .player-shell {
    height: auto !important;
    min-height: 100dvh !important;
    max-height: none !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    touch-action: pan-y !important;
  }
}
