.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0d0d0d;

    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.character-loader {
    width: min(400px, 75vw);
    text-align: center;
}

.character-svg {
    width: 100%;
    display: block;
}

.character-base {
    filter: grayscale(100%) brightness(40%);
    opacity: 0.5;
}

.loading-percent {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}