/* MegaBrain — desktop vertical scroll for non-example pages only — 2026-08-28
   1366x768 and 4K. Example-solving/game pages are explicitly excluded. */
@media (min-width: 1000px) and (min-height: 600px) {
  html.mb-desktop-scroll-enabled,
  body.mb-desktop-scroll-enabled {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
  }

  body.mb-desktop-scroll-enabled > .page.active {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow: visible !important;
  }
}
