body {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #222;
	color: #fff;
	font-family: Arial, sans-serif;
	margin: 0;
}
h1 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.game-container {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 40px;
}
#game-board {
	/* This div will hold the Phaser canvas */
}
.score-section {
	padding-top: 20px;
	text-align: center;
}
.score-section h2 {
	margin: 0 0 10px 0;
	font-size: 2em;
}
.score-section p {
	font-size: 2.5em;
	margin: 0;
	font-weight: bold;
	color: #ffdd00;
}
</style>
