.load-screen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.85);
    opacity: 1;
    transition: opacity 1s ease;
}

.load-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-weight: 600;
    font-size: 0.75rem;
}

.letter-holder {
    display: flex;
    gap: 0.2rem;
}

.letter {
    animation: loadingF 1.6s linear infinite;
}

.letter:nth-child(1) {
    animation-delay: 0s;
}

.letter:nth-child(2) {
    animation-delay: 0.12s;
}

.letter:nth-child(3) {
    animation-delay: 0.24s;
}

.letter:nth-child(4) {
    animation-delay: 0.36s;
}

.letter:nth-child(5) {
    animation-delay: 0.48s;
}

.letter:nth-child(6) {
    animation-delay: 0.6s;
}

.letter:nth-child(7) {
    animation-delay: 0.72s;
}

.letter:nth-child(8) {
    animation-delay: 0.84s;
}

.letter:nth-child(9) {
    animation-delay: 0.96s;
}

.letter:nth-child(10) {
    animation-delay: 1.08s;
}

.letter:nth-child(11) {
    animation-delay: 1.2s;
}

@keyframes loadingF {

    0%,
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-6px);
    }
}

.load-screen.loader--hidden {
    opacity: 0;
    pointer-events: none;
}
