/* Video Gallery CC64D748 */
.vg-wrapper-cc64d748 {
    width: 100%;
}
.vg-grid-cc64d748 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.vg-item-cc64d748 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    position: relative;
}
.vg-thumb-cc64d748 {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
    background-color: #000;
}
.vg-thumb-img-cc64d748 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vg-thumb-cc64d748::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
}
.vg-thumb-cc64d748:hover::after {
    background: rgba(0,0,0,0.5);
}
.vg-thumb-cc64d748.is-playing::after {
    display: none;
}
.vg-play-btn-cc64d748 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 48px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vg-thumb-cc64d748:hover .vg-play-btn-cc64d748 {
    transform: translate(-50%, -50%) scale(1.1);
}
.vg-thumb-cc64d748.is-playing .vg-play-btn-cc64d748 {
    display: none;
}

/* No Thumbnail styles */
.vg-text-only-trigger-cc64d748 {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vg-play-btn-inline-cc64d748 {
    color: #333;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    transition: all 0.3s;
}
.vg-text-only-trigger-cc64d748:hover .vg-play-btn-inline-cc64d748,
.vg-title-clickable-cc64d748:hover + .vg-text-only-trigger-cc64d748 .vg-play-btn-inline-cc64d748 {
    background: #333;
    color: #fff;
}
.vg-item-cc64d748.is-playing .vg-play-btn-inline-cc64d748,
.vg-item-cc64d748.is-playing .vg-title-clickable-cc64d748 {
    display: none;
}

/* Video Containers */
.vg-video-container-cc64d748 {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: none;
}
.vg-inline-container-cc64d748 {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}
.vg-thumb-cc64d748.is-playing .vg-video-container-cc64d748,
.vg-item-cc64d748.is-playing .vg-inline-container-cc64d748 {
    display: block;
}
.vg-video-container-cc64d748 iframe,
.vg-video-container-cc64d748 video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.vg-title-cc64d748 {
    margin: 15px 0 0;
    font-size: 18px;
    font-weight: 600;
}
.vg-title-clickable-cc64d748 {
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 15px;
    order: -1;
}

/* Pagination */
.vg-pagination-cc64d748 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.vg-pagination-btn-cc64d748 {
    padding: 8px 16px;
    background: #eee;
    color: #333;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
}
.vg-pagination-btn-cc64d748:hover,
.vg-pagination-btn-cc64d748.active {
    background: #333;
    color: #fff;
}

/* Scroll Loader */
.vg-scroll-loader-cc64d748 {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
}
.vg-scroll-loader-cc64d748.hidden {
    display: none;
}
.vg-spinner-cc64d748 {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #333;
    animation: spin-cc64d748 1s ease-in-out infinite;
}
@keyframes spin-cc64d748 {
    to { transform: rotate(360deg); }
}

/* Lightbox */
.vg-lightbox-cc64d748 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.vg-lightbox-cc64d748.is-open {
    opacity: 1;
    visibility: visible;
}
.vg-lightbox-content-cc64d748 {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.vg-lightbox-cc64d748.is-open .vg-lightbox-content-cc64d748 {
    transform: scale(1);
}
.vg-lightbox-video-wrapper-cc64d748 {
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.vg-lightbox-video-wrapper-cc64d748 iframe,
.vg-lightbox-video-wrapper-cc64d748 video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: contain;
}
.vg-lightbox-close-cc64d748 {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .vg-lightbox-close-cc64d748 {
        top: -40px;
        right: 0;
    }
}