body {
	margin: 0;
	padding: 0;
	background: #2c3e50;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: Arial, sans-serif;
}

#game-container {
	border: 2px solid #34495e;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.dev-info {
	position: fixed;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 12px;
	z-index: 1000;
}

.reload-status {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 8px;
}

.reload-status.connected {
	background: #2ecc71;
}

.reload-status.disconnected {
	background: #e74c3c;
}
