html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #231F20;
  overscroll-behavior: none;
}

body {
  touch-action: none;
}

#unity-container,
#unity-container.unity-desktop,
#unity-container.unity-mobile,
#unity-container.unity-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  width: 100dvw !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #231F20;
}

#unity-canvas,
#unity-canvas.unity-mobile,
#unity-canvas.unity-fullscreen {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100vw;
  max-height: 100vh;
  max-width: 100dvw;
  max-height: 100dvh;
  background: #231F20;
  outline: none;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 10;
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url('unity-logo-dark.png') no-repeat center;
}

#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin-top: 10px;
  margin-left: 6.5px;
  background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-footer {
  display: none !important;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: max(12px, env(safe-area-inset-top));
  transform: translateX(-50%);
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  background: white;
  padding: 10px;
  display: none;
  z-index: 20;
}
