body { padding: 0; margin: 0 }
#unity-container { position: fixed; width: 100%; height: 100%; }
#unity-canvas { width: 100%; height: 100%; background: #000000 }
#unity-loading-bar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none; /* toggled to "flex" by index.html when loading starts */
  text-align: center;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000000;
}

/* Sportstech image-sequence splash animation (replaces #unity-logo) */
#unity-logo {
  width: 840px;
  height: 468px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

/* Custom loading bar (replaces Unity progress-bar images) */
#unity-progress-bar-empty {
  margin-left: auto;
  margin-right: auto;
  width: 338px;
  height: 12px;
  margin-top: -190px;
  transform: translateX(30px);
  background: url('loading-bar-empty.png') no-repeat center;
  background-size: 100% 100%;
}
#unity-progress-bar-full {
  width: 0%;
  height: 10px;
  margin-top: 1px;
  margin-left: 1px;
  background: url('loading-bar-full.png') no-repeat left center;
  background-size: 100% 100%;
}
#unity-splash-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-150px);
}

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