		* { margin: 0; padding: 0; box-sizing: border-box; }
		html, body {
			width: 100%; height: 100%; overflow: hidden;
			background: #0b1120;
			font-family: 'Parkinsans', sans-serif;
			color: #fff;
		}

		#loading {
			position: fixed;
			inset: 0;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			gap: 20px;
			z-index: 5;
			pointer-events: none;
		}

		.load-title {
			font-size: 1.6rem;
			font-weight: 600;
			color: #d0ddef;
			letter-spacing: 0.04em;
		}

		.load-msg {
			font-size: 0.9rem;
			font-weight: 400;
			color: #5a7a9e;
		}

		#loading.hide {
			opacity: 0;
			transition: opacity 0.4s ease;
		}

		#cnv {
			position: fixed;
			top: 0; left: 0;
			right: 0; bottom: 0;
			width: 100% !important;
			height: 100% !important;
			display: block;
			z-index: 6;
		}
