/* rifa/css/modules/launcher.css */
#app-launcher {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000; /* Siempre encima de todo */
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#canvas-launcher {
    display: block;
    /* El canvas se ajusta por JS, pero esto asegura que no deforme el layout */
    position: absolute;
    top: 0;
    left: 0;
}