.cpv-wrapper {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 100px;
    z-index: 999;
}

#cpv-thumb-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cpv-close-thumb {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    padding: 2px 7px;
    cursor: pointer;
    z-index: 1000;
}

.cpv-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.cpv-popup video {
    width: 80vw;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.cpv-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: red;
    color: white;
    font-size: 22px;
    border-radius: 50%;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
}

@media (max-width: 768px) {
    .cpv-wrapper {
        bottom: 80px;
        right: 15px;
        width: 90px;
    }
}
