/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Messina Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Map container */
.map-container {
    width: 100%;
    height: 100vh;
    background: white;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: white;
}

#worldMap {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease-out;
    transform: scale(1);
    transform-origin: var(--mouse-x, 50%) var(--mouse-y, 50%);
}

#worldMap:hover {
    transform: scale(1.5);
}

/* Country styling */
.country {
    fill: #F1EEE8;
    stroke: #BBAE8F;
    stroke-width: 1.04315;
    cursor: default;
    transition: all 0.3s ease;
}

.country:hover {
    fill: #D4C4A8;
    stroke: #9A8B6F;
    stroke-width: 1.04315;
}

.country.interactive {
    fill: #F1EEE8;
    stroke: #BBAE8F;
    stroke-width: 1.04315;
}

.country.interactive:hover {
    fill: #C4B59A;
    stroke: #8A7B5F;
    stroke-width: 1.04315;
}

/* Country markers */
.country-marker {
    fill: #0279c1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker-group:hover .country-marker {
    fill: #015a9a;
}

/* Marker text */
.marker-text {
    opacity: 0;
    transition: opacity 0.2s ease, filter 0.2s ease;
    pointer-events: none;
    user-select: none;
}

.marker-group:hover .marker-text {
    opacity: 1;
    filter: blur(0px);
}



