.adv-video-container-0eb04140 {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-video-placeholder-0eb04140 {
    padding: 30px;
    background-color: #f5f5f5;
    text-align: center;
    border: 1px dashed #ccc;
    color: #666;
    font-family: sans-serif;
}

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

.adv-video-embed-0eb04140 iframe,
.adv-video-embed-0eb04140 video {
    width: 100%;
    height: 100%;
    border: none;
}

.adv-video-overlay-0eb04140 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.adv-video-overlay-0eb04140::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
    transition: background-color 0.3s ease;
}

.adv-video-play-0eb04140 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 50%;
}

.adv-video-play-0eb04140 i {
    font-size: 60px;
    color: #fff;
    transition: color 0.3s ease;
}

.adv-video-play-0eb04140 svg {
    width: 60px;
    height: 60px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.adv-video-editor-placeholder-0eb04140 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e5e5e5;
    color: #555;
    font-size: 14px;
    padding: 20px;
    text-align: center;
    word-break: break-all;
}

.adv-video-editor-placeholder-0eb04140 i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #777;
}

/* Animations */
.adv-video-anim-pulse .adv-video-overlay-0eb04140:hover .adv-video-play-0eb04140 {
    animation: advVideoPulse 1s infinite;
}
@keyframes advVideoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.adv-video-anim-grow .adv-video-overlay-0eb04140:hover .adv-video-play-0eb04140 {
    transform: scale(1.15);
}

.adv-video-anim-shrink .adv-video-overlay-0eb04140:hover .adv-video-play-0eb04140 {
    transform: scale(0.9);
}

.adv-video-anim-wobble .adv-video-overlay-0eb04140:hover .adv-video-play-0eb04140 {
    animation: advVideoWobble 1s ease-in-out infinite;
}
@keyframes advVideoWobble {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* Lightbox */
.adv-video-lightbox-overlay-0eb04140 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.adv-video-lightbox-overlay-0eb04140.visible {
    opacity: 1;
}

.adv-video-lightbox-close-0eb04140 {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
}

.adv-video-lightbox-content-0eb04140 {
    width: 80%;
    max-width: 1200px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.adv-video-lightbox-overlay-0eb04140.visible .adv-video-lightbox-content-0eb04140 {
    transform: translateY(0);
}

.adv-video-lightbox-responsive-0eb04140 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.adv-video-lightbox-responsive-0eb04140 iframe,
.adv-video-lightbox-responsive-0eb04140 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}