html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #20221c;
  overflow: hidden;
  touch-action: none; /* отключаем прокрутку/зум пальцами */
  -webkit-user-select: none;
  user-select: none;
  overscroll-behavior: none;
}

#game { width: 100%; height: 100%; }
#game canvas { display: block; }

/* чтобы игра занимала весь экран на мобильном, с учётом "чёлки" */
body {
  position: fixed;
  inset: 0;
}
