:root {
  color-scheme: light;
  --page-bg: #000000;
  --page-ink: #fff;

  --container-max: 1280px;
  --container-pad: clamp(16px, 4vw, 32px);
  --section-pad-block: clamp(32px, 6vw, 80px);
}



*, *::before, *::after { box-sizing: border-box; }
img, svg, video { display: block; max-width: 100%; height: auto; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--page-bg);
  color: var(--page-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.mavii_wrap {
  max-width: 1064px;
  margin: 0 auto;
}

html, body {
  height: 100%;
  overflow-y: auto;        
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;           
}

* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
*::-webkit-scrollbar {
  display: none;
}

