#numma-geo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 0;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

#numma-geo-popup-overlay.numma-active {
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#numma-geo-popup {
    background: var(--numma-geo-bg, #ffffff);
    padding: 35px 30px;
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-align: center;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    
    /* Strong CSS Reset for inside the popup */
    font-family: var(--numma-geo-font, 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
    font-size: 16px;
    line-height: 1.6;
    color: var(--numma-geo-text, #1e293b);
    box-sizing: border-box;
}

#numma-geo-popup.numma-active {
    transform: scale(1);
    opacity: 1;
}

#numma-geo-popup * {
    box-sizing: border-box;
}

/* Premium Icon Container */
.numma-geo-content::before {
    content: "🌍";
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
}

.numma-geo-content h3 {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    color: var(--numma-geo-text, #1e293b) !important;
    line-height: 1.5 !important;
    border: none !important;
    background: none !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.numma-geo-buttons {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.numma-btn {
    padding: 0 24px !important;
    height: 46px !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    flex: 1 !important;
    min-width: 140px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.numma-btn-primary {
    background-color: var(--numma-geo-btn-primary-bg, #0f172a) !important;
    color: var(--numma-geo-btn-primary-text, #ffffff) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
}

.numma-btn-primary:hover {
    background-color: var(--numma-geo-btn-primary-bg, #0f172a) !important;
    opacity: 0.9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25) !important;
}

.numma-btn-primary:active {
    transform: translateY(1px) !important;
}

.numma-btn-secondary {
    background-color: transparent !important;
    background-image: none !important;
    color: var(--numma-geo-text, #1e293b) !important;
    border: 1.5px solid rgba(30, 41, 59, 0.15) !important;
}

.numma-btn-secondary:hover {
    background-color: rgba(30, 41, 59, 0.04) !important;
    border-color: rgba(30, 41, 59, 0.3) !important;
    transform: translateY(-1px) !important;
}

.numma-btn-secondary:active {
    transform: translateY(1px) !important;
}

@media (max-width: 480px) {
    .numma-geo-buttons {
        flex-direction: column-reverse !important;
    }
    
    .numma-btn {
        width: 100% !important;
        flex: none !important;
    }
}
