html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0f1015;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

#unity-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f1015;
  touch-action: none;
}

#unity-canvas {
  display: block;
  width: min(100vw, calc(100vh * 9 / 16));
  height: min(100vh, calc(100vw * 16 / 9));
  max-width: 100vw;
  max-height: 100vh;
  aspect-ratio: 9 / 16;
  background: #0f1015;
  outline: none;
  touch-action: none;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(56vw, 320px);
  transform: translate(-50%, -50%);
}

#unity-logo {
  display: none;
}

#unity-progress-bar-empty {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

#unity-progress-bar-full {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
}

#unity-warning {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  text-align: center;
}

#unity-footer {
  display: none;
}
