:root {
    --text: #2e2d2d;
    --mobile-menu-bg: #ED0B07;
    --navigation: #ffffff;
    --navigation-hover: #fbeb02;
    --footer-text: #dedede;
    --footer-navigation: #dedede;
    --footer-navigation-hover: #ffffff;
    --brand-color: #6d14da;
    --secondary: #ED0B07
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    font-family: Montserrat, sans-serif;
    color: var(--text);
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    background-color: #f7f6fe
}

body.loaded {
    overflow: auto
}

body.overflow-hidden {
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-top: 0
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2
}

.heading-xl {
    font-size: 2.5rem;
    position: relative;
    text-align: center
}

h3 {
    font-size: 2rem
}

h4 {
    font-size: 1.7rem
}

h5 {
    font-size: 1.5rem
}

h6 {
    font-size: 1.3rem
}

img {
    max-width: 100%;
    height: auto
}

a:hover {
    text-decoration: none;
    color: var(--secondary)
}

.content-shell {
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto
}

.main-body {
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 32px
}

.block-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.buttonAction {
    display: inline-block;
    padding: 12px 24px;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
    border-radius: 12px;
    -webkit-transition: ease .2s;
    transition: ease .2s
}

.buttonAction-top {
    padding: 10px 20px;
    font-size: 16px;
    min-width: 120px
}

.buttonAction-main {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#c500b0), to(#751efd));
    background-image: linear-gradient(#c500b0 0, #751efd 100%);
    color: #fff
}

.buttonAction-main:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#a50495), to(#6415e2));
    background-image: linear-gradient(#a50495 0, #6415e2 100%);
    color: #fff
}

.buttonAction-alt {
    padding: 10px 22px;
    border: 2px solid #ff7a02;
    background-color: transparent;
    color: #ff7a02;
    position: relative
}

.buttonAction-alt:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .01);
    pointer-events: none
}

.buttonAction-alt:hover {
    background-color: #ff7a02;
    color: #fff
}

.main-header {
    position: relative;
    width: 100%;
    padding: 15px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-bottom: 1px solid #d1d0cd
}

.header-left-site{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
}

.header-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all .3s;
    transition: all .3s
}

.logo-main {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .3s;
    transition: all .3s
}

.logo-image {
    max-width: 150px;
    width: auto;
    max-height: 55px;
    -o-object-fit: cover;
    object-fit: cover
}

.main-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.main-navigation>li {
    position: relative;
    margin: 0 15px
}

.main-navigation>li:last-child {
    margin-right: 0
}

.main-navigation>li>a {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: ease .2s;
    transition: ease .2s
}

.main-navigation>li.current-menu-item>a,
.main-navigation>li>a:hover {
    -webkit-transition: ease .2s;
    transition: ease .2s;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}

.header-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px
}

.sidebar-logo {
    text-align: center
}

.menu-switcher {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 15;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #6d14da;
    border: none;
    border-radius: 99px;
    padding: 10px;
    border: 2px solid #6d14da
}

.menu-switcher.is-active .icon-open {
    display: none
}

.menu-switcher.is-active .icon-close {
    display: block
}

.icon-close {
    display: none
}

.backdrop-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    display: none;
    z-index: 100
}

.backdrop-overlay.is-active {
    display: block
}

.layout-split {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}

.split-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.split-item>:last-child {
    margin-bottom: 0
}

.banner-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 225px 0 85px 0;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff1602), to(#fbeb02));
    background: linear-gradient(180deg, #ff1602 0, #fbeb02 100%);
    color: #fff;
    margin-top: -100px;
    margin-bottom: 24px
}

.banner-body {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px
}

.banner-section p {
    font-size: 20px
}

.block-text {
    padding: 16px;
    background-color: #fff;
    margin-bottom: 32px;
    border-radius: 16px
}

.main-footer {
    padding: 24px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top: 1px solid #d1d0cd;
    background-color: #fff
}

.footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.footer-brand {
    max-width: 150px
}

.footer-details {
    color: #464343
}

.footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 8px;
    list-style-type: none
}

