/* Critical — первый кадр до Tailwind и шрифтов (без FOUC) */
html {
  background-color: #111318;
  color-scheme: dark;
  /* Резерв под полосу прокрутки с первого кадра — без сдвига ширины при refresh */
  scrollbar-gutter: stable;
  overflow-x: clip;
}
@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}
body {
  background-color: #111318;
  color: #e2e8f0;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
}
main {
  text-wrap: pretty;
  min-width: 0;
}
img, video {
  max-width: 100%;
  height: auto;
}
