

#loading-screen {
    position: fixed;
    inset: 0;
    background: #0d0000;
    z-index: 9999;
    display: grid;
    place-items: center;
    place-content: center;
    gap: 20px;
    text-align: center;
    transition: opacity 0.6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

#ls-title {
    font-family: Persona5MenuFontPrototype-Regular;
    font-size: 36px;
    color: #C50000;
    letter-spacing: 10px;
    animation: flicker 3s ease-in-out infinite;
}

#ls-sub {
    font-family: p5hatty-1;
    font-size: 12px;
    letter-spacing: 5px;
    color: #CD8F2A;
}

#ls-bar-wrap, #ls-bar, #ls-pct {
    display: none;
}

#ls-msg {
    font-family: p5hatty-1;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 4px;
    animation: blink 1s step-end infinite; /* to make it flicker */
}

@keyframes flicker {  /* to make it flicker */
    0%, 94%, 96%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

@keyframes blink {
    50% { opacity: 0; }
}