.vbm-video-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.vbm-video-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	max-height: 100vh; /* Prevents it from going beyond screen height */
}

@media (max-width: 768px) {
	.vbm-video-wrapper {
		aspect-ratio: 4 / 3;
	}
}

.vbm-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mute Button (Bottom-Right) */
.vbm-mute-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    /* border: 1px solid #8d8d8d; */
    /* padding: 12px 15px; */
    /* border-radius: 50%; */
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
}

.vbm-mute-button i {
    font-size: 20px;
}

.vbm-mute-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Play/Pause Button (Bottom-Left) */
.vbm-play-toggle {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
}

.vbm-play-toggle i {
    font-size: 20px;
}

.vbm-play-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Center Overlay Icon (Optional hover version – not used if you're using the bottom-left toggle instead) */
.vbm-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.vbm-video-banner:hover .vbm-play-overlay {
    opacity: 1;
}

.vbm-play-overlay i {
    pointer-events: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .vbm-video-wrapper {
        padding-top: 75%;
    }

    .vbm-mute-button,
    .vbm-play-toggle {
        font-size: 18px;
        padding: 10px 12px;
        bottom: 10px;
    }

    .vbm-mute-button {
        right: 10px;
    }

    .vbm-play-toggle {
        left: 10px;
    }
}