/* Подключение шрифта Gotham */
@font-face {
    font-family: 'Gotham';
    src: url('Gotham.woff2') format('woff2'),
         url('Gotham.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Общие стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Gotham', sans-serif;
    background-color: #0D0F1F;
    color: white;
    text-align: center;
}

/* Контейнер для центрирования */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero h1 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .highlight {
    color: #157BFB;
    font-weight: 600;
}

/* Видео */
.video-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

video {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
}

/* Подзаголовок */
.hero h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Блок бонуса */
.bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-icon {
    width: 24px;
    height: 24px;
}

.bonus p {
    font-size: 16px;
    font-weight: 500;
}

.bonus-highlight {
    color: #14C38E;
    font-weight: 600;
}

/* Кнопка */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 400;
    background-color: #157BFB;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background-color: #0A5AC2;
}

/* Футер */
footer {
    margin-top: 60px;
}

.logo {
    width: 120px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero h2 {
        font-size: 16px;
    }

    video {
        width: 90%;
    }

    .bonus p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 18px;
    }

    .hero h2 {
        font-size: 14px;
    }

    .bonus {
        flex-direction: column;
    }

    .btn {
        width: 80%;
        font-size: 14px;
    }
}
