#maat-map-wrapper {
    position: relative;
    width: 100%;
    background: 
        radial-gradient(circle at 50% 50%, #ffffff 0%, transparent 70%),
        linear-gradient(180deg, #bbd6e8 0%, #dceefb 25%, #f7fafd 50%, #ffffff 100%);
    background-blend-mode: soft-light;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.maat-svg-container svg {
    width: 100%;
    height: auto;
    background: transparent !important;

    filter: drop-shadow(0px 20px 30px rgba(100, 130, 160, 0.3));
}

path {
    fill: #ffffff; 
    transition: fill 1s ease-in-out, filter 0.5s ease, stroke 0.5s ease;
}

.active-hex {
    cursor: pointer;
}


/* Popup Card Style */
.maat-popup-card {
    position: absolute;
    width: 260px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.5);
    pointer-events: auto !important;
}

.popup-inner img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.popup-text {
    padding: 15px;
}

.popup-text h3 { margin: 0 0 5px 0; font-size: 18px; color: #333; }
.popup-text p { margin: 0; font-size: 14px; color: #666; }

.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    background: rgba(0,0,0,0.2);
    width: 25px; height: 25px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.popup-text .learn-more {
    display: block;
    margin-top: 10px;
}


/*path:not(.active-hex) {
    pointer-events: none;
}*/