.pub-popup-overlay-c57c3ed3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pub-popup-overlay-c57c3ed3.active {
    display: flex;
    opacity: 1;
}

.pub-popup-container-c57c3ed3 {
    position: relative;
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: pubPopupSlideIn_c57c3ed3 0.3s ease;
}

@keyframes pubPopupSlideIn_c57c3ed3 {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.pub-popup-close-c57c3ed3 {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease;
}

.pub-popup-close-c57c3ed3:hover {
    background: #e63946;
}

.pub-popup-iframe-c57c3ed3 {
    width: 100%;
    height: 100%;
    border: none;
}

body.pub-popup-open-c57c3ed3 {
    overflow: hidden;
}

@media (max-width: 768px) {
    .pub-popup-container-c57c3ed3 {
        width: 98vw;
        height: 95vh;
        border-radius: 8px;
    }
}
