/* ARTUZ Petition Engine Styles */
#artuz-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 31, 59, 0.85);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.artuz-popup-content {
    background: #F5F5F5;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.artuz-popup-content h2 {
    color: #D62828;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.2;
}

.artuz-popup-content p {
    color: #0B1F3B;
    margin-bottom: 25px;
    font-size: 16px;
}

.artuz-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.artuz-btn {
    background: #D62828;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s, background 0.2s;
    text-transform: uppercase;
}

.artuz-btn:hover {
    background: #b32121;
    transform: translateY(-2px);
}

.artuz-close {
    position: absolute;
    top: 15px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #0B1F3B;
    opacity: 0.5;
}

.artuz-share-box {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px dashed #D62828;
}

.artuz-share-btn.whatsapp {
    background: #25D366;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .artuz-popup-content { padding: 25px; }
    .artuz-btn { font-size: 16px; }
}