#loaderObjects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
    color: #7ac5ed;
    overflow: hidden;
}

/* Пульсирующий круг */
#loaderObjects::before {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #7ac5ed;
    border-radius: 50%;
    animation: pulse 1.2s infinite ease-in-out;
    margin-bottom: 20px;
}

/* Анимация пульсации */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* Текст с эффектом печати */
#loaderObjects .loading-text {
    font-size: 1.5rem;
    white-space: nowrap;
    border-right: 3px solid #7ac5ed; /* курсор */
    width: 0;
    overflow: hidden;
    animation: typing 1.5s steps(24) forwards, blink-caret 0.75s step-end infinite;
}

@media (max-width: 480px) {
    #loaderObjects {
        justify-content: flex-end; /* выравнивание по нижнему краю */
        padding-bottom: 250px; /* отступ от низа, можно настроить */
    }
}

/* Анимация печати */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 24ch;
    }
    /* длина текста — 24 символа */
}

/* Мигающий курсор */
@keyframes blink-caret {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: #7ac5ed;
    }
}