/* Responsive Video Player Styles */
.rvp-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.rvp-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rvp-youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.rvp-youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rvp-mute-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background 0.3s;
}

.rvp-mute-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* রেস্পন্সিভ স্টাইল */
@media (max-width: 768px) {
    .rvp-video-container {
        height: 60vh !important;
    }
    
    .rvp-mute-toggle {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .rvp-video-container {
        height: 50vh !important;
    }
}