/* === var.css inlined (generator does not copy var.css separately) === */
:root {
    --css_header_background_color: #221d26;
    --css_header_link_color: #ffffff;
    --css_header_primary_button_background_color: #e81cff;
    --css_header_primary_button_text_color: #ffffff;
    --css_header_primary_second_button_background_color: #37294a;
    --css_header_primary_second_button_text_color: #e81cff;
    --css_main_background_color: #1a1720;
    --css_main_link_color: #e81cff;
    --css_main_heading_color: #ffffff;
    --css_main_text_color: #c8c5ce;
    --css_main_primary_button_background_color: #e81cff;
    --css_main_primary_button_text_color: #ffffff;
    --css_main_primary_second_button_background_color: #37294a;
    --css_main_primary_second_button_text_color: #e81cff;
    --css_content_background_color: #221d26;
    --css_content_link_color: #e81cff;
    --css_content_heading_color: #ffffff;
    --css_content_text_color: #c8c5ce;
    --css_content_primary_button_background_color: #e81cff;
    --css_content_primary_button_text_color: #ffffff;
    --css_content_primary_second_button_background_color: undefined;
    --css_content_primary_second_button_text_color: #e81cff;
    --css_content_table_border_color: #37294a;
    --css_content_table_header_background_color: #2f2735;
    --css_content_table_tr_paired_lines_background_color: #221d26;
    --css_content_table_tr_unpaired_lines_background_color: #2a2331;
    --css_banner_background_color: #b91aff;
    --css_banner_title_color: #f6ff00;
    --css_banner_text_color: #ffffff;
    --css_banner_button_background_color: #e81cff;
    --css_banner_button_text_color: #ffffff;
}

