* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #070707; /* Тёмный фоновый цвет */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Главный контейнер */
.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Левая колонка */
.left-content {
    flex: 1;
    max-width: 550px;
}

/* Кнопка "Скачать apk" */
.btn-apk {
    display: inline-block;
    background-color: #00b9c5; /* Бирюзовый цвет */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 60px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-apk:hover {
    background-color: #009aa4;
    transform: translateY(-2px);
}

/* Заголовок */
.title-block h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Бирюзовая полоса под заголовком */
.line {
    width: 100%;
    max-width: 420px;
    height: 3px;
    background-color: #00b9c5;
    margin: 25px 0 35px 0;
}

/* Описание */
.description {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 80px;
}

/* Контакты внизу */
.footer-contact {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Правая колонка с GIF */
.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-gif {
    max-width: 100%;
    height: auto;
    width: 500px; /* Размер гифки */
    object-fit: contain;
}

/* ================= АДАПТИВНОСТЬ (для мобильных) ================= */
@media (max-width: 900px) {
    .container {
        flex-direction: column-reverse; /* На мобилке гифка будет сверху, текст снизу */
        text-align: left;
        gap: 30px;
    }

    .left-content {
        max-width: 100%;
    }

    .title-block h1 {
        font-size: 48px;
    }

    .btn-apk {
        margin-bottom: 40px;
    }

    .description {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .hero-gif {
        width: 320px;
    }
}