body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { position: fixed; width: 100%; height: 100% }
#unity-canvas { background: #1F1F20 }
.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-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 { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-logo-title-footer { float:left; width: 102px; height: 38px; background: url('unity-logo-title-footer.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { cursor:pointer; float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }


/* CIVILSIM_WEB_THEME */
body {
  padding: 0;
  margin: 0;
  background: radial-gradient(120% 140% at 15% 10%, #284a59 0%, #162738 45%, #0d1623 100%);
  color: #e8f5ff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}
#unity-container {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(188, 233, 255, 0.28);
  box-shadow: 0 20px 60px rgba(6, 15, 25, 0.5), 0 0 0 1px rgba(188, 233, 255, 0.12);
  background: #0f1b2a;
}
#unity-canvas {
  display: block;
}
#unity-footer {
  display: none;
}
#civilsim-project-info {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(1100px, calc(100vw - 24px));
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(12, 30, 44, 0.88), rgba(27, 64, 66, 0.78));
  border: 1px solid rgba(188, 233, 255, 0.34);
  box-shadow: 0 10px 30px rgba(7, 16, 27, 0.35);
  color: #e9f7ff;
  backdrop-filter: blur(6px);
}
#civilsim-project-info h1 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
}
#civilsim-project-info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.96;
}
@media (max-width: 900px) {
  #civilsim-project-info {
    display: none;
  }
}
