/* Abu Sayed Video Popup Styles */
#asvp-video-popup-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asvp-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.asvp-close-btn {
    position: absolute;
    top: -15px;
    /* Offset outside */
    right: -15px;
    /* Offset outside */
    width: 30px;
    height: 30px;
    background: #e74c3c;
    color: #fff;
    border: 2px solid #fff;
    /* Added border to make it stand out */
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
    /* Ensure it stays above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.asvp-close-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Responsive Sizes */

/* Desktop Default */
#asvp-video-popup-container {
    width: 315px;
    height: 560px;
}

/* Tablet (Portrait & small Landscape) */
@media screen and (max-width: 1024px) {
    #asvp-video-popup-container {
        width: 250px;
        height: 444px;
        bottom: 15px;
        left: 15px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    #asvp-video-popup-container {
        width: 180px;
        height: 320px;
        bottom: 10px;
        left: 10px;
    }

    .asvp-close-btn {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
}