/* ==============================================================================
   Woowmap Strategy – Live Spectator Background Map Stylesheet (v0.1.1-alpha.11)
   Pitch-black tactical map layout for embedding as passive homepage background
   ============================================================================== */

:root {
    --bg-main: #070b0f;
    --border-color: #30363d;
    --text-main: #f0f6fc;
    --text-muted: #8b949e;
    --accent-blue: #58a6ff;
    --accent-green: #3fb950;
    --accent-yellow: #d29922;
}

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

html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-main);
    user-select: none;
    -webkit-user-select: none;
    margin: 0;
    padding: 0;
}

#spectator-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    outline: none;
}

/* Subtle Dark Tactical Filter for OSM Tiles */
.leaflet-tile {
    filter: brightness(0.65) invert(1) contrast(3) hue-rotate(200deg) saturate(0.25) brightness(0.65) !important;
}

.leaflet-container {
    background: #070b0f !important;
    outline: none;
}

/* Units Canvas Overlay */
.spectator-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 450;
}

/* Static Station & Building Dots */
.spectator-station-dot {
    width: 8px;
    height: 8px;
    background: rgba(56, 189, 248, 0.95);
    border: 1.5px solid #070b0f;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(56, 189, 248, 0.7);
}

.spectator-building-dot {
    width: 7px;
    height: 7px;
    background: rgba(245, 158, 11, 0.9);
    border: 1px solid #070b0f;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(245, 158, 11, 0.6);
}
