/* Общий сброс и фон */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f8f9fa; /* лёгкий фон для контраста */
}

/* Секция на весь экран с flex-центрированием */
.thanks-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Карточка-контейнер */
.thanks-container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 50px 40px 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

/* Заголовок */
.thanks-title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

/* Подзаголовок (добавил для завершённости) */
.thanks-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin: 0 0 35px 0;
    line-height: 1.5;
}

/* Кнопка */
.thanks-btn {
    display: inline-block;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #151515;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 48px;
    border-radius: 50px;        /* скруглённая кнопка */
    text-decoration: none;
    transition: background 0.25s, transform 0.15s;
    letter-spacing: 0.5px;
}

.thanks-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.thanks-btn:active {
    transform: translateY(0);
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .thanks-title {
        font-size: 30px;
    }
    .thanks-container {
        padding: 35px 20px 30px;
    }
    .thanks-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}