#ea-video-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
#ea-video-popup-overlay.active { display: flex; }

#ea-video-popup-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}
#ea-video-popup-container iframe {
    width: 100%; height: 100%; border: none;
}
#ea-video-popup-close {
    position: absolute;
    top: -40px; right: 0;
    color: white; font-size: 32px;
    cursor: pointer; background: none; border: none;
}

.ea-video-thumb-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}
.ea-video-thumb-wrapper img {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
}
.ea-video-thumb-wrapper:hover img { transform: scale(1.05); }

.ea-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.ea-video-thumb-wrapper:hover .ea-play-btn {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}
.ea-play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent #333;
    margin-left: 5px;
}