#gameOverlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #ffffff;
	font-family: arial, sans-serif;
}

#gameOverlay .overlay-box {
	text-align: center;
	padding: 20px 28px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.75);
	box-shadow: 0 0 25px rgba(0,0,0,0.8);
	max-width: 80%;
}

#gameOverlay .overlay-title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 10px;
}

#gameOverlay .overlay-message {
	font-size: 18px;
	margin-bottom: 16px;
}

#gameOverlay .overlay-hint {
	font-size: 14px;
	opacity: 0.8;
}
