        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0a0e27;
            color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        h1 {
            text-align: center;
            color: #00d4ff;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        h2 {
            color: #00d4ff;
            margin: 3rem 0 1.5rem 0;
            font-size: 1.8rem;
            border-bottom: 2px solid #00d4ff;
            padding-bottom: 0.5rem;
        }

        /* ===== CARTE ACCUEIL - "Réseau Voyage" (concept créatif) ===== */
        .ummisco-map-home {
            margin-bottom: 3rem;
            --map-home-radius: 12px;
            --map-home-accent: #00d4ff;
        }

        .ummisco-map-voyage {
            --voyage-height: 520px;
        }

        /* Variante courte "mini" - ajout sans supprimer l'existant */
        .ummisco-map-voyage--mini .map-voyage-hero {
            height: 460px;
            min-height: 360px;
        }

        .ummisco-map-voyage--mini .map-focus-card {
            width: 280px;
            bottom: 88px;
        }

        .ummisco-map-voyage--mini .map-discovery-strip {
            padding: 0.7rem 1rem 1rem;
        }

        .ummisco-map-voyage--mini .discovery-pill {
            padding: 0.5rem 0.8rem;
            font-size: 0.84rem;
        }

        .map-voyage-hero {
            position: relative;
            width: 100%;
            height: 520px;
            min-height: 420px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            background: #0f1419;
        }

        .map-voyage-canvas,
        #map-home {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            width: 100% !important;
            height: 100% !important;
            min-height: 400px !important;
            z-index: 0;
        }

        /* Leaflet ajoute .leaflet-container sur #map-home */
        #map-home.leaflet-container {
            height: 100% !important;
            min-height: 400px !important;
            background: #0f1419 !important;
        }

        .map-voyage-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, 
                rgba(10, 14, 39, 0.4) 0%, 
                transparent 35%, 
                transparent 65%, 
                rgba(10, 14, 39, 0.85) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .map-voyage-title {
            position: absolute;
            top: 2rem;
            left: 2rem;
            z-index: 2;
            pointer-events: none;
        }

        .map-voyage-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(0, 212, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        .map-voyage-headline {
            font-size: 1.75rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            max-width: 480px;
            line-height: 1.3;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        /* Marqueurs voyage */
        .voyage-marker {
            transition: transform 0.2s ease, filter 0.2s ease;
        }

        .voyage-marker:hover {
            filter: drop-shadow(0 0 8px currentColor);
        }

        .voyage-tooltip-wrap {
            background: rgba(15, 20, 40, 0.92) !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            border-radius: 6px !important;
            padding: 6px 10px !important;
            font-size: 0.85rem !important;
        }

        .voyage-tooltip {
            color: #fff;
            font-weight: 600;
        }

        /* Focus card - carte flottante glassmorphism */
        .map-focus-card {
            position: absolute;
            bottom: 100px;
            left: 2rem;
            z-index: 10;
            width: 320px;
            max-width: calc(100% - 4rem);
            background: rgba(15, 25, 50, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .map-focus-card.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .map-focus-close {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.2rem;
            line-height: 1;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .map-focus-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .map-focus-content {
            position: relative;
            padding-right: 2rem;
        }

        .map-focus-accent {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            border-radius: 2px;
        }

        .map-focus-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 0.25rem 0.75rem;
        }

        .map-focus-meta {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            margin: 0 0 0.5rem 0.75rem;
        }

        .map-focus-desc {
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 0 0 0.75rem;
        }

        /* Strip découverte - pills horizontales flottantes */
        .map-discovery-strip {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 5;
            padding: 1rem 1.5rem 1.5rem;
            background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.7) 70%, transparent);
        }

        .map-discovery-rail {
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0.5rem 0;
            display: flex;
            gap: 0.5rem;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }

        .map-discovery-rail::-webkit-scrollbar {
            height: 6px;
        }

        .map-discovery-rail::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
        }

        .map-discovery-rail::-webkit-scrollbar-thumb {
            background: rgba(0, 212, 255, 0.3);
            border-radius: 3px;
        }

        .home-discovery-pills {
            display: flex;
            gap: 0.5rem;
            padding: 0 0.5rem;
            min-width: min-content;
        }

        .discovery-pill {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            color: #fff;
            font-family: inherit;
            font-size: 0.9rem;
            cursor: pointer;
            flex-shrink: 0;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .discovery-pill:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.18);
            transform: translateY(-2px);
        }

        .discovery-pill.active {
            background: rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.5);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
        }

        .discovery-pill-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .discovery-pill.active .discovery-pill-dot {
            box-shadow: 0 0 10px currentColor;
        }

        .discovery-pill-label {
            font-weight: 600;
        }

        .discovery-pill-country {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
        }

        @media (max-width: 768px) {
            .ummisco-map-voyage {
                --voyage-height: 420px;
            }

            .map-voyage-hero {
                min-height: 380px;
            }

            .map-voyage-title {
                top: 1.5rem;
                left: 1.5rem;
            }

            .map-voyage-headline {
                font-size: 1.35rem;
            }

            .map-focus-card {
                width: calc(100% - 2rem);
                left: 1rem;
                bottom: 90px;
                padding: 1rem 1.25rem;
            }

            .map-discovery-strip {
                padding: 0.75rem 1rem 1rem;
            }
        }

        /* Effet de scan radar */
        .radar-scan {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 999;
            overflow: hidden;
        }

        .radar-line {
            position: absolute;
            width: 2px;
            height: 200%;
            background: linear-gradient(to bottom, transparent, #00d4ff, transparent);
            box-shadow: 0 0 20px #00d4ff;
            transform-origin: center;
            animation: radarSweep 4s linear infinite;
            opacity: 0.6;
        }

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

        /* Halo autour des marqueurs */
        .marker-halo {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid rgba(0, 212, 255, 0.3);
            animation: haloPulse 2s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes haloPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.2;
            }
        }

        /* Animation de connexion réseau */
        .network-pulse {
            stroke-dasharray: 5, 5;
            animation: networkPulse 2s linear infinite;
        }

        @keyframes networkPulse {
            0% {
                stroke-dashoffset: 0;
            }
            100% {
                stroke-dashoffset: 10;
            }
        }

        /* Compteur de centres */
        .centers-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            border: 2px solid #00d4ff;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            z-index: 1001;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
        }

        .centers-counter h3 {
            color: #00d4ff;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .centers-counter .count {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        /* Carte Centres */
        #map-centers {
            height: 80vh;
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
            overflow: hidden;
            position: relative;
        }

        /* Filtres flottants */
        .filters-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1000;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            pointer-events: none;
        }

        .filter-btn {
            background: rgba(0, 212, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid #00d4ff;
            color: #00d4ff;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
            pointer-events: auto;
            user-select: none;
        }

        .filter-btn:hover {
            background: rgba(0, 212, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
        }

        .filter-btn.active {
            background: #00d4ff;
            color: #0a0e27;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
        }

        /* Bouton de réinitialisation */
        .reset-btn {
            background: rgba(255, 107, 107, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid #ff6b6b;
            color: #ff6b6b;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
            pointer-events: auto;
            user-select: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .reset-btn:hover {
            background: rgba(255, 107, 107, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .reset-btn:active {
            transform: translateY(0);
        }

        .reset-btn span {
            display: inline-block;
            transition: transform 0.3s ease;
            font-size: 1.1rem;
            line-height: 1;
        }

        .reset-btn:hover span {
            transform: rotate(180deg);
        }

        /* Styles pour les clusters */
        .marker-cluster-custom {
            background: transparent !important;
        }

        .cluster-icon {
            animation: clusterPulse 2s infinite;
            cursor: pointer;
        }

        .cluster-icon:hover {
            transform: scale(1.1);
            z-index: 1000;
        }

        @keyframes clusterPulse {
            0%, 100% {
                box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.4);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.2), 0 6px 20px rgba(0, 0, 0, 0.5);
            }
        }

        /* Styles pour les marqueurs personnalisés */
        .custom-marker {
            background: transparent !important;
            border: none !important;
        }

        .custom-tooltip {
            background: rgba(10, 14, 39, 0.95) !important;
            backdrop-filter: blur(10px) !important;
            border: 1px solid rgba(0, 212, 255, 0.5) !important;
            border-radius: 8px !important;
            padding: 8px 12px !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        }

        /* Side Panel (Drawer) */
        .side-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
            z-index: 2000;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 2rem;
            overflow-y: auto;
        }

        .side-panel.open {
            transform: translateX(-400px);
        }

        .side-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #00d4ff;
        }

        .side-panel-title {
            font-size: 1.5rem;
            color: #00d4ff;
            font-weight: 700;
        }

        .close-btn {
            background: transparent;
            border: 2px solid #00d4ff;
            color: #00d4ff;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #00d4ff;
            color: #0a0e27;
            transform: rotate(90deg);
        }

        .side-panel-content {
            color: #e0e0e0;
        }

        .info-item {
            margin-bottom: 1.5rem;
        }

        .info-label {
            color: #00d4ff;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .info-value {
            font-size: 1.1rem;
            color: #ffffff;
        }

        /* Marqueurs Pulse */
        .pulse-marker {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #00d4ff;
            border: 3px solid #ffffff;
            box-shadow: 0 0 0 0 rgba(0, 212, 255, 1);
            animation: pulse 2s infinite;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pulse-marker:hover {
            transform: scale(1.5);
            box-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 60px rgba(0, 212, 255, 0.6);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(0, 212, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
            }
        }

        @keyframes sparklePulse {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1.2);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Tooltip carte accueil - version épurée */
        .home-tooltip-minimal {
            background: rgba(15, 20, 40, 0.95) !important;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            border-radius: 6px !important;
            padding: 8px 12px !important;
            font-size: 0.85rem !important;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
        }

        .home-tooltip-simple {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .home-tooltip-simple strong {
            color: #fff;
            font-size: 0.95rem;
        }

        .home-tooltip-simple span {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.8rem;
        }

        .home-center-popup-wrap .leaflet-popup-content-wrapper {
            border: 1px solid rgba(0, 212, 255, 0.35);
            border-radius: 10px;
            background: rgba(10, 14, 39, 0.96);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
        }

        .home-center-popup {
            min-width: 220px;
        }

        .home-center-popup h4 {
            margin: 0 0 0.2rem;
            font-size: 1.02rem;
            font-weight: 700;
        }

        .home-center-popup-meta {
            margin: 0 0 0.45rem;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.82rem;
        }

        .home-center-popup-desc {
            margin: 0 0 0.7rem;
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.86rem;
            line-height: 1.4;
        }

        .home-center-popup-members {
            margin: 0 0 0.55rem;
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.82rem;
        }

        .home-center-popup-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.45rem 0.75rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 212, 255, 0.45);
            color: #9fefff;
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 600;
            background: rgba(0, 212, 255, 0.12);
            transition: all 0.2s ease;
        }

        .home-center-popup-btn:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.7);
            color: #c9f7ff;
        }

        .home-center-popup-btn.is-disabled {
            opacity: 0.55;
            cursor: default;
            pointer-events: none;
        }

        /* Points style cluster + nombre membres */
        .home-member-cluster-wrap {
            background: transparent !important;
            border: none !important;
        }

        .home-member-cluster {
            position: relative;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.35), var(--cluster-color));
            border: 2px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.25);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .home-member-cluster::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 999px;
            border: 1px solid color-mix(in srgb, var(--cluster-color) 65%, transparent);
            opacity: 0.45;
        }

        .home-member-count {
            font-size: 0.8rem;
            line-height: 1;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
        }

        .home-member-cluster-wrap.is-hover .home-member-cluster,
        .home-member-cluster-wrap.is-active .home-member-cluster {
            transform: translateY(-2px) scale(1.07);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.42), 0 0 0 6px rgba(255, 255, 255, 0.13);
        }

        .home-tooltip {
            background: rgba(10, 14, 39, 0.95) !important;
            backdrop-filter: blur(10px);
            border: 2px solid #00d4ff !important;
            border-radius: 8px !important;
            padding: 12px 16px !important;
            color: #ffffff !important;
            font-size: 0.95rem !important;
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4) !important;
            max-width: 350px !important;
            min-width: 200px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            overflow: hidden !important;
            white-space: normal !important;
        }

        .home-tooltip-title {
            color: #00d4ff;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 6px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .home-tooltip-theme {
            color: #ffffff;
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 4px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .home-tooltip-desc {
            color: #e0e0e0;
            font-size: 0.85rem;
            margin-top: 8px;
            line-height: 1.4;
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-height: 100px;
            overflow-y: auto;
        }

        /* Animation de flux sur les lignes */
        .animated-line {
            stroke-dasharray: 10, 5;
            animation: lineFlow 3s linear infinite;
        }

        @keyframes lineFlow {
            0% {
                stroke-dashoffset: 0;
            }
            100% {
                stroke-dashoffset: 15;
            }
        }

        /* Cartes centres - design épuré, en grille sous la carte */
        .map-home-cards .home-card-item {
            background: rgba(20, 26, 55, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 1rem 1.2rem;
            cursor: pointer;
            transition: all 0.2s ease;
            flex: 1 1 200px;
            min-width: 180px;
        }

        .map-home-cards .home-card-item:hover {
            background: rgba(30, 38, 70, 0.85);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .map-home-cards .home-card-item.active {
            border-color: var(--map-home-accent, #00d4ff);
            box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.25);
        }

        .map-home-cards .home-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .map-home-cards .home-card-title {
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.3;
        }

        .map-home-cards .home-card-badge {
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .map-home-cards .home-card-body {
            font-size: 0.85rem;
        }

        .map-home-cards .home-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
            margin-bottom: 0.4rem;
        }

        .map-home-cards .home-card-meta span + span::before {
            content: ' · ';
            opacity: 0.7;
        }

        .map-home-cards .home-card-desc {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.45;
            margin: 0;
            font-size: 0.8rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .home-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .home-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0;
        }

        .home-card-badge {
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .home-card-body {
            color: #e0e0e0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .home-card-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
        }

        .home-card-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        /* Custom Leaflet Popup */
        .leaflet-popup-content-wrapper {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            color: #ffffff;
            border: 1px solid #00d4ff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
        }

        .leaflet-popup-tip {
            background: rgba(10, 14, 39, 0.95);
            border: 1px solid #00d4ff;
        }

        /* Vue Réseau Alternative - Style Blog */
        .network-view {
            margin: 4rem 0;
            padding: 0;
            background: transparent;
        }

        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .network-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1200px) {
            .network-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .network-card {
            background: rgba(10, 14, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .network-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .network-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .network-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .network-card:hover .network-card-image img {
            transform: scale(1.05);
        }

        .network-card-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            opacity: 0.3;
            background: linear-gradient(135deg, currentColor 0%, transparent 100%);
        }

        .network-card-header {
            padding: 1.5rem 1.5rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .network-card-badge {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
        }

        .network-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            line-height: 1.3;
        }

        .network-card-subtitle {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
            margin: 0;
        }

        .network-card-body {
            padding: 1.5rem;
            flex: 1;
        }

        .network-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .network-card-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .network-card-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .network-card-footer {
            padding: 1rem 1.5rem 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .network-card-link {
            color: inherit;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .network-card:hover .network-card-link {
            gap: 0.75rem;
        }

        .network-card-stats {
            display: flex;
            gap: 1.25rem;
            font-size: 0.85rem;
        }

        .network-stat {
            text-align: right;
        }

        .network-stat-value {
            font-size: 1.1rem;
            font-weight: 700;
            display: block;
            line-height: 1.2;
        }

        .network-stat-label {
            font-size: 0.7rem;
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.2rem;
        }

        /* Animation d'apparition */
        .network-card {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            animation: cardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .network-card:nth-child(1) { animation-delay: 0.05s; }
        .network-card:nth-child(2) { animation-delay: 0.1s; }
        .network-card:nth-child(3) { animation-delay: 0.15s; }
        .network-card:nth-child(4) { animation-delay: 0.2s; }
        .network-card:nth-child(5) { animation-delay: 0.25s; }
        .network-card:nth-child(6) { animation-delay: 0.3s; }
        .network-card:nth-child(7) { animation-delay: 0.35s; }

        @keyframes cardFadeIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Globe Interactif 3D */
        .globe-container {
            position: relative;
            width: 100%;
            height: 600px;
            margin: 3rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, #0a0e27 100%);
            border: 2px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
        }

        #globeViz {
            width: 100%;
            height: 100%;
            position: relative;
            transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #globeViz.hidden {
            opacity: 0;
            transform: scale(3);
            pointer-events: none;
        }

        #globeViz.zooming {
            transform: scale(1.5);
        }

        #globeMap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.3);
            transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 10;
        }

        #globeMap.visible {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
        }

        #globeMap.zooming-out {
            transform: scale(3);
            opacity: 0;
        }

        .globe-controls {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1000;
            pointer-events: none;
        }

        .globe-info-panel {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(15px);
            border: 2px solid #00d4ff;
            border-radius: 12px;
            padding: 1.5rem;
            min-width: 300px;
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: all;
        }

        .globe-info-panel.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Amélioration de la visibilité des labels sur le globe */
        #globeViz canvas {
            cursor: grab;
        }

        #globeViz canvas:active {
            cursor: grabbing;
        }

        .globe-info-panel h3 {
            color: #00d4ff;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .globe-info-panel p {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .globe-info-detail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.8rem;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .globe-info-badge {
            display: inline-block;
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }

        .globe-progress {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            background: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            border-radius: 25px;
            border: 2px solid rgba(0, 212, 255, 0.3);
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
        }

        .globe-progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 212, 255, 0.3);
            border: 2px solid rgba(0, 212, 255, 0.5);
            transition: all 0.3s ease;
        }

        .globe-progress-dot.active {
            background: #00d4ff;
            border-color: #00d4ff;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
            transform: scale(1.3);
        }

        .globe-progress-dot.visited {
            background: rgba(0, 212, 255, 0.6);
        }
