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

body {
  position: fixed;
  inset: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#unity-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #030910;
}

#unity-canvas {
  display: block;
  position: fixed;
  inset: 0;
  width: 100vw !important;
  height: 100vh !important;
  background: #030910;
  outline: none;
}

#unity-loading-bar {
  position: fixed;
  left: 50%;
  bottom: 72px;
  width: min(420px, 50vw);
  transform: translateX(-50%);
  display: none;
  z-index: 10;
}

#unity-logo { display: none }
#unity-footer { display: none }
#unity-logo-title-footer { display: none }
#unity-build-title { display: none }

#unity-progress-bar-empty {
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: rgba(120, 205, 225, 0.12);
}

#unity-progress-bar-full {
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #59d8f0, #a8f2ff);
  box-shadow: 0 0 18px rgba(89, 216, 240, 0.55);
}

#ujura-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #e7fbff;
  background:
    radial-gradient(circle at 50% 46%, rgba(72, 202, 228, 0.18), transparent 24%),
    radial-gradient(circle at 50% 56%, rgba(13, 41, 56, 0.72), transparent 42%),
    #030910;
  transition: opacity 450ms ease, visibility 450ms ease;
}

#ujura-loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.ujura-loading-mark {
  font-size: clamp(32px, 5vw, 76px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 32px rgba(89, 216, 240, 0.38);
}

.ujura-loading-title {
  color: #79dff2;
  font-size: 18px;
  font-weight: 700;
}

.ujura-loading-copy {
  color: rgba(231, 251, 255, 0.76);
  font-size: 14px;
}

.ujura-loading-track {
  width: min(420px, 50vw);
  height: 4px;
  overflow: hidden;
  background: rgba(120, 205, 225, 0.12);
  border: 1px solid rgba(120, 205, 225, 0.22);
}

#ujura-loading-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #39c7e7, #b8f8ff);
  box-shadow: 0 0 18px rgba(89, 216, 240, 0.58);
}

#unity-warning {
  position: fixed;
  left: 50%;
  top: 24px;
  z-index: 20;
  display: none;
  width: min(760px, calc(100vw - 32px));
  transform: translateX(-50%);
}

.unity-banner {
  margin-bottom: 8px;
  padding: 12px 14px;
  color: #e7fbff;
  background: rgba(17, 35, 45, 0.92);
  border: 1px solid rgba(120, 205, 225, 0.45);
}

.unity-banner.error {
  border-color: rgba(255, 116, 116, 0.65);
}
