/* Custom Popup Styles */
#custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

#custom-popup-box {
    background: #3b76ba;
    width: 95%;
    max-width: 550px;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    color: white;
    font-family: "Exo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    position: relative;
}

#custom-popup-box h2 {
    font-weight: 800;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

#custom-popup-box p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: white;
    text-align: left;
}

#custom-popup-box img {
    max-width: 280px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    background: white;
    padding: 10px;
    border-radius: 4px;
}

#custom-popup-close-btn {
    background: #ff9900;
    color: white;
    border: none;
    padding: 18px 20px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: none;
}

#custom-popup-close-btn:hover {
    background: #e68a00;
}
