.video-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	position: relative;
	z-index: 2;
}

/* Main foreground video */
#videoElement {
        width: 100%;
        max-width: 60%;
        max-height: 640px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: block;
        margin: 0 auto;
}

/* Mobile responsive: full width on small screens */
@media (max-width: 768px) {
        #videoElement {
                max-width: 100%;
        }
}

/* Background video with blur effect */
#backgroundVideoElement {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%) scale(1.2);
	filter: blur(20px);
	z-index: 0;
	object-fit: cover;
}

/* Enhanced overlay for better contrast */
.app-video .bg-overlay {
	background-color: rgba(49, 53, 173, 0.4);
	overflow: hidden;
}

.app-video .bg-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}
