#videoLightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

#videoLightbox.active {
	display: flex;
}

#videoContainer {
	width: 80%;
	max-width: 800px;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
	border-radius: 8px;
}

#videoContainer video {
	width: 100%;
	height: 100%;
}

