:root {
	color-scheme: dark;
	font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
	background-color: #050608;
	color: #f8f9fb;
}

* {
	box-sizing: border-box;
}

	body {
	margin: 0;
	min-height: 100vh;
	background: radial-gradient(circle at top, #142437, #050608 70%);
	touch-action: none;
	font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
	color: #f8f9fb;
}

.locked-screen {
	width: min(720px, 100%);
	margin: 4vh auto;
	padding: 2rem 1.5rem;
	text-align: center;
	color: inherit;
}

.locked-screen {
	background: rgba(5, 6, 8, 0.8);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.locked-screen h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 0.5rem;
}

.locked-screen p {
	margin: 0.25rem 0;
	line-height: 1.4;
}

.locked-screen .hint {
	color: rgba(248, 249, 251, 0.7);
}

.game-stage {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1;
}

canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.noscript-message {
	display: block;
	margin: 1rem auto;
	font-size: 0.95rem;
	color: rgba(248, 249, 251, 0.7);
	text-align: center;
}
