html, body {
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100vw;
	background-image: url('../images/CoverIMG.jpg'); /* Кавер */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	font-family: sans-serif;
	transition: background 0.5s;
	position: relative;
}

/* iFrame гри */
#gameFrame {
	width: 100%;
	height: 100%;
	border: none;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}

/* Кнопка Play по центру контейнера */
#playBtn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px; /* розмір картинки */
	height: auto;
	cursor: pointer;
	z-index: 10;
	transition: transform 0.2s;
}

/* збільшення при наведенні */
#playBtn:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

/* Кнопка фулскріну */
#fullscreenBtn {
	position: absolute;
	top: 3px;
	left: 3px;
	padding: 8px 16px;
	font-size: 1em;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	display: block;
	z-index: 10;
}