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

#unity-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

#unity-canvas {
  background: #0b0e1f;
  display: block;
}

.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}

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

#loader-cover {
  display: block;
  width: min(320px, 68vw);
  max-height: 62vh;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.75));
}

#game-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 8px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 18px;
}

#unity-progress-bar-empty {
  width: 282px;
  height: 18px;
  margin: 0 auto;
  background: url('progress-bar-empty-dark.png') no-repeat center;
}

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

#unity-fullscreen-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  background: url('fullscreen-button.png') no-repeat center;
  cursor: pointer;
  opacity: 0.55;
  z-index: 10;
}

#unity-fullscreen-button:hover {
  opacity: 1;
}

.unity-mobile #unity-fullscreen-button {
  display: none;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
