*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body, #app { height: 100%; }
body {
  background: #000;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}
button { background: none; border: none; color: inherit; font: inherit; cursor: default; }
input, textarea { font: inherit; color: inherit; outline: none; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
ul, ol { list-style: none; }
.hidden { display: none !important; }
.screen { position: fixed; inset: 0; overflow: hidden; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(127,127,127,0.4); border-radius: 6px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(127,127,127,0.65); border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-track { background: transparent; }
