body {
  padding: 0;
  margin: 0;
  background: #080b14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: arial;
  overflow: hidden;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#unity-container {
  position: relative;
  z-index: 1;
}
#unity-container.unity-desktop { }
#unity-container.unity-mobile { position: fixed; width: 100%; height: 100%; }

#unity-canvas { background: #1a1030; 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;
}
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-light.png') no-repeat center; }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty-light.png') no-repeat center; }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-light.png') no-repeat center; }

#unity-footer {
  position: relative;
  width: 960px;
  background: rgba(8, 11, 20, 0.85);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 0;
  border-top: 1px solid rgba(120, 80, 180, 0.25);
}
.unity-mobile #unity-footer { display: none; }

#unity-webgl-logo { display: none; }
#unity-fullscreen-button { display: none; }

#unity-build-title {
  color: #9b6fc8;
  font-family: arial;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-right: 8px;
  opacity: 0.6;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: #12101e;
  color: #fff;
  border: 1px solid #7a288a;
  padding: 10px;
  display: none;
}
