/* index.css — écran de boot + fond matrix de la page d'entrée */

body {
    font-family: 'DepartureMono', monospace;
    margin: 0;
    background-color: #000000;
}

canvas#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#boot {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#boot-text {
    font-family: 'DepartureMono', monospace;
    font-size: 14px;
    color: #00C878;
    line-height: 1.8;
    white-space: pre;
    text-shadow: 0 0 8px #00C878;
    opacity: 1;
    transition: opacity 1.5s ease;
}

#boot-text.fade {
    opacity: 0;
}
