.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

h1, h2 {
    text-transform: uppercase;
}

body {
    background-color: #ffffff;
    color: #0b0d10;
}

.glass-panel {
    background: rgba(28, 32, 36, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(144, 144, 149, 0.2);
}

.glow-text {
    text-shadow: 0 0 20px rgba(60, 215, 255, 0.4);
}

.glow-border:hover {
    box-shadow: 0 0 30px rgba(60, 215, 255, 0.15);
    border-color: rgba(60, 215, 255, 0.4);
}

/* Leaflet Dark Theme Overrides (from infrastructure) */
.leaflet-container {
    background: #101417 !important;
}
.leaflet-control-zoom {
    border: none !important;
}
.leaflet-control-zoom-in, .leaflet-control-zoom-out {
    background: #1c2024 !important;
    color: #e0e2e8 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
.leaflet-popup-content-wrapper {
    background: #1c2024 !important;
    color: #e0e2e8 !important;
    border: 1px solid rgba(60,215,255,0.3);
    border-radius: 0px !important;
}
.leaflet-popup-tip {
    background: #1c2024 !important;
}

.leaflet-tooltip {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #c6c6cb !important;
    font-size: 8px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    text-shadow: 0 0 2px black, 0 0 5px black;
    font-family: 'Inter', sans-serif;
    pointer-events: none !important;
}

.luminous-marker {
    background: #3cd7ff;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px #3cd7ff, 0 0 20px #3cd7ff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.luminous-marker:hover, .luminous-marker.active {
    transform: scale(1.6);
    background: #fff;
    box-shadow: 0 0 20px #fff, 0 0 40px #3cd7ff;
    border-color: #3cd7ff;
}

#map {
    height: 85vh;
    width: 100%;
    background: #101417;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mega Menu Styles */
.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.group:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Pseudo-bridge to keep hover active */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.mega-menu-link {
    position: relative;
    padding-bottom: 2px;
}

.mega-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #3cd7ff;
    transition: width 0.3s ease;
}

.mega-menu-link:hover::after {
    width: 100%;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

