/* css/base.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto !important; /* Отключаем smooth scroll для надёжного скролла наверх */
}

body {
  font-family: 'Oswald', sans-serif;
  background: #000;
  color: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL Support */
body.rtl {
  direction: rtl;
}

body.rtl .constant-text {
  text-align: right;
}

body.rtl .ui-links {
  flex-direction: row-reverse;
}

body.rtl #name-layer {
  right: auto;
  left: 5vw;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}
