/* CSS for the interactive network canvas background */
#network-canvas {
    position: fixed;
    inset: 0;
    z-index: 0; /* Su di un livello rispetto all'aurora layer ma sotto al contenuto */
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile adjustments to make background darker */
@media (max-width: 768px) {
    #network-canvas {
        opacity: 0.3;
    }
}
