body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-image: url(../images/page.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Кнопка «Zurück» внизу страницы */
.bmg-back {
	display: block;
	width: fit-content;
	margin: 0.75rem auto 1rem;
	padding: 0.5rem 1.25rem;
	background: rgba(240, 160, 32, 0.9);
	color: #1a1a1a;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease, color 0.2s ease;
}
.bmg-back:hover {
	background: #ffb833;
	color: #0d0d0d;
}

/* Игровой фрейм по центру страницы */
.game-frame {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	min-height: 0;
}

canvas {
	background-color: transparent;
	display: block;
}

.logo {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 1;
	width: 100px;
	height: 100px;
	background-image: url('../images/favicon.webp');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	pointer-events: none;
}