body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f8f2e3; /* Цвет фона */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Верхний логотип NutSoft */
.top-logo {
    text-align: center;
    padding: 20px 0;
    z-index: 10;
}

.top-logo img {
    width: 66px; /* Фиксированный размер, можно изменить */
    height: auto;
}

/* Центральный блок с лого приложения и кнопкой */
.header-content {
    display: flex;
    justify-content: center;
    align-items: center; /* Центрирует содержимое по вертикали */
    z-index: 5;
    text-align: center;
    margin-top: 15vh; /* **ПОДНИМАЕМ БЛОК ВВЕРХ** */
}

.app-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.app-logo {
    width: 180px;
    height: auto;
}

.play-button img {
    width: 200px;
    height: auto;
    transition: transform 0.2s ease;
}

.play-button img:hover {
    transform: scale(1.05);
}

/* Нижние элементы */
.bottom-graphics {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.girl-image {
    width: 300px;
    height: auto;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .top-logo img {
        width: 80px;
    }
    .app-logo {
        width: 150px;
    }
    .play-button img {
        width: 180px;
    }
    .app-info {
        flex-direction: column;
        gap: 15px;
    }
    .girl-image {
        width: 250px;
    }
    /* **НОВЫЙ КОД ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ** */
    .header-content {
        margin-top: 6vh; /* **УМЕНЬШАЕМ ОТСТУП, ЧТОБЫ ПОДНЯТЬ БЛОК ВЫШЕ** */
    }
}
