#video-prehome {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.85);
	align-items: center;
	justify-content: center;
}

#video-prehome.active {
	display: flex;
}

.video-wrapper {
	position: relative;
	width: 90%;
	max-width: 900px;
}

.close-video {
	position: absolute;
	top: -5rem;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

.video-container iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}