#site-video {
	width: 100%;
	height: 100%;
	min-height: 600px;
	object-fit: cover;
	margin: 0!important;
}
#site-video-mobile {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background-color: #000;
	object-fit: cover;
}
/* Оверлей изначально скрыт */
.play-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: rgba(0,0,0,0.5);
	display: none; /* скрыт */
	justify-content: center;
	align-items: center;
	z-index: 10;
	cursor: pointer;
}
.play-overlay.show {
	display: flex; /* показываем при необходимости */
}
.play-overlay button, #unmute-button {
	padding: 10px 20px;
	font-size: 16px;
	background: #00a8ff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
#unmute-button {
	margin-top: 10px;
	display: none;
}
#error-message {
	color: red;
	margin-top: 10px;
	display: none;
}