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;
}

    /* ===== ДИСКЛЕЙМЕР ===== */

#disclaimer {
	position: absolute;
	inset: 0;
	background: #000;
	color: #fff;
	display: none;
	z-index: 20;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px;
}

#disclaimer h1 {
	font-size: 68px;
	color: #ff3d3d;
	margin-bottom: 20px;
}

#disclaimer p {
	max-width: 90%;
	font-size: 36px;
	font-weight:bold;
	line-height: 1.5;
	margin-bottom: 30px;
}

#continueBtn {
	background-color:transparent;
	border-radius:30px;
	border:4px solid #fff;
	display:inline-block;
	cursor:pointer;
	color:#fff;
	font-family:Arial;
	font-size:28px;
	font-weight:bold;
	padding:15px 30px;
	text-decoration:none;
}
#continueBtn:hover {
	background: #fff;
	color:#000;  
}