html, body {
  background: rgb(42, 43, 62);
  -webkit-overflow-scrolling: touch;
 
}
@media (max-width: 768px) {
    body {
      touch-action: pan-y !important; /* Разрешаем только вертикальный скролл */
      overscroll-behavior-x: none !important; /* Блокируем "оттягивание" */
    }
 @supports (-webkit-touch-callout: none) {
      body {
       
        width: 100% !important;
        height: 100% !important;
      }
    }
