body {
    padding: 0;
    margin: 0;
    background: #212E55; /* фон */
    font-family: Arial, sans-serif;
    height: 100%;
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #212E55;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #212E55;
    display: block;
    max-width: 100%;
}

#unity-logo {
    display: none; /* убираем Unity логотип */
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 35%; /* поднят на 15% выше */
    transform: translate(-50%, -50%);
    display: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#custom-logo {
    transform: scale(1.15);
    margin-top: 15%; /* логотип опущен на 15% ниже */
    margin-bottom: 10px; /* уменьшено расстояние между логотипом и прогрессбаром */
}

#unity-progress-bar-empty {
    margin: 0 auto;
    width: 141px;
    height: 18px;
    margin-top: 5px; /* уменьшено */
    background: url('progress-bar-empty-dark.png') no-repeat center;
    position: relative;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    background: url('progress-bar-full-dark.png') no-repeat center;
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    overflow: hidden;
}

#progress-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
}

#loading-note {
    color: #ccc;
    font-size: 13px;
    margin-top: 5px;
    font-style: italic;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
}
