html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

:after, :before, :hover {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Helvetica', 'Arial', 'PingFang SC', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
}
body{
    background: linear-gradient(125.68deg, #101703 1.38%, #6B7D36 151.11%);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    min-width: 350px;
    min-height: 100vh;
    background-repeat: no-repeat; /* избегаем повторений */
    background-attachment: fixed; /* фиксированный фон */
    background-color: #101703;
}
a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.container {
    width: 100%;
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}
header{
    
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

header .header_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: relative;
}

header .header_logo{
    display: block;
    margin-right: 15px;
}

header .header_logo svg{
    display: block;
    width: 141px;
    height: 48px;
}

header .header_btns{
    display: flex;
    gap: 20px;
}

header .header_btns .btn{
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #fff;
    transition: .5s all ease;
    position: relative;
    overflow: hidden;
    height: 40px;
    min-width: 110px;
    font-size: 14px;
}

header .header_btns .btn_signup:hover{
    background: rgba(11, 129, 37, 0.2);
}

header .header_btns .btn_registration:hover{
    background: #FF004D;
}

header .header_btns .btn_registration{
    background-color: #FF004D!important;
    border-color: #FF004D;
    color: #fff;
    animation: pulse 16s infinite cubic-bezier(0.7, 0, 0, 1);
    min-width: 130px;
}

@keyframes pulse {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90%, 100% {
        box-shadow: 0 0 0 0 #FF004D;
    }
    9.99%, 19.99%, 29.99%, 39.99%, 49.99%, 59.99%, 69.99%, 79.99%, 89.99%, 99.99% {
        box-shadow: 0 0 0 10px rgba(115, 92, 252, 0);
    }
}

.page_wrap {
    line-height: 1.5;
    padding: 20px 0 15px 0;
}
.page_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.page_subtitle {
    font-size: 20px;
    line-height: 1.3;
}
.page_btn:hover {
    opacity: .7;
}
.page_hero {
    position: relative;
    overflow: hidden;
    background: #3f4a1d;
    border-radius: 16px;
    margin-bottom: 32px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.page_hero_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.page_hero .text_col {
    padding: 40px;
}
.page_hero_desc{
    max-width: 430px;
}
.page_hero .img_col{
    position: relative;
}
.page_hero .img_col:before{
    content: '';
    filter: blur(100.62px);
    background: #b8ff69;
    width: 390px;
    height: 390px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}
.page_hero_img {
    display: block;
    max-width: 100%;
    position: relative;
    margin: 0 auto 0 auto;
    width: 400px;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    .page_hero_img {
        max-width: 38em;
    }
}
@media screen and (min-width: 767px) and (max-width: 1200px) {
    .page_hero_img {
        max-width: 42em;
    }
}
.page_hero .page_title{
    font-size: 48px;
}
.page_hero .page_title span {
    font-size: 24px;
    color: #b8ff69;
    display: block;
}
.page_hero_bottom{
    background: #282E1C;
    margin-top: auto;
    padding: 21px 40px;
    position: relative;
    z-index: 1;
}
.loyalty_desc_list{
    display: flex;
    justify-content: space-between;
    gap: 0 28px;
}
.loyalty_desc_list .loyalty_desc_img{
    width: 86px;
    min-width: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loyalty_desc_list .loyalty_desc_img img{
    display: block;
    max-width: 100%;
}
.loyalty_desc_list .loyalty_desc_text{
    padding: 8px 0;
}
.loyalty_desc_list .item{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    gap: 8px;
}
.loyalty_desc_list .item_title{
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}
.page_description_section{
    padding: 29px 25px;
    border-radius: 20px;
    background: #282E1C;
}
.info{
    position: relative;
    padding-left: 30px;
}
.info .ico{
    position: absolute;
    top: 2px;
    left: 0;
}
.page_description_section .page_title{
    margin-bottom: 12px;
}
.green{
    color: #b8ff69;
    font-weight: 700;
    line-height: 1.4;
    font-size: 20px;
}
@media screen and (max-width: 991px) {
    .page_wrap {
        font-size: 14px;
        padding-bottom: 15px;
    }
    .page_title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page_subtitle {
        font-size: 16px;
    }
    .page_hero .text_col {
        padding: 28px 16px 44px;
    }
    .page_hero .page_btn {
        margin-top: 24px;
    }
    .page_hero_bottom{
        padding: 21px 14px;
    }
    .loyalty_desc_list .item{
        width: 50%;
    }
    .loyalty_desc_list{
        flex-wrap: wrap;
        gap: 0;
    }
}
@media screen and (max-width: 767px) {
    .page_hero{
        margin-bottom: 15px;
    }
    .page_hero_bg {
        left: auto;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .page_hero .page_title span{
        font-size: 16px;
    }
    .page_hero .page_title{
        font-size: 24px;
    }
    
}
@media screen and (max-width: 575px){
    header .header_btns .btn{
        padding: 5px;
        font-size: 12px;
        height: 34px;
        min-width: 95px;
    }
    header .header_btns{
        gap: 5px;
    }
    header .header_logo img {
        display: block;
        width: 90px;
    }
    .page_hero_row{
        flex-direction: column;
    }
    .loyalty_desc_list .item{
        width: 100%;
    }
    .page_hero .text_col{
        width: 100%;
    }
    .page_hero .img_col{
        width: 100%;
    }
}