body, html { 
    margin: 0; padding: 0; height: 100%; 
    background: #000; font-family: 'Special Elite', serif; 
}

#map { height: 100vh; width: 100vw; background: #0a0a0a; }

/* Overlay */
#disclaimer-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}

#warning-box {
    max-width: 400px; padding: 30px; border: 2px solid #880808;
    background: #050505; color: #33ff33; text-align: center;
}

#proceed-btn {
    background: transparent; border: 1px solid #33ff33;
    color: #33ff33; padding: 10px 20px; cursor: pointer;
    font-family: 'Special Elite'; margin-top: 20px;
}

#proceed-btn:hover { background: #33ff33; color: #000; }

/* UI Panel */
#ui-header {
    position: absolute; top: 10px; left: 10px; z-index: 1000;
    color: #33ff33; background: rgba(0,0,0,0.7);
    padding: 10px; border: 1px solid #444; pointer-events: auto;
}

/* Marker Visibility Fix */
.marker-dot {
    border-radius: 50%;
    border: 2px solid #fff; /* High visibility border */
    box-shadow: 0 0 10px rgba(51, 255, 51, 1);
}

.pulse-icon {
    animation: pulse-ring 1.2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Popup */
.leaflet-popup-content-wrapper {
    background: #000; color: #33ff33; border: 1px solid #880808;
    border-radius: 0; font-family: 'Special Elite';
}
.intel-btn {
    display: block; text-align: center; border: 1px solid #33ff33;
    color: #33ff33; text-decoration: none; padding: 5px; margin-top: 10px;
}
