/**
 * Main Stylesheet
 *
 * Core styles for the Serenity game client.
 */

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #0f0f23;
}

/* Game container */
#game-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#game-container canvas {
	max-width: 100%;
	max-height: 100%;
}

/* Version overlay: bottom-right, on top of game */
#version-overlay {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9999;
	font-family: monospace;
	font-size: 12px;
	padding: 4px 8px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #ccc;
	pointer-events: none;
	user-select: none;
}