* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	background: #000;
	overflow: hidden;
	height: 100%;
	overscroll-behavior: none;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: monospace;
	cursor: none;
	touch-action: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	user-select: none;
}

#game-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* El tamaño CSS lo fija el motor (escala entera máxima + letterbox) */
#game-canvas {
	image-rendering: pixelated;
	image-rendering: crisp-edges;
	display: block;
	touch-action: none;
}
