#jcgp-global-popup {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#jcgp-global-popup-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    font-family: 'Arial', sans-serif;
    animation: fadeInScale 0.4s ease;
}

@keyframes fadeInScale {
    from {opacity:0; transform: scale(0.85);}
    to {opacity:1; transform: scale(1);}
}

#jcgp-global-popup h2 {
    margin-top:0;
    color:#06311a;
    font-size:24px;
}

#jcgp-global-popup p {
    font-size:16px;
    color:#333;
    line-height:1.5;
}

#jcgp-global-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size:24px;
    cursor:pointer;
    color:#e41d31;
}

#jcgp-global-popup-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap:10px;
}

#jcgp-global-popup-buttons button {
    padding: 12px 20px;
    border-radius: 8px;
    border:none;
    cursor:pointer;
    flex:1;
    font-weight:bold;
    font-size:15px;
    transition:0.2s ease;
}

#jcgp-go-main-site {
    background:#06311a;
    color:#fff;
}
#jcgp-go-main-site:hover {
    background:#06311a;
}

#jcgp-stay-here {
    background:#dc3545;
    color:#fff;
}
#jcgp-stay-here:hover {
    background:#c82333;
}
