* {
    box-sizing: border-box;
       font-family: 'Inter', -apple-system, BlinkMacSystemFont, 
                 'Segoe UI', Roboto, Arial, sans-serif;
                 color: #fff;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* убирает боковой скролл от blur/absolute */
    background: #071c0f;
}

body {
    display: flex;
    justify-content: center;
}

.page {
    width: 480px;
    min-height: 100vh;

    background: url("img/bg.png") center top / 100% auto no-repeat;
    background-color: #071c0f;

    padding: 20px;

    position: relative; /* ВАЖНО для ::before/::after */
    overflow: hidden;   /* ВАЖНО режет blur и вылеты */
}


.page {
    width: 480px;
    min-height: 100vh;

    background: url("img/bg.png") center top / 100% auto no-repeat;
    background-color: #071c0f;

    padding: 20px;

    position: relative; /* ВАЖНО для ::before/::after */
    overflow: hidden;   /* ВАЖНО режет blur и вылеты */
}
.page::before {
    top: -60px;
    left: -60px;
}
.page::after {
    bottom: -80px;
    right: -80px;
}

/* top trust bar */
.trust {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    border: 1px solid #7C8C45;
    border-radius: 40px;
    padding: 10px 16px;
    margin-bottom: 22px;
}

.avatars {
    display: flex;
}
.avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-right: -8px;
}

.trust-text {
    font-size: 12px;
    margin-left: 18px;
    flex: 1;
}
.headline {
    max-width: 400px;      /* ключевая строка */
    margin: 0 auto 15px;   /* центрируем блок */
    text-align: center;
    font-size: 17px;
}

.trust-text span {
    color: #c6ff00;
}

.check {
    position: absolute;
    top: -18px;
    right: 23px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.check img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

/* headline */
h1 {
    text-align: center;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 26px;
}

.green {
    color: #C6FF23;
    font-weight: 500;
}

/* profile image */
.profile {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.profile img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
}

/* description */
.desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.desc .green {
    font-weight: 800;
}

.strike {
    position: relative;
    display: inline-block;
}

.strike img {
    position: absolute;
    left: -4px;          /* подгоняешь под макет */
    top: 20%;            /* центр по высоте текста */
    width: calc(100% + 8px);
    height: auto;
    pointer-events: none;
}

/* button */
.btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #c6ff00;
    color: #000;
    font-weight: 900;
    font-size: 14px;
    padding: 18px 12px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(198,255,0,0.6);
}