.footer-list li a {
    text-decoration: none;
    color: #2e2d2d
}

.footer-list li a:hover {
    text-decoration: underline
}

.footer-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px
}

.footer-logos img {
    height: 32px
}

table {
    margin: auto;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%
}

td {
    border: 1px solid var(--text);
    padding: 10px
}

ul {
    margin-bottom: 1rem
}

ul li {
    margin-bottom: .5rem
}

.typography {
    line-height: 1.5
}

.typography>:last-child {
    margin-bottom: 0
}

.typography p {
    margin-bottom: 1rem
}

.bullet-list {
    margin: 1rem 0;
    padding-left: 1.5rem
}

.bullet-list li {
    margin-bottom: .5rem
}

.bullet-list li::marker {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f15805
}

.number-list {
    margin: 1rem 0;
    padding-left: 1.5rem
}

.number-list li::marker {
    color: #f15805;
    font-weight: 700
}

.typography img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
    border-radius: 4px
}

.centered-text {
    text-align: center;
    margin-bottom: 1rem
}

.qaBlockInlo__entry {
    background: linear-gradient(19deg, #e41c0a 0, #e69705 100%);
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden
}

.qaBlockInlo__entry:last-child {
    margin-bottom: 0
}

.qaBlockInlo__heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.5px;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    margin-bottom: 0;
    padding-right: 40px !important
}

.qaBlockInlo__heading::after {
    content: "+";
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    text-shadow: 0 0 8px rgba(241, 179, 20, .5);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.qaBlockInlo__entry.active .qaBlockInlo__heading::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.qaBlockInlo__body {
    font-size: 16px;
    line-height: 1.9;
    margin: 4px;
    padding: 15px;
    border-radius: 0 0 2px 2px;
    background-color: #fff
}

.qaBlockInlo__body>* {
    margin: 0 0 16px 0
}

.qaBlockInlo__body>:last-child {
    margin-bottom: 0
}

/* Стили для новых адаптивных карточек */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.bonus-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.bonus-card h4 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.bonus-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bonus-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}
.bonus-card li:last-child {
    border-bottom: none;
}
.bonus-card strong {
    color: #555;
}


@media (min-width:767.98px) {
    .sidebar-logo {
        display: none
    }
}

@media (max-width:991px) {
    .layout-split {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }
}

@media only screen and (max-width:767px) {
    body {
        font-size: 16px
    }

    h1 {
        font-size: 3rem
    }

    .heading-xl {
        font-size: 2rem
    }

    .banner-section p {
        font-size: 16px
    }

    h1 {
        font-size: 2rem
    }

    .heading-xl {
        font-size: 1.8rem
    }

    h3 {
        font-size: 1.6rem
    }

    h4 {
        font-size: 1.4rem
    }

    h5 {
        font-size: 1.3rem
    }

    h6 {
        font-size: 1.2rem
    }
}

@media (max-width:767.98px) {
    .main-body {
        margin-bottom: 0
    }

    .sidebar-menu {
        position: fixed;
        z-index: 103;
        left: 0;
        top: 0;
        width: 100%;
        border-radius: 0 0 16px 16px;
        background: -webkit-gradient(linear, left top, left bottom, from(#fbeb02), to(#ff1602));
        background: linear-gradient(180deg, #fbeb02 0, #ff1602 100%);
        padding: 16px 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: ease .2s;
        transition: ease .2s
    }

    .sidebar-menu a {
        color: #fff !important;
        text-shadow: 1px 2px 2px rgba(0, 0, 0, .8)
    }

    .sidebar-menu.is-active {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: ease .2s;
        transition: ease .2s
    }

    .sidebar-menu .main-navigation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }

    .menu-switcher {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        z-index: 105
    }

    .banner-section {
        padding-top: 175px;
        padding-bottom: 65px
    }

    .footer-details {
        text-align: center
    }

    .qaBlockInlo__heading {
        padding: 15px
    }

    .qaBlockInlo__body {
        padding: 0 15px 15px 15px
    }
}
