/* ===== MAIN STYLES ===== */
/* Previously imported CSS modules are now loaded as direct <link> tags in index.html
   to avoid @import url() waterfall loading (each @import blocks until loaded). */

/* Spatial Flight Mode Crosshair */
.flight-crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: var(--z-max);
    display: none;
}

.flight-crosshair::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%);
}

body.flight-mode-active .flight-crosshair {
    display: block;
}

body.flight-mode-active canvas {
    cursor: crosshair;
}





