.loader-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-family: Bahnschrift, sans-serif;
    background: white;
}

.logo {
    font-size: 40px;
    font-weight: 800;
    color: black;
}

/* Лоадер с кирпичами */
.brick-loader {
    display: flex;
    gap: 10px;
}

.brick {
    width: 28px;
    height: 16px;
    background: #D77452; /* кирпичный цвет */
    border: 2px solid #b84300;
    border-radius: 2px;
    opacity: 0.2;
    animation: brickAnim 1.2s infinite;
}

    .brick:nth-child(1) {
        animation-delay: 0s;
    }

    .brick:nth-child(2) {
        animation-delay: 0.15s;
    }

    .brick:nth-child(3) {
        animation-delay: 0.30s;
    }

    .brick:nth-child(4) {
        animation-delay: 0.45s;
    }

    .brick:nth-child(5) {
        animation-delay: 0.60s;
    }

@keyframes brickAnim {
    0% {
        opacity: 0.2;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-4px);
    }

    100% {
        opacity: 0.2;
        transform: translateY(0);
    }
}