/* Video Lightbox Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.video-modal.active {
    display: flex;
}
.video-modal-content {
    width: 80%;
    max-width: 1400px;
    position: relative;
}
.video-modal-content .video-container {
    padding: 56.25% 0 0 0;
    position: relative;
}
.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px 10px;
}
.video-modal-close:hover {
    color: var(--accent-primary, #e2b04a);
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    cursor: pointer;
}
.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}
.video-thumbnail:hover::after {
    background-color: rgba(226, 176, 74, 0.9);
}

/* Inline Video Player (Mobil) */
.video-thumbnail.playing {
    cursor: default;
}
.video-thumbnail.playing::after {
    display: none;
}
.video-thumbnail .inline-video-container {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
}
.video-thumbnail .inline-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
