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

body {
    background-color: #202020; /* Чистый черный фон */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Ограничиваем контент шириной мобильного экрана */
.mobile-container {
    max-width: 400px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}

/* Фото наверху */
.top-image {
    width: 100%;
    max-width: 380px;
    display: block;
    object-fit: contain;
}

/* Заголовок */
.title {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Кнопка */
.btn-brown {
    background-color: #684a35; /* Коричнево-бронзовый цвет как на скриншоте */
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    border-radius: 40px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 30px;
    transition: opacity 0.3s;
}

.btn-brown:hover {
    opacity: 0.8;
}

/* Текстовое описание */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.final-text {
    margin-bottom: 50px;
}

/* Форма */
.field {
    margin-bottom: 35px;
    text-align: left;
}

label {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666; /* Тонкая линия снизу */
    color: #ffffff;
    font-size: 1.2rem;
    padding: 10px 0;
    outline: none;
    border-radius: 0; /* Убираем скругления */
}

/* Более яркая линия при клике на поле */
input:focus {
    border-bottom: 2px solid #ffffff; 
}

/* Сообщение об успехе */
.success {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #4ade80;
    border-radius: 10px;
    color: #4ade80;
}

.agree { text-align: center; font-size: 0.8rem; color: #888; margin-top: 15px; }

.success h3 { margin-bottom: 10px; }
.hidden { display: none; }