ui/maploadingscreen.razor.scss
MapLoadingScreen {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;

	.backdrop {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #0a0a0e;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}

	.scrim {
		position: absolute;
		width: 100%;
		height: 100%;
		background: linear-gradient( to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35) );
	}

	.content {
		position: absolute;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		padding: 80px;
		gap: 12px;
	}

	.title {
		font-size: 48px;
		font-weight: bold;
		color: white;
		text-transform: uppercase;
		text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
	}

	.spinner {
		width: 40px;
		height: 40px;
		margin: 8px 0;
		border: 4px solid rgba(255, 255, 255, 0.2);
		border-top-color: #ffd54a;
		border-radius: 50%;
		animation-name: map-load-spin;
		animation-duration: 0.8s;
		animation-timing-function: linear;
		animation-iteration-count: infinite;
	}

	.status {
		font-size: 22px;
		font-weight: bold;
		color: #ffd54a;
		text-transform: uppercase;
		text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
	}
}

@keyframes map-load-spin {
	from {
		transform: rotate( 0deg );
	}

	to {
		transform: rotate( 360deg );
	}
}