* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.map-container {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
}

/* SVG France */
.map-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Régions - couleur claire */
.map-container svg path {
    fill: #e8f4fc;
    stroke: #3498db;
    stroke-width: 1;
    transition: fill 0.3s;
}

.map-container svg path:hover {
    fill: #b8ddf5;
}

/* Cacher les cercles de légende */
.map-container svg circle {
    display: none;
}

/* Marqueurs */
.marker {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -100%);
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 10;
}

.marker:hover {
    transform: translate(-50%, -100%) scale(1.2);
}

.marker.live::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}