.Modal_Theater {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.Modal_Theater_Backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
}

.Modal_Theater_Container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1920px;
	aspect-ratio: 16 / 9;
	transform: translate(-50%, -50%);
}

.Modal_Theater_Close {
	position: absolute;
	top: -40px;
	right: 0;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease;
}

.Modal_Theater_Close:hover {
	color: rgba(255, 255, 255, 1);
}

.Theater_Video {
	width: 100%;
	height: 100%;
	border: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.Modal_Theater_Close {
		top: -35px;
		width: 35px;
		height: 35px;
		font-size: 35px;
	}
}
