.sea-world-map-wrapper {
    position: relative;
    width: 100%;
    margin: 40px 0;
    font-family: Inter, sans-serif;
}

#sea-visitor-map {
    width: 100%;
    height: 500px;
    background: #fff; /* Plain white background for editorial look */
    border: 1px solid #efefef;
}

/* GeoJSON Country Defaults */
.sea-country-layer {
    transition: fill 0.6s ease, fill-opacity 0.6s ease;
    cursor: pointer;
    outline: none;
}

.sea-country-layer:hover {
    fill-opacity: 0.8 !important;
}

/* Ripple Animation */
@keyframes map-ripple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(8);
        opacity: 0;
    }
}

.map-ripple {
    position: absolute;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: rgba(201, 48, 44, 0.5); /* Crimson Red Match */
    animation: map-ripple 0.8s ease-out forwards;
    pointer-events: none;
    z-index: 1000;
}

/* Loading Overlay */
.sea-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: opacity 0.4s ease;
}

.sea-map-loading-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
}

.sea-map-loader {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #c9302c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hard-nuke Leaflet visuals */
.leaflet-container {
    background: transparent !important;
    outline: 0;
}
.leaflet-control-attribution,
.leaflet-control-zoom,
.leaflet-top.leaflet-left,
.leaflet-bottom.leaflet-right {
    display: none !important;
}
.sea-country-layer {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    outline: none !important;
    stroke-linejoin: round;
}

.sea-country-layer:hover {
    filter: brightness(1.15);
    stroke-width: 1.3px !important;
    stroke-opacity: 0.9 !important;
    stroke: #475569 !important;
    z-index: 999;
}
