/* Info Popup Overlay */
.se-info-popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.se-info-popup-overlay.se-popup-visible {
    opacity: 1;
}


/* Popup Modal */
.se-info-popup-modal {
    position: relative;
    background: black;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    animation: popupSlideIn 0.3s ease-out;
    padding: 1rem;
}

.se-info-popup-overlay.se-popup-visible .se-info-popup-modal {
    transform: scale(1);
}

.se-info-popup-content {
    font-size: 1.25rem;
    line-height: 1.1;
    text-align: center;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.se-info-popup-actions {
    text-align: center;
    margin-top: 1.5rem;
}

/* Close Button */
.se-info-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10;
}

.se-info-popup-close:hover {
    color: #ffffff;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .se-info-popup-overlay {
        padding: 10px;
    }
    
    .se-info-popup-modal {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .se-info-popup-content {
        padding: 35px 20px 15px;
    }
    
    .se-info-popup-actions {
        padding: 15px 20px 25px;
    }
    
    .se-info-popup-close {
        top: 10px;
        right: 10px;
    }
}

/* Prevent body scroll when popup is open */
body.se-popup-open {
    overflow: hidden;
}
