* {
	margin: 0;
	padding: 0;
}

html, body {
	width: 100%;
	height: 100%;
	font-family: "Segoe UI", Arial, sans-serif;
	color: #1f1f1f;
}

#world, #welcome {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#world {
	overflow: hidden;
	background: linear-gradient(#e4e0ba, #f7d9aa);
}

#welcome {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
	pointer-events: none;
	padding: 24px;
	box-sizing: border-box;
	background: radial-gradient(
		circle at top,
		rgba(255, 255, 255, 0.35),
		rgba(255, 255, 255, 0.05) 60%,
		rgba(255, 255, 255, 0.0) 100%
	);
	backdrop-filter: blur(3px);
}

#brand-logo {
	width: min(260px, 70vw);
	height: auto;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
	opacity: 0.95;
}

.welcome-text {
	max-width: 520px;
	padding: 14px 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(6px);
	color: #1a1a1a;
}

.welcome-title {
	font-size: clamp(20px, 4vw, 30px);
	font-weight: 600;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	opacity: 0.9;
}

.welcome-subtitle {
	font-size: clamp(14px, 2.6vw, 17px);
	margin-top: 6px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.welcome-note {
	font-size: clamp(12px, 2.2vw, 15px);
	opacity: 0.8;
	margin-top: 10px;
}

#legal {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.2px;
	pointer-events: auto;
}

#legal a {
	color: rgba(0, 0, 0, 0.65);
	text-decoration: none;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

#legal a:hover {
	color: rgba(0, 0, 0, 0.85);
	background: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
	#welcome {
		gap: 12px;
		padding: 18px;
		background: radial-gradient(
			circle at top,
			rgba(255, 255, 255, 0.25),
			rgba(255, 255, 255, 0.02) 70%,
			rgba(255, 255, 255, 0.0) 100%
		);
	}

	#brand-logo {
		width: min(200px, 78vw);
	}

	.welcome-text {
		max-width: 92vw;
		padding: 12px 14px;
	}

	#legal {
		bottom: 10px;
	}
}

@media (min-width: 1200px) {
	#welcome {
		gap: 22px;
	}

	#brand-logo {
		width: 280px;
	}
}