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

.game-box {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: auto;
	background-color: #f0f0f0;
	touch-action: none; /* Prevents default touch behaviors */
}

#game-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	height: 500px;
	margin: 0 20px;
}

#gameCanvas {
	width: 100%;
	height: 100%;
	background-color: white;
	border: 2px solid #333;
}

#score {
	position: absolute;
	top: 30px;
	right: 30px;
	font-family: Arial, sans-serif;
	font-size: 28px;
	color: #333;
	font-weight: bold;
}

/* Mobile Portrait */
@media (max-width: 768px) and (orientation: portrait) {
	#game-container {
		height: 80vh;
	}
	#score {
		font-size: 24px;
	}
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
	#game-container {
		height: 85vh;
		max-width: 100%;
	}
	#score {
		font-size: 24px;
	}
}
