.floating-video-widget {
    position: fixed;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
    border-style: solid;
}

.floating-video-widget .video-preview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.floating-video-widget video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox video {
    max-width: 90%;
    max-height: 90vh;
}

.video-lightbox .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.floating-video-widget .close-widget-button {
    position: absolute;
    top: -5%;
    left: 73%;
    width: 35px;
    height: 35px;
    background: #960030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
    transition: all 0.2s ease;
}

.floating-video-widget .close-widget-button svg {
    stroke: white;
    width: 20px;
}

.floating-video-widget .close-widget-button:hover {
    background: #ee034e;
    transform: scale(1.1);
}

.floating-video-widget.hidden {
    display: none;
}

@media (max-width: 767px) {
    .video-lightbox .close-button {
        top: 10px;
        right: 10px;
        font-size: 24px;
    }
    .floating-video-widget .close-widget-button {
        width: 35px;
        height: 35px;
    }
} 