/* Убираем все стандартные отступы у браузера */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000000; 
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    position: fixed;
    background-color: #000000; 
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000000; 
}

.hero::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: -1;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
}

h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.hero-content p {
    font-size: 28px;
    font-weight: 400;
    margin: 40px 0 0 0;
    max-width: 800px;
}

/* --- СТИЛИ ДЛЯ НОВОЙ КНОПКИ --- */
.button {
    /* Делаем кнопку флекс-контейнером для выравнивания иконки и текста */
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    
    /* Твои настройки расстояний */
    gap: 15px; /* Расстояние между иконкой и текстом */
    padding: 20px 25px; /* 20 сверху/снизу, 25 по бокам */
    
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    background-color: #24A1DE;
    border-radius: 50px;
    
    margin-top: 80px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.button-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
/* ---------------------------- */

.button:hover {
    background-color: #2386b6;
}

.button:active {
    background-color: #1a6fa0;
}

.hero-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    text-align: center;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
    height: auto;
}

.hero-footer p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

/* ====================================================== */
/* ===                  Адаптация                      === */
/* ====================================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 22px;
    }
    .button {
        padding: 30px 70px; /* Тут можно оставить большие падинги для планшетов */
    }
}

/* СМАРТФОНЫ (до 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
        margin-top: 20px;
    }
    
    /* ТВОЕ ТРЕБОВАНИЕ: Отступы по 20px от краев экрана */
    .button {
        font-size: 16px;
        margin-top: 40px;
        
        /* Кнопка занимает 100% ширины контейнера */
        width: 100%; 
        /* Но мы ограничиваем контейнер отступами */
        margin-left: 20px;
        margin-right: 20px;
        /* Убираем max-width, чтобы она тянулась на всю доступную ширину (минус отступы) */
        max-width: calc(100% - 40px); 
        
        padding: 16px 0; /* Высоту регулируем падингом сверху/снизу */
    }
    
    .hero-footer p {
        font-size: 14px;
    }
    .hero-content {
        padding-bottom: 120px;
        padding-left: 0; /* Убираем падинг контейнера, чтобы контролировать кнопку марджинами */
        padding-right: 0;
    }
    
    /* Текст внутри контейнера все равно должен иметь отступы */
    .hero-content h1, 
    .hero-content p {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-height: 600px) {
    h1 {
        font-size: 24px;
        margin: 0;
    }
    .hero-content p {
        font-size: 14px;
        margin-top: 15px;
    }
    .button {
        margin-top: 20px;
        padding: 12px 0;
        font-size: 14px;
    }
    .hero-content {
        padding-bottom: 100px;
    }
}