/* Основные сбросы */
body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    background: black;
}

/* Фон */
#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background-image.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

/* Основной контейнер */
#unity-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Прогресс-бар будет снизу */
    align-items: center;
}

/* Логотип и текст */
#content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-25%);
}

/* Прогресс-бар */
#unity-loading-bar {
    width: 700px;
    max-width: 100%;
    position: relative;
}

/* Стиль для прогресс-бара */
#unity-progress-bar-empty {
    width: 100%;
    height: 40px;
    background: url('progress-bar-empty.jpg') no-repeat center;
    background-size: 100% 100%;
    position: relative;
}

#unity-progress-bar-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* Изменяется динамически */
    height: 40px;
    background: url('progress-bar-full.jpg') no-repeat center;
    background-size: 100% 100%;
}

/* Шрифты */
@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Стиль для списка */
.custom-list {
    list-style-type: none; /* Убираем стандартные маркеры */
    padding: 0;
    margin: 0;
}

.custom-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-list li img {
    margin-right: 10px; /* Отступ между картинкой и текстом */
    width: 20px; /* Ширина картинки */
    height: 20px; /* Высота картинки */
}

.custom-list li p {
    margin: 0; /* Убираем отступы у текста */
    font-family: 'Montserrat', sans-serif; /* Используем кастомный шрифт */
    font-size: 28px; /* Увеличиваем размер шрифта */
    color: white; /* Задаем белый цвет текста */
    line-height: 1.0; /* Уменьшенный межстрочный интервал (можно изменить) */
}

#roadmap {
    font-family: 'Montserrat', sans-serif; /* Установите шрифт */
    font-size: 40px; /* Установите размер шрифта */
    color: white; /* Установите цвет текста */
    font-weight: bold; /* Сделать текст жирным */
}

#game_loading {
    font-family: 'Montserrat', sans-serif; /* Установите шрифт */
    font-size: 40px; /* Установите размер шрифта */
    color: #283E50; /* Установите цвет текста */
    font-weight: bold; /* Сделать текст жирным */
}

/* QR-код блок */
#qr-code-block {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем QR-код по горизонтали */
    justify-content: center; /* Центрируем QR-код по вертикали */
    position: absolute; /* Позволяет свободно располагать блок */
    top: 50%; /* 50% высоты родителя */
    left: 50%; /* 50% ширины родителя */
    transform: translate(-50%, -50%); /* Центрируем блок по обеим осям */
    height: auto; /* Убираем фиксированную высоту */
}

#qr-code-image-test {
    width: 200px;
    height: 200px;
    background: url('runner_qr_test.png') no-repeat center;
    background-size: cover; /* Обеспечивает правильное отображение QR-кода */
}

#qr-code-image-prod {
    width: 200px;
    height: 200px;
    background: url('runner_qr_prod.png') no-repeat center;
    background-size: cover; /* Обеспечивает правильное отображение QR-кода */
}

#qr-code-text {
    font-family: 'Montserrat', sans-serif; /* Установите шрифт */
    font-size: 14px; /* Уменьшаем размер шрифта для текстового блока */
    color: white; /* Установите цвет текста */
    font-weight: bold; /* Сделать текст жирным */
    text-align: center;
}

@media (max-width: 768px) {
    #content {
        transform: scale(0.5) translateY(25%);
    }
}

@media screen and (orientation: landscape) {
    body {
        display: none;
    }
}
