* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0a0a0a;
	font-family: "Courier New", Courier, monospace;
}

.game-shell {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
}

#game {
	display: block;
	width: min(672px, 96vw);
	height: auto;
	aspect-ratio: 224 / 256;
	image-rendering: pixelated;
	image-rendering: crisp-edges;
	border: 2px solid #333;
	background: #000;
	box-shadow: 0 0 24px rgba(0, 255, 65, 0.15);
}

.score {
	margin: 0;
	color: #00ff41;
	font-size: 1.25rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
