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

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  min-height: 100svh;
}

html {
  background: #12080c;
}

body {
  font-family: var(--font-khmer);
  color: var(--ui-cream);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

img,
svg {
  display: block;
  max-width: 100%;
  background: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

#app {
  width: 100%;
  min-height: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: stretch;
  background: #0c0608;
}

.device {
  position: relative;
  width: 100%;
  height: 100dvh;
  height: 100svh;
  height: var(--app-h, 100dvh);
  overflow: hidden;
  background: var(--sky-top);
}