body {
	padding: 0;
	margin: 0;
	background: #121418;
	color: #fff;
}

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

#unity-canvas {
	width: 100%;
	height: 100%;
	background: #121418;
}

/* Centered loading cluster */
#unity-loading-bar {
	position: absolute;
	left: 50%;
	top: calc(50% - 50px); /* moved up by 50px from center */
	transform: translateX(-50%); /* only horizontal centering now */
	display: none; /* shown by JS */
	width: min(60vw, 520px);
	text-align: center;
}

/* New logo using provided asset at project root */
#unity-logo {
	width: 180px; /* arbitrary to match NewDesign proportion */
	height: 90px;
	margin: 0 auto 10px auto; /* approx 50px gap above progress bar */
	background: url('../Logo_pot.png') no-repeat center center / contain;
	filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

/* Thin modern progress bar */
#unity-progress-bar-empty {
	position: relative;
	width: min(60vw, 205px);
	height: 4px;
	margin: 0 auto;
	background: rgba(255,255,255,0.18);
	border-radius: 999px;
	overflow: hidden;
}

#unity-progress-bar-full {
	width: 0%; /* updated by JS */
	height: 100%;
	background: linear-gradient(90deg, #00E5FF 0%, #29B6F6 100%);
	border-radius: inherit;
	transition: width 160ms ease-out;
}

#unity-warning {
	position: absolute;
	left: 50%;
	top: 5%;
	transform: translate(-50%);
	background: #222;
	color: #fff;
	padding: 10px;
	display: none;
	border-radius: 6px
}

/* Bottom-centered project version label */
#unity-version {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0.2px;
	color: rgba(255,255,255,0.72);
	user-select: none;
	pointer-events: none;
}
