#loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white; /* или любой другой фон */
    z-index: 1000;
}

#loader-logo {
    max-width: 80%; /* ограничение максимальной ширины */
    max-height: 40vh; /* ограничение максимальной высоты */
    width: auto;
    height: auto;
    margin-bottom: 15vh; /* отступ снизу относительно высоты экрана */
    object-fit: contain;
}

.progress-bar {
    width: 60%; /* ширина прогресс-бара относительно экрана */
    max-width: 400px; /* максимальная ширина */
    height: 20px; /* фиксированная высота */
    background: #FFE8DD;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 3vh; /* отступ сверху относительно высоты экрана */
}

.progress-bar-fill {
    height: 100%;
    background: #AB7055;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Медиа-запросы для дополнительной адаптивности */
@media (max-width: 768px) {
    #loader-logo {
        max-width: 70%;
        margin-bottom: 4vh;
    }
    
    .progress-bar {
        width: 80%;
        height: 16px;
        margin-top: 2.5vh;
    }
}

@media (max-width: 480px) {
    #loader-logo {
        max-width: 60%;
        margin-bottom: 3vh;
    }
    
    .progress-bar {
        width: 90%;
        height: 14px;
        margin-top: 2vh;
    }
}
