body, html { margin: 0; padding: 0; height: 100%; background: #000; overflow: hidden; font-family: 'Special Elite', serif; }

#map { height: 100vh; width: 100vw; background: #050505; }

/* Disclaimer UI */
#disclaimer-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(10px);
    z-index: 9999; display: flex; justify-content: center; align-items: center;
}
#warning-box {
    max-width: 450px; padding: 40px; border: 2px solid #880808;
    background: #0a0a0a; color: #33ff33; text-align: center;
}
.alert { color: #880808; text-shadow: 0 0 10px #ff0000; }

#proceed-btn, #report-btn {
    background: transparent; border: 1px solid #33ff33;
    color: #33ff33; padding: 10px; font-family: 'Special Elite';
    cursor: pointer; margin-top: 15px;
}
#proceed-btn:hover, #report-btn:hover { background: #33ff33; color: #000; }

/* Header UI */
#ui-header {
    position: absolute; top: 20px; left: 20px; z-index: 1000;
    color: #33ff33; background: rgba(0,0,0,0.8);
    padding: 15px; border-left: 5px solid #880808; pointer-events: auto;
}

/* Animations */
.flicker { animation: textFlicker 2s infinite; }
@keyframes textFlicker {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.pulse-icon {
    background: #ff0000; border-radius: 50%;
    box-shadow: 0 0 15px #ff0000;
    animation: pulse-ring 1.5s infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
    background: #111; color: #33ff33; border: 1px solid #880808;
    border-radius: 0; font-family: 'Special Elite';
}
