/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

/* Modal */
.popup-modal {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
}

#popup-body a {
    word-break: break-all;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .popup-modal {
        padding: 1.5rem;
    }
}

.popup-content h2 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    color: #333;
}

.popup-content .lead {
    font-weight: 500;
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.popup-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin: 0.5rem 0;
}
