html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b0b10;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#unity-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#unity-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background: #0b0b10;
  touch-action: none;
  outline: none;
}

#unity-loading-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  text-align: center;
}

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

#unity-progress-bar-empty {
  width: 220px;
  height: 14px;
  margin: 0 auto;
  background: #1c1c26;
  border-radius: 7px;
  overflow: hidden;
}

#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: #d8b24a;
  transition: width 0.15s ease-out;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
  z-index: 10;
  color: #000;
  font-family: sans-serif;
}
