#pixi-loader-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #00aeef;
z-index: 99999;
display: flex;
justify-content: center;
align-items: center;
/* Remove pointer-events: none while it's active so it's visible */
pointer-events: auto;
overflow: hidden; /* Critical for the dissolve/expansion effect */
transition: opacity 0.5s ease-out; /* Fallback transition */
}

#pixi-canvas-container {
width: 100%;
height: 100%;
}

canvas {
    display: block;
}
