@charset "utf-8";

#game-container { 
	position: relative; 
	width: 100%; 
	background: #000; 
	touch-action: none; 
	overflow: hidden; 
	border-radius: 5px; 
	border: 3px solid #334155; 
}

canvas {
	display: block; 
	background: #0d0618; 
	cursor: crosshair; 
}

#gameOverlay { 
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%; 
	display: flex; flex-direction: column;
	align-items: center;
	justify-content: center; 
	background: rgba(0,0,0,0.8);
	color: white;
	z-index: 10;
	text-align: center;
	padding: 20px; 
}

.hidden {
	display: none !important;
}

.btn-start {
	padding: 15px 40px;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	background: #8b5cf6;
	color: white;
	border: none;
	border-radius: 50px;
	transition: 0.3s;
}

.btn-start:hover {
	background: #7c3aed;
	transform: scale(1.05);
}

.btn-start-my {
	padding: 10px 20px;
	font-size: 1rem;
	font-weight: bold;
	background: #8b5cf6;
	color: white;
	border: none;
	border-radius: 5px;
	transition: 0.3s;
}
