﻿/* =============================================
   SPLASH / INTRO SCREEN
   ============================================= */
#splash-screen {
    position: fixed;
    inset: 0;
    background: #0A0A0A;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

#splash-screen.gone {
    display: none;
}

#splash-canvas {
    display: block;
    pointer-events: none;
}