:root {
    --main-bg-color: var(--css_main_background_color, #1a1720);
    --main-text-color: var(--css_main_text_color, #c8c5ce);
    --h1-2-3-4-color: var(--css_main_heading_color, #ffffff);

    --header-background: var(--css_header_background_color, #221d26);
    --header-link-color: var(--css_header_link_color, #ffffff);

    --register-button-background: var(--css_header_primary_button_background_color, #e81cff);
    --register-button-text-color: var(--css_header_primary_button_text_color, #ffffff);
    --login-button-background: var(--css_header_primary_second_button_background_color, #37294a);
    --login-button-text-color: var(--css_header_primary_second_button_text_color, #e81cff);

    --button-close-background: var(--css_header_primary_second_button_background_color, #37294a);
    --left-menu-background: var(--css_header_background_color, #221d26);
    --footer-background: var(--css_content_background_color, var(--css_main_background_color, #221d26));
    --faq-title-background: var(--css_content_table_header_background_color, #2f2735);
    --faq-item-background: var(--css_content_background_color, #221d26);
    --color-text-footer-copyright: var(--css_main_text_color, #c8c5ce);
}

@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: 'PermanentMarker';
    src: url("../fonts/PermanentMarker-Regular.woff") format("woff"), url("../fonts/PermanentMarker-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap
}

*, *::before, *::after {
    box-sizing: border-box
}

ul[class], ol[class] {
    margin: 0;
    padding: 0
}

body, h1, h2, h3, h4, p, li, figure, figcaption, blockquote, dl, dd {
    margin: 0
}

html {
    font-size: 10px
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5
}

.r-no-scroll {
    overflow: hidden
}

ul[class], ol[class] {
    list-style: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    display: inline;
    color: #ffe97b
}

a:not([class]):hover {
    text-decoration: underline
}

img {
    max-width: 100%;
    display: block
}

section > * + *, article > * + * {
    margin-top: 1em
}

input, button, textarea, select {
    font: inherit
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--main-text-color);
    background-color: var(--main-bg-color);
}

h1, h2, h3, h4 {
    color: var(--h1-2-3-4-color);
    font-weight: 500
}

h1 {
    font-size: 2.9rem
}

h2 {
    font-size: 2.6rem
}

h3 {
    font-size: 2.3rem
}

h4 {
    font-size: 2rem
}

a {
    display: block;
    text-decoration: none
}

.r-container {
    max-width: 1864px;
    width: 100%;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 40px;
    text-align: center;
}

@media (min-width: 450px) {
    .r-container {
        padding-left: 1.6rem;
        padding-right: 1.6rem
    }
}

@media (min-width: 768px) {
    .r-container {
        padding-left: 2.4rem;
        padding-right: 2.4rem
    }
}

@media (min-width: 1400px) {
    .r-container {
        padding-left: 3.2rem;
        padding-right: 3.2rem
    }
}

.r-o-btn {
    border: none;
    background-color: transparent;
    cursor: pointer
}

.r-o-table__wrap {
    overflow-x: auto;
    margin-bottom: 3rem
}

.r-o-table__wrap::-webkit-scrollbar {
    width: 10px;
    height: 5px
}

.r-o-table__wrap::-webkit-scrollbar-thumb {
    background: #2d2f3cda
}

.r-o-table__wrap::-webkit-scrollbar-track {
    background: transparent
}

.r-main {
    width: 100%;
    padding-top: 8.5rem;
    background-color: var(--css_main_background_color);
    color: var(--css_main_text_color);
}

.r-main a {
    color: var(--css_main_link_color);
}

@media (min-width: 768px) {
    .r-main {
        padding-top: 9.5rem
    }
}


table {
    display: block;          
    overflow-x: auto;          
    white-space: nowrap;        
    border-collapse: collapse;
    margin: 1rem auto;
    padding-bottom: 1rem;
    text-align: center;
    width: max-content;     
    max-width: 100%;      
    border: none;  
}

@media (max-width: 767px) {
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}


thead {
    color: white;
}

tr {
    margin: 0
}

th, td {
    padding: 1rem 1.3rem;
    min-width: 13.5rem;
    border: 0.1rem solid var(--main-text-color);
}

td {
    color: var(--main-text-color);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.2rem
    }

    h2 {
        font-size: 2.9rem
    }

    h3 {
        font-size: 2.6rem
    }

    h4 {
        font-size: 2.3rem
    }
}

.r-center {
    text-align: center
}

.r-o-title {
    display: flex;
    align-items: center;
    color: var(--main-text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500
}

.r-o-title svg {
    margin-right: 0.8rem
}

@media (min-width: 1020px) {
    body {
        transition: padding-left .3s linear;
        padding-left: 5.6rem
    }

    body.r-move {
        padding-left: 22.4rem
    }

    body.r-move .r-footer__top {
        width: 65%
    }
}

@media (min-width: 1300px) {
    body.r-move {
        padding-left: 22.4rem
    }

    body.r-move .r-footer__top {
        width: 55%
    }
}

@media (min-width: 1400px) {
    body {
        padding-left: 22.4rem
    }

    body.r-move {
        padding-left: 5.6rem
    }

    body.r-move .r-footer__top {
        width: 59%
    }
}

.r-aside {
    background: var(--css_header_background_color);
    width: 100%;
    z-index: 4;
    top: 0;
    left: 0;
    transition: width .2s linear;
    transform: translateX(-105%);
    height: 100%;
    position: fixed;
    padding: 8px 8px 64px
}

.r-aside__logo {
    display: none
}

.r-aside__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.7rem
}

.r-aside__span {
    font-size: 2.4rem;
    font-weight: bold;
    color: #9696a5;
    display: block;
    margin-left: 0.5rem
}

.r-menu {
    overflow-y: auto
}

.r-menu::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

.r-menu::-webkit-scrollbar-thumb {
    background: transparent
}

.r-menu::-webkit-scrollbar-track {
    background: transparent
}

.r-menu__close {
    cursor: pointer;
    height: 4rem;
    width: 4rem;
    border: 1px solid rgba(140, 150, 170, 0.5);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--css_header_background_color) !important;
}

.r-menu__close-round {
    transform: rotate(180deg);
    margin-right: -1px
}

.r-menu__category-item summary {
    padding: 4px 8px;
    height: 4rem;
    display: flex;
    cursor: pointer;
    position: relative;
    outline: none;
    align-items: center;
    transition: background .2s linear
}

.r-menu__category-item summary:hover {
    background: color-mix(in srgb, var(--css_header_primary_button_background_color, #e81cff) 15%, var(--css_header_background_color, #323746));
    border-radius: 8px
}

.r-menu__category-item summary:hover .r-menu__span {
    color: var(--css_header_link_color, #fff)
}

.r-menu__category-item summary span {
    display: block;
    color: var(--css_header_link_color, #fff)
}

.r-menu__category-item summary svg {
    width: 24px;
    height: 24px;
    margin-right: 0.8rem
}

.r-menu__category-item summary::after {
    content: '';
    position: absolute;
    background-image: url("/img/arrow-aside.svg");
    height: 0.8rem;
    width: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    right: 16px
}

.r-menu__category-item details[open] {
    background: transparent
}

.r-menu__category-item details[open] summary::after {
    transform: rotate(180deg) translateY(50%)
}

.r-menu__list[class] {
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem
}

.r-menu__list {
    border-bottom: 1px solid #2d2f3c
}

.r-menu__list:last-child {
    border-bottom: none
}

.r-menu__list-link {
    padding: 4px 8px;
    height: 4rem;
    display: flex;
    align-items: center;
    color: var(--css_header_link_color, #fff);
    font-size: 1.2rem
}

.r-menu__list-link:hover {
    background: color-mix(in srgb, var(--css_header_primary_button_background_color, #e81cff) 15%, var(--css_header_background_color, #323746));
    border-radius: 8px;
    color: var(--css_header_link_color, #fff)
}

.r-menu__list-link svg {
    width: 24px;
    height: 24px;
    margin-right: 0.8rem
}

.r-menu__subcategory-list[class] {
    padding: 0 0 13px 32px
}

.r-menu__subcategory-link {
    display: block;
    font-size: 1.2rem;
    color: var(--css_header_link_color, #9ba0b9);
    opacity: 0.7;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    padding-top: 5px;
    padding-bottom: 5px
}

.r-menu__subcategory-link:hover {
    color: var(--css_header_primary_button_background_color, #e81cff);
    opacity: 1;
    background: color-mix(in srgb, var(--css_header_primary_button_background_color, #e81cff) 10%, transparent)
}

.r-menu__subcategory-item + .r-menu__subcategory-item {
    margin-top: 0
}

.r-menu__span {
    display: block;
    font-size: 1.2rem
}

.r-aside.r-is-active {
    transform: translateX(0)
}

@media (min-width: 768px) {
    .r-aside {
        width: 224px
    }

    .r-aside__span {
        display: none
    }

    .r-aside__logo {
        padding-left: 0.8rem;
        padding-top: 0.5rem;
        display: block;
        margin-bottom: 1.2rem
    }

    .r-aside.r-is-active .r-menu__close {
        position: absolute;
        top: 0;
        right: -2.1rem;
        height: 6.4rem;
        border-radius: 0 0 0 12px;
        width: 4.5rem;
        background: #2d2f3c;
        border: none
    }

    .r-aside.r-is-active .r-menu__close svg {
        margin-left: 0.7rem
    }

    .r-menu__close-round {
        display: none
    }
}

@media (min-width: 1020px) {
    .r-aside {
        padding: 0.8rem;
        width: 56px;
        transform: translateX(0);
        z-index: 3;
        padding-top: 7rem
    }

    .r-aside__top {
        display: none
    }

    .r-aside__logo {
        display: none
    }

    .r-menu__close {
        display: none
    }

    .r-menu__span {
        display: none
    }

    .r-menu__category-item details {
        border-radius: 8px
    }

    .r-menu__category-item details div {
        display: none
    }

    .r-menu__category-item summary span {
        display: none
    }

    .r-menu__category-item summary::after {
        display: none
    }

    .r-menu .r-menu__category-item summary svg {
        margin-right: 0;
        color: var(--css_header_primary_button_background_color, #e81cff)
    }

    .r-menu .r-menu__list-link svg {
        flex-shrink: 0;
        margin-right: 0;
        color: var(--css_header_primary_button_background_color, #e81cff)
    }

    .r-menu__category-item + .r-menu__category-item {
        margin-top: 0.7rem
    }

    .r-aside.r-is-active {
        padding-top: 0.8rem;
        width: 224px;
        z-index: 4
    }

    .r-aside.r-is-active .r-aside__logo {
        display: flex;
        gap: 16px;
        margin-bottom: 3rem;
        width: 40px;
        height: 40px;
    }

    .r-aside.r-is-active .r-menu__close {
        display: block
    }

    .r-aside.r-is-active .r-menu__category-item details div {
        display: block
    }

    .r-aside.r-is-active .r-menu__span {
        display: block
    }

    .r-aside.r-is-active .r-menu__category-item summary svg {
        margin-right: 0.8rem
    }

    .r-aside.r-is-active .r-menu__list-link svg {
        margin-right: 0.8rem
    }

    .r-aside.r-is-active .r-menu__category-item summary::after {
        display: block
    }

    .r-aside.r-is-active .r-menu__category-item + .r-menu__category-item {
        margin-top: 0
    }

    .r-aside.r-is-active .r-aside__top {
        display: block
    }

    .r-aside.r-is-active .r-aside__span {
        display: none
    }
}

@media (min-width: 1400px) {
    .r-aside {
        padding-top: 0.8rem;
        width: 224px;
        z-index: 4
    }

    .r-aside__top {
        display: block
    }

    .r-aside__span {
        display: none
    }

    .r-aside .r-aside__logo {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 3rem
    }

    .r-aside .r-aside__logo p {
        font-size: 24px;
        color: var(--css_header_link_color, #fff);
    }

    .r-aside .r-menu__close {
        display: flex;
        position: absolute;
        top: 0;
        right: -2.1rem;
        height: 6.4rem;
        border-radius: 0 0 0 12px;
        width: 4.5rem;
        background: var(--button-close-background);
        border: none
    }

    .r-aside .r-menu__close svg {
        margin-left: 0.7rem
    }

    .r-aside .r-menu__category-item details div {
        display: block
    }

    .r-aside .r-menu__span {
        display: block
    }

    .r-aside .r-menu__category-item summary svg {
        margin-right: 0.8rem
    }

    .r-aside .r-menu__list-link svg {
        margin-right: 0.8rem
    }

    .r-aside .r-menu__category-item summary::after {
        display: block
    }

    .r-aside .r-menu__category-item + .r-menu__category-item {
        margin-top: 0
    }

    .r-aside.r-is-active {
        padding: 0.8rem;
        width: 56px;
        transform: translateX(0);
        padding-top: 7.5rem;
        z-index: 3
    }

    .r-aside.r-is-active .r-aside__logo {
        display: none
    }

    .r-aside.r-is-active .r-menu__close {
        display: none
    }

    .r-aside.r-is-active .r-menu__span {
        display: none
    }

    .r-aside.r-is-active .r-menu__category-item details div {
        display: none
    }

    .r-aside.r-is-active .r-menu__category-item summary span {
        display: none
    }

    .r-aside.r-is-active .r-menu__category-item summary::after {
        display: none
    }

    .r-aside.r-is-active .r-menu .r-menu__category-item summary svg {
        margin-right: 0
    }

    .r-aside.r-is-active .r-menu .r-menu__list-link svg {
        flex-shrink: 0;
        margin-right: 0
    }

    .r-aside.r-is-active .r-aside__top {
        display: none
    }
}

.r-headers {
    background: var(--css_header_background_color);
    width: 100%;
    z-index: 4;
    border-radius: 0;
    height: 5.6rem;
    position: fixed;
    top: 0;
    left: 0
}

.r-headers__wrapper {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    transition: padding .2s linear;
    height: 100%;
    display: flex;
    align-items: center
}

.r-headers__menu {
    display: flex;
    justify-content: center;
    align-items: center
}

.r-headers__logo {
    margin-left: 1rem
}

.r-headers__links {
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #2d2f3c
}

.r-headers__links-log {
    margin-right: 1.4rem;
    padding: 1.2rem 2rem;
    border: 1px solid rgba(140, 150, 170, 0.5);
    color: var(--login-button-text-color);
    text-align: center;
    border-radius: 0.8rem;
    transition: border .2s linear;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--login-button-background);
}

.r-headers__links-log:hover {
    border: 1px solid #F5D193
}

.r-headers__links-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--register-button-text-color);
    padding: 1.2rem 2rem;
    text-align: center;
    border-radius: 0.8rem;
    transition: background .2s linear;
    background: var(--register-button-background);
}

.r-headers__links-sign:hover {
    background: radial-gradient(100% 100% at 50% 0%, #6e4f1f 0%, #E5BC72 86.3%)
}

@media (min-width: 555px) {
    .r-headers__links {
        width: auto;
        background-color: transparent;
        position: relative;
        margin-left: auto;
        padding: 0
    }

    .r-headers__links-log {
        padding: 1rem 2.2rem;
        font-size: 1.2rem
    }

    .r-headers__links-sign {
        padding: 1rem 2.2rem;
        font-size: 1.2rem
    }

    .r-headers__logo {
        margin-left: 2rem
    }
}

@media (min-width: 768px) {
    .r-headers {
        z-index: 4;
        height: 6.4rem
    }

    .r-headers__links-log {
        padding: 1.5rem 2.6rem;
        font-size: 1.6rem;
        margin-right: 0.8rem
    }

    .r-headers__links-sign {
        padding: 1.45rem 2rem;
        font-size: 1.6rem
    }

    .r-headers__logo {
        margin-left: 0.7rem
    }
}

.r-headers-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.9);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    cursor: pointer
}

.r-headers-overlay.r-is-active {
    opacity: 1;
    visibility: visible
}

@media (min-width: 1020px) {
    .r-headers__logo {
        margin-left: 3rem
    }

    .r-headers__menu {
        position: absolute;
        left: 1.8rem
    }

    .r-headers-overlay.r-is-active {
        opacity: 0;
        visibility: hidden
    }

    body.r-move .r-headers__logo {
        display: none
    }
}

@media (min-width: 1400px) {
    .r-headers {
        padding-left: 224px
    }

    .r-headers__logo {
        display: none
    }

    body.r-move .r-headers {
        padding-left: 56px
    }

    body.r-move .r-headers__logo {
        margin-left: 0
    }

    body.r-move .r-headers__logo {
        display: block
    }

    body.r-move .r-headers__wrapper.r-container {
        padding-left: 0
    }
}

.r-hero {

    background: #1e2128;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    width: 100%;
    max-width: 100vw;
}

.r-hero a {
    width: 100%;
}


.r-hero__span {
    display: block;
    font-weight: 500;
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
    z-index: 2
}

.r-hero__bonus {
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'PermanentMarker', sans-serif;
    font-size: 3.2rem;
    line-height: 36px;
    text-transform: uppercase;
    color: #dcff31;
    margin-bottom: 2.5rem;
    z-index: 2
}

.r-hero__bonus::before {
    content: '';
    position: absolute;
    top: -9px;
    right: -60px;
    left: auto;
    width: 400px;
    height: 111px;
    background: url("../images/img/black.svg") 50% no-repeat;
    z-index: -1
}

.r-hero__flex {
    display: flex;
    flex-direction: column
}

.r-hero__num {
    display: block;
    font-size: 2.4rem;
    color: white;
    display: flex;
    margin-left: auto
}

.r-hero__pink {
    display: block;
    color: #ff3286;
    margin-left: 0.8rem
}

.r-hero__sport {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    display: block;
    font-size: 1.4rem;
    color: white;
    line-height: 1.2;
    text-transform: none;
    text-align: right
}

.r-hero__link {
    max-width: 202px;
    width: 100%;
    font-weight: 500;
    color: #0f1419;
    background: #F5D193;
    border-radius: 8px;
    padding: 1.1rem;
    text-align: center;
    display: block;
    margin: 0 auto;
    z-index: 2;
    transition: background .2s linear
}

.r-hero__link:hover {
    background: #E5BC72
}

.r-hero__img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .r-hero {
        height: fit-content;
        padding: 0;
        align-items: flex-start;
        justify-content: flex-start
    }

    .r-hero::after {
        display: none
    }

    .r-hero__span {
        font-size: 3.2rem;
        line-height: 3.8rem;
        margin-bottom: 3rem
    }

    .r-hero__bonus {
        align-items: flex-start;
        margin-bottom: 3.5rem
    }

    .r-hero__bonus::before {
        display: none
    }

    .r-hero__bonus-span {
        position: relative;
        z-index: 2
    }

    .r-hero__bonus-span::before {
        content: '';
        position: absolute;
        top: 20px;
        left: -31px;
        width: 360px;
        height: 69px;
        background: url("img/grey.svg") no-repeat 0/contain;
        transform: translateY(-50%);
        z-index: -1
    }

    .r-hero__link {
        margin-left: 0;
        max-width: 180px
    }

    .r-hero__picture {
        width: 955px;
        right: -505px;
        position: absolute;
        top: 0;
        height: 100%
    }

    .r-hero__flex {
        margin-top: 2.5rem;
        align-items: flex-end
    }

    .r-hero__num {
        font-size: 2rem;
        margin-left: 0;
        line-height: 1.2
    }

    .r-hero__num::before {
        content: '';
        position: absolute;
        top: 84px;
        left: -40px;
        width: 360px;
        height: 76px;
        background: url("img/black-sm.svg") no-repeat 0/contain;
        z-index: -2;
        transform: translateY(-50%)
    }

    .r-hero__pink {
        font-size: 2.4rem
    }
}

@media (min-width: 1020px) {
    .r-hero {
        margin-bottom: 3rem
    }

    .r-hero__picture {
        right: -212px
    }
}

.r-categories[class] {
    margin-bottom: 3rem;
    padding-bottom: 0.7rem
}

.r-categories {
    display: flex;
    overflow-x: auto;
    -moz-column-gap: 0.8rem;
    column-gap: 0.8rem
}

.r-categories::-webkit-scrollbar {
    width: 10px;
    height: 5px
}

.r-categories::-webkit-scrollbar-thumb {
    background: #2d2f3cda
}

.r-categories::-webkit-scrollbar-track {
    background: transparent
}

.r-categories__item {
    flex-shrink: 0;
    position: relative;
    background: #2d2f3c;
    padding: 16px 140px 16px 24px;
    border-radius: 4px;
    min-height: 136px;
    overflow: hidden;
    width: calc(100vw - 1rem)
}

.r-categories__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.r-categories__info-title {
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    line-height: 1.2
}

.r-categories__info-text {
    width: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem
}

.r-categories__link {
    color: #F5D193;
    font-size: 1.2rem;
    display: block
}

.r-categories__link svg {
    margin-left: 0.2rem
}

.r-categories__link:hover {
    text-decoration: underline
}

.r-categories__img {
    position: absolute;
    right: -67px;
    top: 50%;
    transform: translateY(-50%)
}

@media (min-width: 420px) {
    .r-categories__item {
        width: calc(100vw - 8rem);
        padding-right: 15rem
    }

    .r-categories__img {
        right: -6rem
    }
}

@media (min-width: 500px) {
    .r-categories__img {
        right: 0
    }

    .r-categories__item {
        padding-right: 22rem
    }
}

@media (min-width: 678px) {
    .r-categories__item {
        width: calc(100vw - 20rem)
    }
}

@media (min-width: 800px) {
    .r-categories__item {
        width: calc(100% / 2 - 0.4rem);
        padding-right: 15rem
    }

    .r-categories__img {
        right: -6rem
    }
}

@media (min-width: 992px) {
    .r-categories__item {
        width: calc(100% / 3 - 0.6rem);
        padding-right: 11rem
    }

    .r-categories__img {
        right: -10rem
    }
}

@media (min-width: 1400px) {
    .r-categories {
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem
    }

    .r-categories__item {
        width: calc(100% / 4 - 1.2rem);
        padding-right: 8rem
    }

    .r-categories__img {
        right: -12rem
    }
}

@media (min-width: 1500px) {
    .r-categories__item {
        padding-right: 10.5rem
    }

    .r-categories__img {
        right: -10rem
    }
}

@media (min-width: 1800px) {
    .r-categories__item {
        padding-right: 15rem
    }

    .r-categories__img {
        right: -6rem
    }
}

.r-menu-list {
    margin-bottom: 3.2rem
}

.r-menu-list__list[class] {
    list-style: auto;
    padding: 1.9rem 1.9rem 2.6rem 4.9rem
}

.r-menu-list__list[class] li + li {
    margin-top: 1.3rem
}

.r-menu-list__list[class] li {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: color .2s linear
}

.r-menu-list__list[class] li:hover {
    color: #fff
}

.r-menu-list summary {
    border-radius: 4px;
    padding: 1.6rem;
    background: var(--faq-title-background);
    cursor: pointer;
    outline: none;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    -moz-column-gap: 1.2rem;
    column-gap: 1.2rem;
    justify-content: center
}

.r-menu-list summary img {
    transition: transform .2s linear;
    transform: rotate(-90deg)
}

.r-menu-list details[open] summary img {
    transform: rotate(90deg)
}

.r-menu-list details > div {
    background: var(--faq-body-background);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.r-menu-list__link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color .2s linear
}

.r-menu-list__link:hover {
    color: #fff
}

@media (min-width: 768px) {
    .r-menu-list__list {
        -moz-column-count: 2;
        column-count: 2;
        max-width: 990px;
        width: 100%
    }

    .r-menu-list__list[class] {
        margin: 0 auto
    }
}

@media (min-width: 992px) {
    .r-menu-list summary {
        padding: 1.5rem 2rem;
        font-size: 1.7rem
    }

    .r-menu-list summary img {
        width: 8px;
        height: auto
    }

    .r-menu-list__list[class] {
        padding-top: 2.5rem;
        padding-left: 7rem
    }
}

.r-c-grids[class] {
    margin-bottom: 3.5rem
}

.r-c-grids {
    display: grid;
    flex-wrap: wrap;
    -moz-column-gap: 1.6rem;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: minmax(200px, auto);
}

.r-c-grids__item {
    margin-bottom: 1.2rem;
    width: 100%;
}

.r-c-grids__img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    width: 100%;
}

.r-c-grids__img img {
    height: auto;
    width: 100%
}

.r-c-grids__img:hover .r-c-grids__item-overlay {
    opacity: 1
}

.r-c-grids__item-overlay {
    border-radius: 4px;
    background-color: rgba(10, 15, 25, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity .2s linear;
    border: 1px solid #323750;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.r-c-grids__span {
    font-size: 1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    margin-bottom: 0.5rem
}

.r-c-grids__provider {
    display: block;
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.6)
}

.r-c-grids__play {
    border: 1px solid rgba(140, 150, 170, 0.5);
    color: #fff;
    transition: all .2s linear;
    border-radius: 8px;
    font-size: 1.2rem;
    display: inline-block;
    padding: 1rem 1.1rem;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
    transition: border .3s linear;
    font-weight: bold
}

.r-c-grids__play:hover {
    border: 1px solid #F5D193
}

.r-c-grids__demo {
    font-size: 1.2rem;
    color: #F5D193;
    text-decoration: none;
    text-align: center;
    transition: color .2s linear
}

.r-c-grids__demo:hover {
    color: #E5BC72
}

.r-c-comment {
    margin-bottom: 6.9rem
}

.r-c-comment__item {
    position: relative;
    background-color: #2d2f3c;
    padding: 1.8rem 1.8rem 4rem;
    border-radius: 8px
}

.r-c-comment__item + .r-c-comment__item {
    margin-top: 6rem
}

.r-c-comment__info {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.r-c-comment__name {
    display: block;
    color: white;
    margin-bottom: 0.3rem;
    margin-right: 1.6rem;
    font-weight: 500
}

.r-c-comment__star {
    margin-bottom: 0.5rem;
    display: flex;
    height: 1.6rem;
    width: 8.9rem
}

.r-c-comment__star-color {
    height: 1.6rem;
    overflow-x: hidden;
    display: flex
}

.r-c-comment__btn {
    font-size: 1.6rem;
    position: absolute;
    border: none;
    padding: 0.8rem 2rem;
    right: 5%;
    bottom: -2rem
}

.r-c-comment__text {
    color: rgba(255, 255, 255, 0.6)
}

@media (min-width: 678px) {
    .r-c-comment__item {
        padding: 2rem 2rem 4.5rem 2rem
    }

    .r-c-comment__btn {
        font-size: 1.8rem
    }

    .r-c-comment__name {
        font-size: 1.7rem
    }

    .r-c-comment__info {
        margin-bottom: 0.7rem
    }
}

.r-c-frequent {
    margin-bottom: 5rem
}

.r-c-frequent summary {
    justify-content: space-between
}

.r-c-frequent details {
    margin-bottom: 2rem
}

.r-c-frequent details div {
    padding: 1.5rem 1.5rem 2rem
}

@media (min-width: 768px) {
    .r-c-frequent details div {
        padding: 2rem 2rem 2.3rem
    }
}

@media (min-width: 992px) {
    .r-c-frequent details summary {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }

    .r-c-frequent details div {
        padding: 1.8rem 2.5rem 2.5rem
    }
}

.r-footer {
    padding-bottom: 10rem;
    padding-top: 2.4rem;
    background-color: var(--main-bg-color, #071740);
}

.r-footer__top {
    margin-bottom: 2.8rem
}

.r-footer__top-items {
    margin-bottom: 1.8rem
}

.r-footer__top-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.r-footer__top-name {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    color: #fff
}

.r-footer__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -moz-column-gap: 2.8rem;
    column-gap: 2.8rem;
    justify-content: center
}

.r-footer__list[class] {
    margin-bottom: 2rem
}

.r-footer__list-item {
    margin-bottom: 0.8rem
}

.r-footer__list-link {
    color: color-mix(in srgb, var(--css_content_heading_color, var(--css_main_heading_color, #ffffff)) 60%, transparent);
    font-size: 1.2rem;
    transition: color .2s linear;
    display: block
}

.r-footer__list-link:hover {
    color: var(--css_content_heading_color, var(--css_main_heading_color, #ffffff))
}

.r-footer__copy {
    margin-bottom: 3rem
}

.r-footer__span {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem
}

.r-footer__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6)
}

.r-footer__text + .r-footer__text {
    margin-top: 0.8rem
}

.r-footer__age {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    justify-content: center
}

.r-footer__age-span {
    font-size: 1.6rem;
    margin-right: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
    padding: 0.5rem;
    border: 4px solid #2d2f3c;
    border-radius: 100%;
    width: 52px;
    height: 52px;
    flex-shrink: 0
}

.r-footer__age-text {
    color: rgba(255, 255, 255, 0.6);
    display: block;
    font-size: 1rem
}

.r-footer__social {
    margin-bottom: 3.5rem
}

.r-footer__social-list {
    display: flex;
    -moz-column-gap: 1.2rem;
    column-gap: 1.2rem;
    justify-content: center
}

.r-footer__social-item {
    width: calc(100% / 2 - 0.6rem);
    max-width: 184px;
    width: 100%
}

.r-footer__social-span {
    display: block;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.8rem;
    text-align: center
}

.r-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.2rem;
    color: white;
    border: 1px solid rgba(140, 150, 170, 0.5);
    border-radius: 8px;
    padding: 0.3rem 1rem;
    height: 4rem;
    transition: border .2s linear
}

.r-footer__social-link:hover {
    border: 1px solid var(--css_content_heading_color, var(--css_main_heading_color, #ffffff))
}

@media (min-width: 555px) {
    .r-footer {
        padding-bottom: 3rem
    }
}

@media (min-width: 678px) {
    .r-footer__links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        -moz-column-gap: 5rem;
        column-gap: 5rem
    }

    .r-footer__social {
        max-width: 360px;
        width: 100%
    }
}

@media (min-width: 992px) {
    .r-footer__container {
        display: flex;
        justify-content: space-between
    }

    .r-footer__top {
        width: 55%;
        flex-shrink: 0;
        margin-left: 7rem
    }

    .r-footer__top-items {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        -moz-column-gap: 4rem;
        column-gap: 4rem
    }

    .r-footer__top-item {
        align-items: start
    }

    .r-footer__list {
        flex-direction: column;
        align-items: flex-start
    }

    .r-footer__bottom {
        order: -1;
        display: flex;
        flex-direction: column
    }

    .r-footer__copy {
        order: -1;
        margin-bottom: 8rem
    }

    .r-footer__social-list {
        width: 100%;
        justify-content: flex-start
    }

    .r-footer__age {
        flex-shrink: 0;
        width: 219px
    }
}

@media (min-width: 1400px) {
    .r-footer {
        padding-top: 3.2rem
    }

    .r-footer__links {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        max-width: 290px;
        margin-left: 5rem
    }

    .r-footer__age {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 6rem
    }

    .r-footer__social {
        width: 100%
    }

    .r-footer__top {
        width: 59%;
        display: flex;
        margin-left: 5rem;
        justify-content: space-between;
        margin-bottom: 0
    }

    .r-footer__social-span {
        text-align: left
    }

    .r-footer__top-items {
        margin-bottom: 0
    }
}

@media (min-width: 1800px) {
    .r-footer__top {
        margin-left: 12rem
    }
}

p img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.r-reviews-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    list-style: none;
}

.r-reviews-item__title {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.r-reviews-list .r-stars-rating {
    margin-bottom: 20px;
}

.r-reviews-item__content {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
}



.r-footer-links-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.r-footer-links-list li {
    flex: 1;
    text-align: center;
}

.r-footer-links-list li a {
    color: #bfc7d5;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.r-footer-links-list li a:hover {
    color: #fff;
}


.r-content {
    padding: 0px 60px 60px;
    margin: 0 auto;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.7;
    font-size: 17px;  
}

.r-content h1,
.r-content h2,
.r-content h3,
.r-content h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 15px;
}

.r-content h1 {
    font-size: 32px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 8px;
}

.r-content h2 {
    font-size: 26px;
    border-left: 4px solid #4CAF50;
    padding-left: 12px;
    margin-top: 50px;
}

.r-content h3 {
    font-size: 22px;
    margin-top: 35px;
}

.r-content p {
    margin-bottom: 18px;
}

.r-content ul,
.r-content ol {
    margin: 15px 0 20px 25px;
    padding-left: 10px;
    line-height: 1.7;
}

.r-content li {
    margin-bottom: 8px;
}

.r-content strong {
    font-weight: 700;
}

.r-content a {
    text-decoration: none;
}

.r-content a:hover {
    text-decoration: underline;
}

.r-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.r-content th,
.r-content td {
    padding: 12px;
    text-align: left;
}

.r-content th {
    font-weight: 600;
}

@media (max-width: 768px) {
    .r-content {
        padding: 15px;
        font-size: 16px;
    }
    .r-content h1 {
        font-size: 26px;
    }
    .r-content h2 {
        font-size: 22px;
    }
    .r-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 440px) {
    .r-content {
        padding: 8px;
        font-size: 16px;
    }
    .r-content h1 {
        font-size: 26px;
    }
    .r-content h2 {
        font-size: 22px;
    }
    .r-content h3 {
        font-size: 19px;
    }
}

.r-big-confirm-btn {
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    display: block;
    width: 200px;
}

.r-show-more-button, .r-play-now-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    align-items: center;
}

.r-play-now-button {
    margin-top: 0;
}

.r-show-more-button:hover, .r-play-now-button:hover {
    background-color: #45a049;
}

.r-show-more-button:active, .r-play-now-button:active {
    background-color: #3e8e41;
}

.r-providers__section {
    display: block;
}

.r-image-slider-section {
  --gap: 16px;
  --max-per-view: 4;
  --img-w: 300px;
  --img-h: 200px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  margin-top: 56px;
  margin-bottom: 56px;
}
.r-slider {
  position: relative;
}
.r-slider__viewport {
  overflow: hidden;
  outline: none;
}
.r-slider__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
}
.r-slider__track::-webkit-scrollbar {
  display: none;
}
.r-slide {
    flex-shrink: 0;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #c3c3c30a;}
.r-slide img {
    width: var(--img-w);
    height: var(--img-h);
    border-radius: 8px;
    display: block;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    padding: 12px;
}

.r-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.r-slider__btn:hover {
  background: rgba(0, 0, 0, 0.75);
}
.r-slider__btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.r-slider__btn--prev {
  left: 8px;
}
.r-slider__btn--next {
  right: 8px;
}
.r-slider__dots {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.r-slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cfd4dc;
  cursor: pointer;
}
.r-slider__dots button[aria-selected="true"] {
  width: 22px;
  border-radius: 999px;
  background: #111827;
}

.r-slider::before,
.r-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 1;
}
.r-slider::before {
  left: 0;
}
.r-slider::after {
  right: 0;
}
@media (max-width: 599px) {
  .r-image-slider-section {
    --max-per-view: 1;
  }
}
@media (min-width: 600px) and (max-width: 991px) {
  .r-image-slider-section {
    --max-per-view: 2;
  }
}
@media (min-width: 992px) {
  .r-image-slider-section {
    --max-per-view: 4;
    max-width: 100%;
  }
}

.r-updated-block__box {
    padding: 16px;
}




/* Data-template fixes */
.r-headers__links a,
.r-headers__links-log,
.r-headers__links-sign {
    color: var(--h1-2-3-4-color, #fff);
}

.r-headers__links a:hover,
.r-headers__links-log:hover,
.r-headers__links-sign:hover {
    color: #fff;
}

.r-aside__nav-select {
    width: 100%;
    max-width: 220px;
    padding: 10px 14px;
    border: 1px solid var(--h1-2-3-4-color, #fff);
    border-radius: 8px;
    background: var(--bg-color, #111);
    color: var(--h1-2-3-4-color, #fff);
    font: inherit;
    cursor: pointer;
}

.r-aside__nav-select option {
    color: #111;
    background: #fff;
}


/* Aside menu, language selector and footer restore fixes */
.r-aside__nav--language {
    width: 100%;
}

.r-menu__list--language {
    margin-top: 12px;
}

.r-menu__list--language li {
    width: 100%;
}

.r-aside__nav-select.r-menu__list-link,
.r-aside__nav-select {
    display: block;
    width: 100%;
    max-width: none;
    padding-right: 44px;
    appearance: auto;
    -webkit-appearance: menulist;
    color: var(--h1-2-3-4-color, #fff);
    background-color: transparent;
}

.r-aside__nav-select option {
    color: #111;
    background: #fff;
}

.r-headers__links a,
.r-headers__links-log,
.r-headers__links-sign {
    color: var(--h1-2-3-4-color, #fff);
}


/* Final requested fixes */
.r-slide {
    background-color: transparent;
}

.r-slider::before,
.r-slider::after {
    background: none;
}

.r-menu__list-link {
    font-size: 1.5rem;
}

.r-aside__nav-select,
.r-aside__nav-select.r-menu__list-link {
    font-size: 1.5rem;
    border: 1px solid #2d2f3c;
    padding-right: 3rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position: calc(100% - 1.25rem) 50%, calc(100% - 0.9rem) 50%;
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
    background-repeat: no-repeat;
}


/* Final generator fixes */
.r-slide {
    background-color: #0000000a;
}

footer, .r-footer, .r-footer * {
    color: var(--h1-2-3-4-color, #fff);
}

a, button, [click], .r-headers__links-log, .r-headers__links-sign, .r-menu__list-link, .r-aside__nav-select {
    cursor: pointer;
}

.r-menu__list-link {
    font-size: 1.5rem;
}

.r-aside__nav-select {
    font-size: 1.5rem;
    border: 1px solid #2d2f3c;
    padding-right: 42px;
    background-position: right 14px center;
}

/* Final generated-site fixes */
.r-slide { background-color: #0000000a; }
.r-slider::after, .r-slider::before { background: #0000000a; }
footer, footer * { color: var(--h1-2-3-4-color, #fff); }
a, button, [click], [onclick], .r-menu__list-link, .r-headers__links-log, .r-headers__links-sign { cursor: pointer; }
.r-menu__list-link { font-size: 1.5rem; }
.r-aside__nav-select { font-size: 1.5rem; border: 1px solid #2d2f3c; padding-right: 2.5rem; cursor: pointer; }


/* ===== Forced header buttons + site footer + live chat fixes ===== */
.r-headers__links-log,
.r-headers__links a.r-headers__links-log {
    height: auto !important;
    min-height: 0 !important;
    padding: 10px 30px !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    background: transparent !important;
    color: #F5D193 !important;
    border: 1.5px solid #F5D193 !important;
    border-radius: 8px !important;
    transition: background .2s ease, color .2s ease, border-color .2s ease !important;
    font-weight: 600 !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.r-headers__links-log:hover,
.r-headers__links a.r-headers__links-log:hover {
    background: rgba(245, 209, 147, 0.12) !important;
    color: #fff !important;
    border-color: #F5D193 !important;
}
.r-headers__links-sign,
.r-headers__links a.r-headers__links-sign {
    height: auto !important;
    min-height: 0 !important;
    padding: 10px 30px !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    color: #071740 !important;
    font-weight: 700 !important;
    background: radial-gradient(100% 100% at 50% 0%, #836028 0%, #F5D193 86.3%) !important;
    border: 1.5px solid transparent !important;
    border-radius: 8px !important;
    transition: filter .2s ease, transform .2s ease !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.r-headers__links-sign:hover,
.r-headers__links a.r-headers__links-sign:hover {
    filter: brightness(1.08) !important;
    background: radial-gradient(100% 100% at 50% 0%, #836028 0%, #F5D193 86.3%) !important;
    color: #071740 !important;
}
@media (min-width: 555px) {
    .r-headers__links-log,
    .r-headers__links-sign {
        padding: 10px 30px !important;
        font-size: 1.3rem !important;
    }
}
@media (min-width: 768px) {
    .r-headers__links-log,
    .r-headers__links-sign {
        padding: 10px 30px !important;
        font-size: 1.4rem !important;
    }
    .r-headers__links-log { margin-right: 0.8rem !important; }
}

.r-footer.r-site-footer {
    padding: 3rem 0 !important;
    background-color: var(--css_main_background_color, var(--footer-background, #02153B)) !important;
}
.r-footer.r-site-footer .r-site-footer__inner {
    text-align: center !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    padding: 0 1.6rem !important;
}
.r-footer.r-site-footer .r-site-footer__rights {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: var(--color-text-footer-copyright, #fff) !important;
    opacity: .85 !important;
    margin: 0 0 1.2rem !important;
}
.r-footer.r-site-footer .r-site-footer__meta,
.r-footer.r-site-footer .r-site-footer__support {
    font-size: 1.2rem !important;
    color: var(--color-text-footer-copyright, #fff) !important;
    margin: 0 0 .8rem !important;
}
.r-footer.r-site-footer .r-site-footer__support { margin-bottom: 0 !important; }
.r-footer.r-site-footer .r-site-footer__sep { margin: 0 .6rem !important; opacity: .5 !important; }
.r-footer.r-site-footer .r-site-footer__email { color: #F5D193 !important; text-decoration: none !important; border-bottom: none !important; }
.r-footer.r-site-footer .r-site-footer__email:hover { color: #fff !important; }
.r-footer.r-site-footer .r-site-footer__site { font-weight: 500 !important; }

.r-lc-widget { position: fixed !important; right: 20px !important; bottom: 20px !important; z-index: 99999 !important; display: block !important; visibility: visible !important; opacity: 1 !important; }
.r-lc-widget .r-lc-panel { display: none; }
.r-lc-widget.r-is-open .r-lc-panel { display: flex !important; background-color: var(--css_main_background_color, #071740) !important; }
.r-lc-widget .r-lc-fab { display: flex !important; visibility: visible !important; opacity: 1 !important; }


/* === Brand CSS priority layer: uses variables from css_file / assets/css/var.css === */
html,
body {
    background: var(--css_main_background_color, var(--main-bg-color, #1a1720)) !important;
    color: var(--css_main_text_color, var(--main-text-color, #c8c5ce)) !important;
}

body,
.r-main,
.r-content-section,
.r-content {
    background-color: var(--css_main_background_color, var(--main-bg-color, #1a1720)) !important;
    color: var(--css_main_text_color, var(--main-text-color, #c8c5ce)) !important;
}

h1, h2, h3, h4, h5, h6,
.r-content h1, .r-content h2, .r-content h3 {
    color: var(--css_main_heading_color, var(--h1-2-3-4-color, #ffffff)) !important;
}

.swal2-popup .swal2-title,
div:where(.swal2-container) h2:where(.swal2-title) {
    color: #000 !important;
}

a,
.r-content a {
    color: var(--css_main_link_color, #e81cff);
}

.r-headers,
.r-headers.r-js-header,
.r-headers__wrapper,
.r-aside,
.r-js-aside {
    background-color: var(--css_header_background_color, var(--header-background, #221d26)) !important;
}

.r-headers__links {
    background-color: var(--css_header_background_color, var(--header-background, #221d26)) !important;
}

@media (min-width: 555px) {
    .r-headers__links {
        background-color: transparent !important;
    }
}

.r-headers__links-log,
.r-headers__links a.r-headers__links-log {
    height: auto !important;
    padding: 10px 30px !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    color: var(--css_header_primary_second_button_text_color, var(--login-button-text-color, #e81cff)) !important;
    background: var(--css_header_primary_second_button_background_color, var(--login-button-background, #37294a)) !important;
    border: 1.5px solid var(--css_header_primary_second_button_text_color, var(--login-button-text-color, #e81cff)) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset !important;
    transition: filter .2s ease, transform .2s ease, border-color .2s ease !important;
}

.r-headers__links-log:hover,
.r-headers__links a.r-headers__links-log:hover {
    filter: brightness(1.12) !important;
    color: var(--css_header_primary_second_button_text_color, var(--login-button-text-color, #e81cff)) !important;
    background: var(--css_header_primary_second_button_background_color, var(--login-button-background, #37294a)) !important;
    border-color: var(--css_header_primary_button_background_color, #e81cff) !important;
}

.r-headers__links-sign,
.r-headers__links a.r-headers__links-sign,
.r-play-now-button,
.r-show-more-button {
    height: auto !important;
    padding: 10px 30px !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    color: var(--css_header_primary_button_text_color, var(--register-button-text-color, #ffffff)) !important;
    background: var(--css_header_primary_button_background_color, var(--register-button-background, #e81cff)) !important;
    border: 1.5px solid var(--css_header_primary_button_background_color, #e81cff) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--css_header_primary_button_background_color, #e81cff) 35%, transparent) !important;
    transition: filter .2s ease, transform .2s ease, box-shadow .2s ease !important;
}

.r-headers__links-sign:hover,
.r-headers__links a.r-headers__links-sign:hover,
.r-play-now-button:hover,
.r-show-more-button:hover {
    filter: brightness(1.1) !important;
    color: var(--css_header_primary_button_text_color, var(--register-button-text-color, #ffffff)) !important;
    background: var(--css_header_primary_button_background_color, var(--register-button-background, #e81cff)) !important;
}

.r-content-section,
.r-content {
    color: var(--css_content_text_color, var(--css_main_text_color, #c8c5ce)) !important;
}

.r-content-section h1,
.r-content-section h2,
.r-content h1,
.r-content h2 {
    color: var(--css_content_heading_color, var(--css_main_heading_color, #ffffff)) !important;
}

.r-slide {
    background-color: #c3c3c30a !important;
    border: 1px solid var(--css_content_table_border_color, #37294a) !important;
    border-radius: 12px !important;
}

.r-slider__btn {
    background: var(--css_header_primary_second_button_background_color, #37294a) !important;
    color: var(--css_header_primary_second_button_text_color, #e81cff) !important;
    border: 1px solid var(--css_header_primary_second_button_text_color, #e81cff) !important;
}

.r-footer,
.r-footer.r-site-footer,
.r-site-footer {
    padding: 3rem 0 !important;
    background-color: var(--css_content_background_color, var(--css_main_background_color, #221d26)) !important;
    color: var(--css_content_text_color, var(--css_main_text_color, #c8c5ce)) !important;
}

.r-footer.r-site-footer .r-site-footer__inner,
.r-site-footer__inner {
    text-align: center !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    padding: 0 1.6rem !important;
}

.r-footer.r-site-footer .r-site-footer__rights,
.r-site-footer__rights,
.r-footer.r-site-footer .r-site-footer__meta,
.r-footer.r-site-footer .r-site-footer__support,
.r-site-footer__meta,
.r-site-footer__support {
    color: var(--css_content_text_color, var(--css_main_text_color, #c8c5ce)) !important;
}

.r-footer.r-site-footer .r-site-footer__email,
.r-site-footer__email {
    color: var(--css_content_link_color, var(--css_main_link_color, #e81cff)) !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.r-footer.r-site-footer .r-site-footer__email:hover,
.r-site-footer__email:hover {
    color: var(--css_content_heading_color, #ffffff) !important;
}

.r-lc-widget {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    z-index: 99999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.r-lc-widget .r-lc-panel {
    display: none;
    background-color: var(--css_content_background_color, var(--css_main_background_color, #221d26)) !important;
    color: var(--css_content_text_color, var(--css_main_text_color, #c8c5ce)) !important;
    border: 1px solid var(--css_content_table_border_color, #37294a) !important;
}

.r-lc-widget.r-is-open .r-lc-panel {
    display: flex !important;
}

.r-lc-widget .r-lc-fab,
.r-lc-panel__head,
.r-lc-send {
    background: var(--css_header_primary_button_background_color, #e81cff) !important;
    color: var(--css_header_primary_button_text_color, #ffffff) !important;
}

.r-lc-close,
.r-lc-msg__bubble {
    background: var(--css_header_primary_second_button_background_color, #37294a) !important;
    color: var(--css_main_text_color, #c8c5ce) !important;
    border-color: var(--css_content_table_border_color, #37294a) !important;
}
.r-lc-input,
.r-lc-textarea {
    color: var(--css_main_text_color, #c8c5ce) !important;
    border-color: var(--css_content_table_border_color, #37294a) !important;
}

.r-lc-msg--bot .r-lc-msg__bubble {
    background: var(--css_content_table_header_background_color, #2f2735) !important;
}

@media (min-width: 555px) {
    .r-headers__links-log,
    .r-headers__links-sign {
        padding: 10px 30px !important;
        font-size: 1.3rem !important;
    }
}

@media (min-width: 768px) {
    .r-headers__links-log,
    .r-headers__links-sign {
        padding: 10px 30px !important;
        font-size: 1.4rem !important;
    }
    .r-headers__links-log { margin-right: 0.8rem !important; }
}


/* === Contrast safety layer: aside/menu text always follows header link color ===
   Prevents invisible text when --css_header_background_color is light.
   All selectors use !important to override any earlier hardcoded color rules. */

.r-aside .r-menu__category-item summary span,
.r-aside .r-menu__category-item summary .r-menu__span,
.r-aside .r-menu__list-link,
.r-aside .r-aside__logo p,
.r-aside .r-aside__span {
    color: var(--css_header_link_color, #fff) !important;
}

.r-aside .r-menu__subcategory-link {
    color: var(--css_header_link_color, #fff) !important;
    opacity: 0.65 !important;
}

.r-aside .r-menu__subcategory-link:hover {
    color: var(--css_header_primary_button_background_color, #e81cff) !important;
    opacity: 1 !important;
}

.r-aside .r-menu__category-item summary:hover span,
.r-aside .r-menu__category-item summary:hover .r-menu__span,
.r-aside .r-menu__list-link:hover {
    color: var(--css_header_link_color, #fff) !important;
    opacity: 1 !important;
}

.r-aside .r-menu__category-item summary:hover,
.r-aside .r-menu__list-link:hover {
    background: color-mix(in srgb, var(--css_header_primary_button_background_color, #e81cff) 15%, var(--css_header_background_color, #323746)) !important;
}

.r-aside .r-menu__close {
    background-color: var(--css_header_background_color, #221d26) !important;
    border-color: color-mix(in srgb, var(--css_header_link_color, #fff) 30%, transparent) !important;
    color: var(--css_header_link_color, #fff) !important;
}

.r-aside .r-menu__category-item details[open] {
    background: transparent !important;
}

/* Language select: explicit background ensures link color stays readable */
.r-aside .r-aside__nav-select,
.r-aside .r-aside__nav-select.r-menu__list-link {
    color: var(--css_header_link_color, #fff) !important;
    background-color: var(--css_header_background_color, #221d26) !important;
    border-color: color-mix(in srgb, var(--css_header_link_color, #fff) 30%, transparent) !important;
}

/* Header hamburger icon follows header link color */
.r-headers__menu svg path {
    fill: var(--css_header_link_color, #fff) !important;
}

/* Live-chat header icon follows primary button text color */
.r-lc-panel__head svg path,
.r-lc-agent__avatar svg path {
    fill: var(--css_header_primary_button_text_color, #fff) !important;
}

/* lc-widget: text inputs and select in brand secondary palette */
.r-lc-widget input:not([type="submit"]):not([type="button"]):not([type="reset"]),
.r-lc-widget textarea,
.r-lc-widget select {
    background: transparent !important;
    color: var(--css_main_text_color, #c8c5ce) !important;
    border: 1px solid color-mix(in srgb, var(--css_header_link_color, #fff) 18%, transparent) !important;
    border-radius: 6px !important;
}

/* lc-widget: submit / send buttons → primary accent */
.r-lc-widget button[type="submit"],
.r-lc-widget input[type="submit"],
.r-lc-widget input[type="button"] {
    background: var(--css_header_primary_button_background_color, #e81cff) !important;
    color: var(--css_header_primary_button_text_color, #fff) !important;
    border-color: transparent !important;
}

/* lc-widget: secondary buttons */
.r-lc-widget button:not([type="submit"]):not(.r-lc-fab):not(.r-lc-send) {
    background: var(--css_header_primary_second_button_background_color, #37294a) !important;
    color: var(--css_main_text_color, #c8c5ce) !important;
    border: 1px solid color-mix(in srgb, var(--css_header_link_color, #fff) 18%, transparent) !important;
}

/* Aside: use header background directly; border-right creates separator on both dark and light themes */
.r-aside,
.r-js-aside {
    background-color: var(--css_header_background_color, #221d26) !important;
    border-right: 1px solid color-mix(in srgb, var(--css_header_link_color, #fff) 12%, transparent) !important;
}

/* Footer: bg comes from --css_content_background_color rule above (white for light themes, dark card for dark) */
.r-footer,
.r-footer.r-site-footer,
.r-site-footer {
    border-top: 1px solid color-mix(in srgb, var(--css_content_heading_color, #fff) 12%, transparent) !important;
}

/* Language select: restore custom gradient arrow on hover (background shorthand resets background-image) */
.r-aside__nav-select:hover,
.r-aside__nav-select.r-menu__list-link:hover {
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%) !important;
    background-position: calc(100% - 1.25rem) 50%, calc(100% - 0.9rem) 50% !important;
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem !important;
    background-repeat: no-repeat !important;
}

/* Content: card elevated from main bg — white on light themes, dark card on dark themes */
.r-content {
    background-color: var(--css_content_background_color, #ffffff) !important;
    padding: 30px !important;
    border-radius: 8px !important;
}
.r-content > h1:first-child,
.r-content > h2:first-child,
.r-content > h3:first-child,
.r-content > p:first-child {
    margin-top: 0 !important;
}
.r-content h2 {
    border-left: 3px solid var(--css_content_link_color, var(--css_content_primary_button_background_color, #e81cff)) !important;
    padding-left: 12px !important;
}
@media (max-width: 768px) {
    .r-content {
        padding: 15px !important;
        border-radius: 4px !important;
    }
}
@media (max-width: 440px) {
    .r-content {
        padding: 8px !important;
        border-radius: 2px !important;
    }
}
