#splash {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #ffcf05;

    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
}

.splash-logo {
    display: block;
    width: 220px;
    max-width: 70vw;
    height: auto;
    margin: 0 auto 30px;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

#percentage {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}
