/* ✅ Common styles */
.video-sticky {
    position: fixed;
    bottom: 0;
    background: #000;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}

.video-sticky .video-js {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
}

/* ✅ Close button */
.close-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
}

/* 📱 Mobile: Full width bottom */
@media (max-width: 768px) {
    .video-sticky {
        left: 0;
        width: 100%;
        max-width: 100%;
    }
}

/* 💻 Desktop: Bottom right corner */
@media (min-width: 769px) {
    .video-sticky {
        right: 20px;
        bottom: 20px;
        width: 360px;
        max-width: 30%;
        border-radius: 8px;
    }
}


@media only screen and (min-width: 480px) {
    .stickyads_Mobile_Only {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .stickyads_Mobile_Only {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        z-index: 999999;
        display: flex;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.1);
    }
}

.stickyads_Mobile_Only .btn_Mobile_Only {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #00163a;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    text-align: center;
}

.stickyads_Mobile_Only .btn_Mobile_Only:hover {
    background-color: red;
}

.stickyads {
    display: none;
}



@media only screen and (min-width: 480px) {
    .stickyads_Desktop_Only {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        z-index: 999999;
        display: flex;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.1);
    }
}

@media only screen and (max-width: 480px) {
    .stickyads_Desktop_Only {
        display: none;
    }
}

.stickyads_Desktop_Only .btn_Desktop_Only {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #00163a;
    color: white;
    font-size: 16px;
    border: 0;
    cursor: pointer;
    border-radius: 25px;
    text-align: center;
}

.stickyads_Desktop_Only .btn_Desktop_Only:hover {
    background-color: red;
}

.stickyads {
    display: none;
}