/* Video Sticky Widget Styles */

.video-sticky-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999999;
    width: 280px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-sticky-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.video-sticky-widget.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.video-sticky-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1000000000;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.video-sticky-close:hover {
    background: rgba(184, 134, 11, 0.9);
    border-color: #DAA520;
    transform: rotate(90deg);
}

.video-sticky-close svg {
    width: 14px;
    height: 14px;
}

.video-sticky-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}

.video-sticky-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-sticky-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-sticky-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-sticky-btn {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-family: 'Futura', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.video-sticky-btn-primary {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #fff;
}

.video-sticky-btn-primary:hover {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.video-sticky-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-sticky-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-sticky-widget {
        width: 240px;
        bottom: 15px;
        left: 15px;
    }

    .video-sticky-btn {
        padding: 10px 12px;
        font-size: 11px;
    }
}

/* Hide on very small screens to avoid overlap */
@media (max-width: 480px) {
    .video-sticky-widget {
        width: 200px;
        bottom: 10px;
        left: 10px;
    }

    .video-sticky-container {
        padding: 8px;
        gap: 8px;
    }

    .video-sticky-btn {
        padding: 8px 10px;
        font-size: 10px;
    }
}

