html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    margin: 0;
    padding-bottom: 0;
    transition: padding-bottom 0.24s ease;
    background-color: var(--color-background);
    color: #FFFFFF;
    position: relative;
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body.is-scroll-offer {
    padding-bottom: 78px;
}

@media (min-width: 0px) and (max-width: 575px) {
    .container {
        width: unset;
    }
}

p,
i,
b,
a,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
    color: #FFFFFF;
    font-family: "Rubik", sans-serif;
    margin-bottom: 0;
}

h1 {
    margin-top: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 38.73px;
}

h2 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.w-30 {
    width: 30%;
}

.w-100 {
    width: 100%;
}

.hidden {
    display: none;
}

.d-flex {
    display: flex;
}

.text-center {
    text-align: center;
}

img.img-float-left {
    float: left;
    width: 300px;
    height: auto;
    margin-right: 18px;
}

.content {
    width: 100%;
}

.topbar {
    background: var(--color-background);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 90;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 24px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

@media (max-width: 900px) {
    .topbar {
        z-index: 200;
        padding: 12px 16px 8px;
    }
}

.topbar .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1392px;
    min-height: 50px;
}

@media (max-width: 900px) {
    .topbar .header {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }
}

.topbar .header .header-logo {
    display: flex;
    align-items: center;
    width: 139px;
    height: 50px;
    overflow: hidden;
    flex: 0 0 139px;
    text-decoration: none;
}

@media (max-width: 900px) {
    .topbar .header .header-logo {
        width: 98px;
        height: 42px;
        flex-basis: 98px;
    }
}

.topbar .header .header-logo img {
    align-self: flex-start;
    max-width: none;
    display: block;
}

.topbar .header .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    min-width: 0;
    max-width: 1110px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease, max-width 0.28s ease;
}

@media (max-width: 1180px) {
    .topbar .header .header-actions {
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .topbar .header .header-actions {
        display: none;
    }
}

.topbar .header .header-actions.is-hidden {
    max-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
}

.topbar .header .hero-nav {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: var(--color-background);
    scrollbar-color: var(--color-surface-3) transparent;
    scrollbar-width: thin;
    will-change: transform, opacity;
}

.topbar .header .hero-nav.is-nav-moving {
    pointer-events: none;
}

.topbar .header .hero-nav::-webkit-scrollbar {
    height: 4px;
}

.topbar .header .hero-nav::-webkit-scrollbar-track {
    background: transparent;
}

.topbar .header .hero-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--color-surface-3);
}

.topbar .header .hero-nav a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
    min-height: 32px;
    padding: 6px 8px 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.topbar .header .hero-nav a span {
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
}

.topbar .header .hero-nav a.active {
    background: var(--color-surface-1);
}

.topbar .header .hero-nav a.active span {
    color: #FFFFFF;
}

@media (max-width: 900px) {
    .topbar .header .hero-nav {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }

    .topbar .header .hero-nav a span {
        font-size: 14px;
    }
}

.topbar .header .header-bonus,
.topbar .header .header-promocode,
.topbar .header .header-signup {
    height: 48px;
    min-height: 48px;
    border-radius: 12px;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.topbar .header .header-bonus,
.topbar .header .header-signup {
    text-decoration: none;
}

.topbar .header .header-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 6px 0 0;
    background: var(--color-surface-2);
    color: #FFFFFF;
}

@media (max-width: 1180px) {
    .topbar .header .header-bonus {
        max-width: 430px;
    }
}

@media (max-width: 760px) {
    .topbar .header .header-bonus {
        display: none;
    }
}

.topbar .header .header-bonus .header-bonus-image {
    align-self: stretch;
    width: 98px;
    height: 48px;
    background: #191235;
    flex: 0 0 98px;
    overflow: hidden;
}

.topbar .header .header-bonus .header-bonus-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.topbar .header .header-bonus .header-bonus-text {
    width: 260px;
    padding: 0 10px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1180px) {
    .topbar .header .header-bonus .header-bonus-text {
        width: auto;
        max-width: 220px;
    }
}

.topbar .header .header-bonus .header-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    align-self: stretch;
    margin: 6px 0;
    padding: 10px 16px 12px 8px;
    border-radius: 8px;
    background: linear-gradient(90deg, #32d16d 0%, #22b26c 100%);
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

.topbar .header .header-bonus .header-claim img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.topbar .header .header-promocode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 6px 6px 6px 16px;
    border: 1px solid var(--color-surface-3);
    background: var(--color-surface-1);
    color: #FFFFFF;
}

@media (max-width: 560px) {
    .topbar .header .header-promocode {
        display: none;
    }
}

.topbar .header .header-promocode span {
    padding: 2px 4px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.topbar .header .header-promocode button {
    align-self: stretch;
    border: 0;
    border-radius: 8px;
    padding: 10px 16px 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.topbar .header .header-signup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 201px;
    padding: 8px 16px 8px 8px;
    color: #FFFFFF;
    background: radial-gradient(84.12% 95.71% at 15.88% 50%, #E28419 0%, #FFE38E 100%);
    box-shadow: 0 12px 24px rgba(226, 132, 25, 0.22);
}

@media (max-width: 900px) {
    .topbar .header .header-signup {
        min-width: 48px;
        padding: 8px;
    }
}

.topbar .header .header-signup img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.topbar .header .header-signup span {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .topbar .header .header-signup span {
        display: none;
    }
}

.topbar .header .mobile-menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border: 0;
    border-radius: 8px;
    background: var(--color-surface-1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.topbar .header .mobile-menu-toggle span {
    width: 12px;
    height: 1px;
    border-radius: 999px;
    background: #FFFFFF;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar .header .mobile-menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.topbar .header .mobile-menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 900px) {
    .topbar .header .mobile-menu-toggle {
        display: flex;
    }
}

.topbar .header .mobile-header-actions {
    display: none;
    width: 100%;
    gap: 8px;
}

@media (max-width: 900px) {
    .topbar .header .mobile-header-actions {
        display: flex;
    }
}

.topbar>.hero-nav {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1392px;
    margin-top: 8px;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: var(--color-background);
    scrollbar-color: var(--color-surface-3) transparent;
    scrollbar-width: thin;
    will-change: transform, opacity;
}

.topbar>.hero-nav.is-nav-moving {
    pointer-events: none;
}

.topbar>.hero-nav::-webkit-scrollbar {
    height: 4px;
}

.topbar>.hero-nav::-webkit-scrollbar-track {
    background: transparent;
}

.topbar>.hero-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--color-surface-3);
}

.topbar>.hero-nav a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
    min-height: 32px;
    padding: 6px 8px 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.topbar>.hero-nav a span {
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
}

.topbar>.hero-nav a.active {
    background: var(--color-surface-1);
}

.topbar>.hero-nav a.active span {
    color: #FFFFFF;
}

@media (max-width: 900px) {
    .topbar>.hero-nav {
        display: none;
    }
}

.topbar .mobile-promo-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 0;
    min-width: 0;
    height: 42px;
    box-sizing: border-box;
    padding: 4px 6px 4px 8px;
    border: 1px solid var(--color-surface-3);
    border-radius: 12px;
    background: var(--color-surface-1);
    font-family: "IBM Plex Sans", sans-serif;
}

.topbar .mobile-promo-compact div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex: 1;
    line-height: 1;
}

.topbar .mobile-promo-compact span {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-grey);
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.topbar .mobile-promo-compact strong {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.topbar .mobile-promo-compact button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    padding: 2px;
    border: 0;
    border-radius: 8px;
    background: var(--color-primary);
    cursor: pointer;
}

.topbar .mobile-promo-compact button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.topbar .mobile-download-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    height: 42px;
    max-height: 44px;
    min-height: 42px;
    box-sizing: border-box;
    padding: 10px 8px 8px;
    border-radius: 12px;
    background: linear-gradient(90deg, #32d16d 0%, #22b26c 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-family: "IBM Plex Sans", sans-serif;
}

.topbar .mobile-download-button img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.topbar .mobile-download-button span {
    flex: 1;
    min-width: 0;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.topbar .mobile-download-button small {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 4px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.5);
    font-size: 8px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar .mobile-menu-panel {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 52px;
    bottom: 0;
    z-index: 195;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 8px 16px 16px;
    background: var(--color-background);
    font-family: "IBM Plex Sans", sans-serif;
}

.topbar .mobile-menu-panel[hidden] {
    display: none !important;
}

@media (max-width: 900px) {
    .topbar .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

.topbar .mobile-menu-panel .mobile-download-button-wide {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: column;
    gap: 0;
}

.topbar .mobile-menu-panel .mobile-download-button-wide .mobile-download-row {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    color: #FFFFFF;
}

.topbar .mobile-menu-panel .mobile-download-button-wide .mobile-download-row img {
    width: 24px;
    height: 24px;
}

.topbar .mobile-menu-panel .mobile-download-button-wide .mobile-download-row span {
    flex: 1;
    text-align: center;
}

.topbar .mobile-menu-panel .mobile-download-button-wide .mobile-download-meta {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.topbar .mobile-menu-panel .mobile-download-button-wide .mobile-download-meta small {
    position: static;
    flex: 1;
}

.topbar .mobile-menu-panel .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px 0;
    border-radius: 12px;
    background: var(--color-background);
}

.topbar .mobile-menu-panel .mobile-menu-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 32px;
    box-sizing: border-box;
    padding: 4px 32px 4px 8px;
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
}

.topbar .mobile-menu-panel .mobile-menu-nav a span {
    overflow: hidden;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar .mobile-menu-panel .mobile-menu-nav a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    transform: translateY(-50%) rotate(45deg);
}

.topbar .mobile-menu-panel .mobile-menu-nav a.active {
    background: var(--color-surface-1);
}

.topbar .mobile-menu-panel .mobile-menu-nav a.active span {
    font-weight: 500;
}

.topbar .mobile-menu-panel .mobile-promo-panel-code {
    flex: 0 0 auto;
    width: 100%;
    min-height: 42px;
    margin-top: auto;
}

.topbar .mobile-menu-panel .mobile-menu-copyright {
    width: 100%;
    color: var(--color-grey);
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
}

.topbar .header-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    width: 100%;
    max-width: 1392px;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.topbar .header-breadcrumbs a,
.topbar .header-breadcrumbs span {
    color: var(--color-grey);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
}

.topbar .header-breadcrumbs span:last-child {
    color: #FFFFFF;
    font-weight: 500;
}

@media (max-width: 560px) {
    .topbar .header-breadcrumbs {
        display: none;
    }
}

.topbar .content-list {
    display: flex;
    width: 100%;
    max-width: 1392px;
    margin-top: 8px;
    border-radius: 8px;
    background: var(--color-surface-1);
    align-items: center;
}

@media (max-width: 750px) {
    .topbar .content-list .content-list-label {
        display: none;
    }
}

.topbar .content-list .content-list-label p {
    margin: 8px 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.topbar .content-list .content-list-items {
    margin: 8px 16px;
    position: relative;
    display: flex;
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 5px;
}

.topbar .content-list .content-list-items ul {
    list-style: none;
    margin: 0 0 0 -43px;
}

.topbar .content-list .content-list-items ul li {
    display: inline-block;
}

.topbar .content-list .content-list-items ul li a {
    border-radius: 6px;
    display: flex;
    line-height: 140%;
    padding: 8px 10px;
    background: var(--color-surface-3);
    margin-left: 4px;
    margin-right: 4px;
    text-decoration: none;
}

@media (max-width: 750px) {
    .topbar .content-list .content-list-items ul li a {
        font-size: 12px;
    }
}

.topbar .content-list .content-list-items ul li a:hover {
    border: 1px solid var(--color-primary-solid);
    padding: 7px 9px;
}

.topbar .content-list .content-list-items ul li a.active {
    border: 1px solid var(--color-primary-solid);
    padding: 7px 9px;
}

.topbar .content-list .content-list-items::-webkit-scrollbar {
    height: 2px;
}

.topbar .content-list .content-list-items::-webkit-scrollbar:hover {
    height: 8px;
}

.topbar .content-list .content-list-items::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
}

body.is-mobile-menu-open {
    overflow: hidden;
}

body.is-mobile-menu-open .topbar .mobile-header-actions {
    display: none;
}

.heading-item {
    position: absolute;
    z-index: -1;
    padding-top: 140px;
    margin-top: -140px;
}

.breadcrumbs {
    width: 100%;
    color: #FFFFFF;
    margin-bottom: 20px;
}

@media (max-width: 750px) {
    .breadcrumbs {
        margin-bottom: 0;
    }
}

.breadcrumbs a {
    color: var(--color-grey);
    text-decoration: none;
}

.breadcrumbs .arrow {
    margin-bottom: -5px;
}

.btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #FFFFFF;
    margin-right: 12px;
    text-decoration: none;
    line-height: 25.5px;
}

@media (max-width: 750px) {
    .btn {
        padding: 1px 16px;
        border-radius: 6px;
    }
}

.container {
    z-index: 50;
    position: relative;
    padding: 107px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container.has-header-breadcrumbs {
    padding-top: 95px;
}

.container.has-header-nav {
    padding-top: 149px;
}

@media (max-width: 900px) {
    .container {
        padding-top: 118px;
    }

    .container.has-header-breadcrumbs {
        padding-top: 142px;
    }

    .container.has-header-nav {
        padding-top: 142px;
    }
}

@media (max-width: 750px) {
    .container {
        display: block;
        padding: 118px 15px 15px 15px;
    }

    .container.has-header-breadcrumbs {
        padding-top: 142px;
    }

    .container.has-header-nav {
        padding-top: 142px;
    }
}

@media (max-width: 560px) {
    .container.has-header-breadcrumbs {
        padding-top: 118px;
    }

    .container.has-header-nav {
        padding-top: 118px;
    }
}

.box-heading {
    width: 100%;
    max-width: 1320px;
    padding: 24px 16px 0 16px;
}

@media (max-width: 750px) {
    .box-heading {
        width: auto;
        max-width: unset;
        padding: 16px 0;
    }
}

.box-heading h2 {
    margin-bottom: 0;
}

.box-heading h3:first-child {
    margin-top: 0;
}

.box {
    width: min(956px, 100%);
    box-sizing: border-box;
    padding: 24px 16px;
    margin-bottom: 20px;
    z-index: 0;
}

@media (max-width: 750px) {
    .box {
        width: auto;
        max-width: unset;
        padding: 16px 0;
    }
}

.box>* {
    margin-bottom: 64px;
}

.box p {
    font-weight: 400;
    line-height: 22.4px;
    margin-bottom: 22px;
}

.box ul,
.box ol {
    margin-left: 0;
    position: relative;
    left: -1em;
}

.box h3:first-child {
    margin-top: 0;
}

.box *:last-child {
    margin-bottom: 0;
}

.box .image {
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
}

.box img {
    border-radius: 12px;
}

.box .image-left {
    margin-right: 18px;
    float: left;
}

@media (max-width: 1050px) {
    .box .image-left {
        margin-right: unset;
        margin-bottom: 16px;
        width: 100%;
    }
}

.box .image-left img {
    width: 300px;
}

@media (max-width: 1050px) {
    .box .image-left img {
        width: 100%;
    }
}

.box .image-right {
    width: 100%;
    margin-left: 18px;
}

@media (max-width: 1050px) {
    .box .image-right {
        margin-top: 16px;
        margin-left: unset;
    }
}

.box .image-right img {
    width: 100%;
}

.box.image-text {
    display: flex;
}

@media (max-width: 1050px) {
    .box.image-text {
        display: block;
    }
}

.box.empty {
    background-color: unset;
}

.first-block {
    width: 100%;
}

.hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 78px;
    box-sizing: border-box;
    max-width: 1392px;
    min-height: 368px;
    padding: 16px 217px 24px;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 24px;
    /* background-color: var(--color-surface-2); */
    background: linear-gradient(180deg, #36362F 8.17%, rgba(54, 54, 47, 0.66) 50.48%, #36362F 100%),  url("/assets/img/banner.webp");
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    font-family: "IBM Plex Sans", sans-serif;
}

@media (max-width: 1280px) {
    .hero-panel {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 900px) {
    .hero-panel {
        gap: 32px;
        min-height: 520px;
        padding: 16px;
        border-radius: 18px;
        background-position: center;
    }
}

.hero-panel .hero-top {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: 956px;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-panel .hero-top {
        max-width: 100%;
    }
}

.hero-panel .hero-nav {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: var(--color-background);
    scrollbar-color: var(--color-surface-3) transparent;
    scrollbar-width: thin;
}

.hero-panel .hero-nav::-webkit-scrollbar {
    height: 4px;
}

.hero-panel .hero-nav::-webkit-scrollbar-track {
    background: transparent;
}

.hero-panel .hero-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--color-surface-3);
}

.hero-panel .hero-nav a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
    min-height: 32px;
    padding: 6px 8px 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.hero-panel .hero-nav a span {
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
}

.hero-panel .hero-nav a.active {
    background: var(--color-surface-1);
}

.hero-panel .hero-nav a.active span {
    color: #FFFFFF;
}

@media (max-width: 900px) {
    .hero-panel .hero-nav {
        justify-content: flex-start;
        width: 100%;
    }

    .hero-panel .hero-nav a span {
        font-size: 14px;
    }
}

.hero-panel .hero-nav-spacer {
    display: block;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    pointer-events: none;
    transition: height 0.24s ease, opacity 0.2s ease;
}

.hero-panel .hero-nav-spacer[hidden] {
    display: none;
}

.hero-panel .hero-staff {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(6, 6, 6, 0.2);
    -webkit-backdrop-filter: blur(17px);
    backdrop-filter: blur(17px);
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.hero-panel .hero-staff span,
.hero-panel .hero-staff b {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
}

.hero-panel .hero-staff b {
    color: var(--color-grey);
    font-weight: 500;
}

.hero-panel .hero-staff span {
    color: #FFFFFF;
}

.hero-panel .hero-staff .hero-staff-authors {
    display: flex;
    gap: 16px;
}

@media (max-width: 900px) {
    .hero-panel .hero-staff {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-panel .hero-staff .hero-staff-authors {
        flex-direction: column;
        gap: 6px;
    }
}

.hero-panel .hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: min(1120px, 100%);
    text-align: center;
}

.hero-panel .hero-copy h1 {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 56px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.hero-panel .hero-copy p {
    width: min(716px, 100%);
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .hero-panel .hero-copy h1 {
        font-size: 40px;
        white-space: normal;
    }

    .hero-panel .hero-copy p {
        font-size: 15px;
    }
}

.hero-panel .hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 78%;
}

@media (max-width: 900px) {
    .hero-panel .hero-actions {
        width: 100%;
    }
}

.hero-panel .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 900px) {
    .hero-panel .hero-buttons {
        flex-wrap: wrap;
    }
}

.hero-panel .hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 48px;
    box-sizing: border-box;
    padding: 8px 16px 8px 8px;
    border: 0;
    border-radius: 12px;
    text-decoration: none;
}

.hero-panel .hero-btn img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-panel .hero-btn span {
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero-panel .hero-btn-primary {
    background: var(--color-primary);
}

.hero-panel .hero-btn-light {
    background: #FFFFFF;
}

.hero-panel .hero-btn-light span {
    color: var(--color-background);
}

.hero-panel .hero-promocode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 48px;
    box-sizing: border-box;
    padding: 6px 6px 6px 16px;
    border-radius: 12px;
    background: #FFFFFF;
}

.hero-panel .hero-promocode span {
    color: var(--color-surface-1);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.hero-panel .hero-promocode button {
    align-self: stretch;
    border: 0;
    border-radius: 8px;
    padding: 10px 16px 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero-panel .hero-licenses {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.hero-panel .hero-licenses span {
    color: rgba(255, 255, 255, 0.5);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .hero-panel .hero-licenses {
        flex-direction: column;
        gap: 8px;
    }

    .hero-panel .hero-licenses span {
        white-space: normal;
        text-align: center;
    }
}

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1392px;
    overflow: hidden;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 32px 16px 16px;
    border-radius: 24px;
    background: var(--color-surface-1);
    font-family: "IBM Plex Sans", sans-serif;
}

@media (max-width: 750px) {
    .footer {
        border-radius: 18px;
        padding: 24px 12px 12px;
    }
}

.footer::before {
    content: "";
    position: absolute;
    top: -190px;
    left: 50%;
    width: 760px;
    height: 300px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(108, 91, 234, 0.75), rgba(108, 91, 234, 0));
    filter: blur(42px);
    pointer-events: none;
}

.footer .footer-promo {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.footer .footer-promo p,
.footer .footer-promo strong {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1.1;
    letter-spacing: 0;
}

.footer .footer-promo p {
    font-size: 20px;
    font-weight: 500;
}

.footer .footer-promo strong {
    font-size: 24px;
    font-weight: 500;
}

.footer .footer-promocode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 48px;
    box-sizing: border-box;
    margin-top: 14px;
    padding: 6px 6px 6px 16px;
    border: 1px solid var(--color-surface-3);
    border-radius: 12px;
    background: var(--color-surface-2);
}

.footer .footer-promocode span {
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.footer .footer-promocode button {
    align-self: stretch;
    border: 0;
    border-radius: 8px;
    padding: 10px 16px 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.footer .footer-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    width: 100%;
    padding: 24px 16px 16px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-background);
}

.footer .footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 349px) 1fr;
    gap: clamp(48px, 22vw, 323px);
    width: 100%;
}

@media (max-width: 980px) {
    .footer .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer .footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 144px;
    gap: 24px;
}

.footer .footer-brand p {
    width: 100%;
    margin: 0;
    color: var(--color-grey);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0;
}

.footer .footer-logo {
    display: flex;
    width: 139px;
    height: 50px;
    overflow: hidden;
    text-decoration: none;
}

.footer .footer-logo img {
    max-width: none;
    align-self: flex-start;
}

.footer .footer-social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    opacity: 0.92;
    transition: opacity 0.2s;
}

.footer .footer-social a:hover {
    opacity: 1;
}

.footer .footer-social img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer .footer-columns {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    min-width: 0;
}

@media (max-width: 750px) {
    .footer .footer-columns {
        flex-direction: column;
        gap: 28px;
    }
}

.footer .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer .footer-column h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.footer .footer-column a,
.footer .footer-column span {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 2px 0;
    color: var(--color-grey);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
}

.footer .footer-column a:hover {
    color: #FFFFFF;
}

.footer .footer-contact {
    min-width: 320px;
}

@media (max-width: 750px) {
    .footer .footer-contact {
        min-width: 0;
    }
}

.footer .footer-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer .footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--color-surface-2);
}

@media (max-width: 900px) {
    .footer .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer .footer-meta p {
    margin: 0;
    color: var(--color-grey);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
}

.footer .footer-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.footer .footer-logos img {
    max-height: 24px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer .footer-logos .footer-logo-ecogra {
    width: 79px;
}

.footer .footer-logos .footer-logo-therapy {
    width: 74px;
}

.footer .footer-logos .footer-logo-gamcare {
    width: 74px;
}

.footer .footer-logos .footer-logo-aware {
    width: 122px;
}

.sticky-offer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
    width: 100%;
    min-height: 78px;
    padding: 12px 24px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 24px 24px 0 0;
    background: var(--color-surface-3);
    font-family: "IBM Plex Sans", sans-serif;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}

.sticky-offer::-webkit-scrollbar {
    display: none;
}

.sticky-offer * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .sticky-offer {
        gap: 16px;
        padding: 12px 16px;
        border-radius: 18px 18px 0 0;
    }
}

body.is-scroll-offer .sticky-offer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.flex5-spin-widget {
    position: fixed;
    right: 24px;
    top: 420px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
    width: 192px;
    min-height: 304px;
    padding: 12px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-2);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    font-family: "IBM Plex Sans", sans-serif;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.flex5-spin-widget * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-spin-widget.is-ready {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.flex5-spin-widget[hidden] {
    display: none;
}

@media (max-width: 1180px) {
    .flex5-spin-widget {
        display: none;
    }
}

.flex5-spin-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    border: 0;
    border-radius: 50%;
    background: var(--color-surface-1);
    cursor: pointer;
}

.flex5-spin-close::before,
.flex5-spin-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 1px;
    border-radius: 999px;
    background: #FFFFFF;
}

.flex5-spin-close::before {
    transform: rotate(45deg);
}

.flex5-spin-close::after {
    transform: rotate(-45deg);
}

.flex5-spin-wheel {
    position: relative;
    width: 162px;
    height: 158px;
    overflow: hidden;
    flex: 0 0 auto;
}

.flex5-spin-wheel-disc {
    position: absolute;
    inset: 0;
    transform-origin: 50% 51.5%;
    transition: transform 1.8s cubic-bezier(0.15, 0.72, 0.18, 1);
}

.flex5-spin-wheel-disc img {
    position: absolute;
    display: block;
    max-width: none;
}

.flex5-spin-wheel-outer {
    inset: 1.38% 2.9% -0.15% 1.02%;
    width: 96.08%;
    height: 98.77%;
}

.flex5-spin-wheel-inner {
    inset: 10.34% 11.61% 8.81% 9.74%;
    width: 78.65%;
    height: 80.85%;
}

.flex5-spin-wheel-sectors {
    left: 16px;
    top: 16px;
    width: 128px;
    height: 128px;
}

.flex5-spin-wheel-shadows {
    left: 1px;
    top: -12px;
    width: 159px;
    height: 172px;
}

.flex5-spin-wheel-centre {
    left: 70px;
    top: 71px;
    width: 20px;
    height: 20px;
}

.flex5-spin-wheel-arrow {
    position: absolute;
    z-index: 2;
    left: 67px;
    top: 0;
    width: 26px;
    height: 33px;
    display: block;
}

.flex5-spin-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    color: #FFFFFF;
    white-space: nowrap;
}

.flex5-spin-text strong {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.flex5-spin-text span {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.flex5-spin-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.flex5-spin-button:hover {
    filter: brightness(1.08);
}

.flex5-spin-button:active {
    transform: translateY(1px);
}

.flex5-spin-button:disabled {
    cursor: default;
    filter: saturate(0.8);
}

body.is-spin-popup-open {
    overflow: hidden;
}

.flex5-spin-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 24px;
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-spin-popup * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-spin-popup[hidden] {
    display: none;
}

.flex5-spin-popup-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(6, 11, 22, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.flex5-spin-popup-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: min(484px, 100%);
    min-height: 648px;
    overflow: hidden;
    padding: 32px;
    border-radius: 24px;
    background: var(--color-surface-2);
    color: #FFFFFF;
    box-shadow: 0 32px 86px rgba(0, 0, 0, 0.45);
    isolation: isolate;
    transform: translateY(8px) scale(0.98);
    animation: flex5SpinPopupIn 0.24s ease forwards;
}

.flex5-spin-popup-card::before {
    content: "";
    position: absolute;
    inset: -160px;
    z-index: -2;
    /* background: repeating-conic-gradient(from -8deg at 50% 50%, rgba(24, 47, 95, 0.62) 0deg 8deg, rgba(12, 23, 48, 0.22) 8deg 16deg); */
    opacity: 0.75;
background: url("/assets/img/flex5/wheel-large/bg.png") center / cover no-repeat;
}

.flex5-spin-popup-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 42%, rgba(24, 47, 95, 0.74), rgba(18, 35, 71, 0.18) 52%, rgba(18, 35, 71, 0.88) 100%);
}

@keyframes flex5SpinPopupIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flex5-spin-popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    border: 0;
    border-radius: 50%;
    background: var(--color-surface-1);
    cursor: pointer;
}

.flex5-spin-popup-close::before,
.flex5-spin-popup-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 1px;
    border-radius: 999px;
    background: #FFFFFF;
}

.flex5-spin-popup-close::before {
    transform: rotate(45deg);
}

.flex5-spin-popup-close::after {
    transform: rotate(-45deg);
}

.flex5-spin-popup-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.flex5-spin-popup-state[hidden] {
    display: none;
}

.flex5-spin-popup-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
}

.flex5-spin-popup-text h2,
.flex5-spin-popup-text p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.flex5-spin-popup-text p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.flex5-spin-popup-wheel-large {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 420/425;
    overflow: visible;
    flex: 0 0 auto;
    filter: drop-shadow(0 4px 25px rgba(0, 0, 0, 0.64));
}

.flex5-spin-popup-wheel-sectors {
    position: absolute;
    left: 6.96%;
    top: 7.72%;
    width: 86.42%;
    height: 85.4%;
    transform-origin: 50% 50.4%;
    transition: transform 1.8s cubic-bezier(0.15, 0.72, 0.18, 1);
}

.flex5-spin-popup-sector {
    position: absolute;
    width: 38.4%;
    height: 50.3%;
}

.flex5-spin-popup-sector img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.flex5-spin-popup-sector span {
    position: absolute;
    inset: 0 0 18.49% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-surface-1);
    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: center;
}

.flex5-spin-popup-sector-dark span {
    color: #FFFFFF;
}

.flex5-spin-popup-sector-light span {
    color: var(--color-surface-1);
}

.flex5-spin-popup-sector.is-free-spins {
    left: 31.03%;
    top: -0.16%;
}

.flex5-spin-popup-sector.is-exclusive-bonus {
    left: 31.03%;
    top: 49.74%;
    transform: rotate(180deg);
}

.flex5-spin-popup-sector.is-bonus-credits {
    left: 50.03%;
    top: 30.74%;
    width: 50.3%;
    height: 38.4%;
    transform: rotate(90deg);
}

.flex5-spin-popup-sector.is-bonus-credits img {
    left: 11.9%;
    top: -15.5%;
    width: 76.3%;
    height: 130.9%;
}

.flex5-spin-popup-sector.is-bonus-credits span {
    inset: -15.5% 11.9% 9.7% 11.9%;
}

.flex5-spin-popup-sector.is-deposit-bonus {
    left: 0.13%;
    top: 30.74%;
    width: 50.3%;
    height: 38.4%;
    transform: rotate(-90deg);
}

.flex5-spin-popup-sector.is-deposit-bonus img {
    left: 11.9%;
    top: -15.5%;
    width: 76.3%;
    height: 130.9%;
}

.flex5-spin-popup-sector.is-deposit-bonus span {
    inset: -15.5% 11.9% 9.7% 11.9%;
}

.flex5-spin-popup-sector.is-mystery-prize,
.flex5-spin-popup-sector.is-cashback-reward,
.flex5-spin-popup-sector.is-jackpot-win,
.flex5-spin-popup-sector.is-try-again {
    width: 62.72%;
    height: 62.72%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex5-spin-popup-sector.is-mystery-prize img,
.flex5-spin-popup-sector.is-cashback-reward img,
.flex5-spin-popup-sector.is-jackpot-win img,
.flex5-spin-popup-sector.is-try-again img {
    position: relative;
    width: 61.2%;
    height: 80.18%;
    flex: 0 0 auto;
}

.flex5-spin-popup-sector.is-mystery-prize span,
.flex5-spin-popup-sector.is-cashback-reward span,
.flex5-spin-popup-sector.is-jackpot-win span,
.flex5-spin-popup-sector.is-try-again span {
    inset: 9.9% 19.4% 28.6% 19.4%;
}

.flex5-spin-popup-sector.is-mystery-prize {
    left: 36.51%;
    top: 0.94%;
    transform: rotate(45deg);
}

.flex5-spin-popup-sector.is-cashback-reward {
    left: 1.23%;
    top: 36.22%;
    transform: rotate(-135deg);
}

.flex5-spin-popup-sector.is-jackpot-win {
    left: 36.51%;
    top: 36.22%;
    transform: rotate(135deg);
}

.flex5-spin-popup-sector.is-try-again {
    left: 1.23%;
    top: 0.94%;
    transform: rotate(-45deg);
}

.flex5-spin-popup-wheel-frame {
    position: absolute;
    left: 1.01%;
    top: 0.28%;
    z-index: 2;
    display: block;
    width: 98.71%;
    height: 98.71%;
    pointer-events: none;
}

.flex5-spin-popup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 48px;
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.flex5-spin-popup-button:hover {
    filter: brightness(1.08);
}

.flex5-spin-popup-button:active {
    transform: translateY(1px);
}

.flex5-spin-popup-button:disabled {
    cursor: default;
    filter: saturate(0.85);
}

.flex5-spin-result-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(420px, 100%);
    padding: 12px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-surface-3);
    -webkit-backdrop-filter: blur(17px);
    backdrop-filter: blur(17px);
}

.flex5-spin-result-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 308/151;
    overflow: hidden;
    border-radius: 12px;
    background: #191235;
}

.flex5-spin-result-logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-spin-result-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding-top: 2px;
    text-align: center;
    color: #FFFFFF;
}

.flex5-spin-result-copy span {
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
}

.flex5-spin-result-copy strong {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
}

.flex5-spin-result-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 48px;
    padding: 10px 16px 12px 8px;
    border-radius: 12px;
    background: linear-gradient(90deg, #32d16d 0%, #22b26c 100%);
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    text-decoration: none;
}

.flex5-spin-result-button img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 560px) {
    .flex5-spin-popup {
        padding: 12px;
    }

    .flex5-spin-popup-card {
        min-height: min(648px, 100vh - 24px);
        padding: 28px 20px;
        border-radius: 20px;
    }

    .flex5-spin-popup-close {
        top: 16px;
        right: 16px;
    }

    .flex5-spin-popup-text h2,
    .flex5-spin-popup-text p.flex5-h2 {
        font-size: 28px;
    }

    .flex5-spin-popup-text p {
        font-size: 15px;
    }

    .flex5-spin-popup-wheel-large {
        width: min(360px, 100%);
    }
}

body.is-slot-popup-open {
    overflow: hidden;
}

.flex5-slot-widget {
    position: fixed;
    right: 24px;
    top: 760px;
    z-index: 79;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
    width: 192px;
    min-height: 224px;
    padding: 16px 12px 12px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-2);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    font-family: "IBM Plex Sans", sans-serif;
    color: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    isolation: isolate;
    transform: translateY(12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    cursor: pointer;
}

.flex5-slot-widget::before {
    content: "";
    position: absolute;
    inset: -120px;
    z-index: -2;
    background: repeating-conic-gradient(from -7deg at 50% 54%, rgba(24, 47, 95, 0.68) 0deg 9deg, rgba(12, 23, 48, 0.2) 9deg 18deg);
    opacity: 0.74;
}

.flex5-slot-widget::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 60%, rgba(24, 47, 95, 0.68), rgba(18, 35, 71, 0.14) 58%, rgba(18, 35, 71, 0.88) 100%);
}

.flex5-slot-widget * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-slot-widget.is-ready {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.flex5-slot-widget[hidden] {
    display: none;
}

.flex5-slot-widget strong {
    margin-right: 32px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1180px) {
    .flex5-slot-widget {
        display: none;
    }
}

.flex5-slot-close,
.flex5-slot-popup-close {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    border: 0;
    border-radius: 50%;
    background: var(--color-surface-1);
    cursor: pointer;
}

.flex5-slot-close::before,
.flex5-slot-close::after,
.flex5-slot-popup-close::before,
.flex5-slot-popup-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 1px;
    border-radius: 999px;
    background: #FFFFFF;
}

.flex5-slot-close::before,
.flex5-slot-popup-close::before {
    transform: rotate(45deg);
}

.flex5-slot-close::after,
.flex5-slot-popup-close::after {
    transform: rotate(-45deg);
}

.flex5-slot-close {
    top: 16px;
    right: 16px;
}

.flex5-slot-machine {
    position: relative;
    width: 261px;
    aspect-ratio: 1/1;
    flex: 0 0 auto;
    overflow: visible;
}

.flex5-slot-machine.is-small {
    width: 174px;
}

.flex5-slot-machine.is-large {
    width: min(425px, 100%);
}

.flex5-slot-machine-box {
    position: absolute;
    left: -3.23%;
    top: -0.59%;
    display: block;
    width: 106.12%;
    height: 100.59%;
    max-width: none;
    pointer-events: none;
}

.flex5-slot-machine-cells {
    position: absolute;
    left: 11.93%;
    top: 14.05%;
    display: flex;
    gap: 2.67%;
    width: 76.14%;
    height: 37.21%;
    overflow: hidden;
    border-radius: 4.25% 4.25% 0 0;
}

.flex5-slot-cell {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: linear-gradient(180deg, #ffffff 0%, #f5f2ff 42%, #d9d1f6 100%);
    box-shadow: inset 0 4px 11px rgba(33, 30, 79, 0.22), inset 0 -6px 13px rgba(52, 38, 126, 0.2);
}

.flex5-slot-reel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17%;
    width: 100%;
    transform: translateY(var(--slot-shift));
    transition: transform 3s cubic-bezier(0.15, 0.74, 0.17, 1);
    will-change: transform;
}

.flex5-slot-reel img {
    display: block;
    width: 86%;
    height: auto;
    flex: 0 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
    filter: drop-shadow(0 3px 4px rgba(25, 16, 58, 0.18));
}

.flex5-slot-spin-button {
    position: absolute;
    left: 32.86%;
    top: 54.98%;
    display: block;
    width: 34.59%;
    height: 19.76%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.flex5-slot-spin-button img {
    position: absolute;
    display: block;
    max-width: none;
    pointer-events: none;
}

.flex5-slot-spin-button:hover {
    filter: brightness(1.06);
}

.flex5-slot-spin-button:active {
    transform: translateY(1px) scale(0.98);
}

.flex5-slot-spin-button.is-pressed,
.flex5-slot-spin-button:disabled {
    filter: brightness(1.08);
    cursor: default;
}

.flex5-slot-spin-bottom {
    left: 0;
    top: 32.43%;
    width: 100%;
    height: 67.57%;
}

.flex5-slot-spin-top {
    left: 0;
    top: 0;
    width: 100%;
    height: 68.89%;
}

.flex5-slot-spin-glare {
    left: 30.42%;
    top: -52.75%;
    width: 39.15%;
    height: 175.99%;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    mix-blend-mode: plus-lighter;
}

.flex5-slot-spin-text {
    left: 14.54%;
    top: 21.26%;
    width: 70.57%;
    height: 25.7%;
}

.flex5-slot-popup {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 24px;
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-slot-popup * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-slot-popup[hidden] {
    display: none;
}

.flex5-slot-popup-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(6, 11, 22, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.flex5-slot-popup-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: min(484px, 100%);
    min-height: 552px;
    overflow: hidden;
    overflow: clip;
    padding: 32px;
    border-radius: 24px;
    background: var(--color-surface-2);
    color: #FFFFFF;
    box-shadow: 0 32px 86px rgba(0, 0, 0, 0.45);
    isolation: isolate;
    transform: translateY(8px) scale(0.98);
    animation: flex5SpinPopupIn 0.24s ease forwards;
}

.flex5-slot-popup-card::before {
    content: "";
    position: absolute;
    inset: -160px;
    z-index: -2;
    background: repeating-conic-gradient(from -8deg at 50% 56%, rgba(24, 47, 95, 0.68) 0deg 9deg, rgba(12, 23, 48, 0.24) 9deg 18deg);
    opacity: 0.78;
}

.flex5-slot-popup-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 58%, rgba(24, 47, 95, 0.72), rgba(18, 35, 71, 0.16) 54%, rgba(18, 35, 71, 0.9) 100%);
}

.flex5-slot-popup-card h2,
.flex5-slot-popup-card p.flex5-h2 {
    width: min(344px, 100%);
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}

.flex5-slot-popup-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.flex5-slot-popup-state[hidden] {
    display: none;
}

.flex5-slot-popup-close {
    top: 24px;
    right: 24px;
}

@media (max-width: 560px) {
    .flex5-slot-popup {
        padding: 12px;
    }

    .flex5-slot-popup-card {
        min-height: min(552px, 100vh - 24px);
        padding: 28px 20px;
        border-radius: 20px;
    }

    .flex5-slot-popup-card h2,
    .flex5-slot-popup-card p.flex5-h2 {
        padding-right: 32px;
        font-size: 28px;
    }

    .flex5-slot-popup-close {
        top: 16px;
        right: 16px;
    }

    .flex5-slot-machine.is-large {
        width: min(360px, 100%);
    }
}

body.is-scratch-popup-open {
    overflow: hidden;
}

.flex5-scratch-widget {
    position: fixed;
    right: 24px;
    top: 1020px;
    z-index: 78;
    display: block;
    box-sizing: border-box;
    width: 192px;
    aspect-ratio: 270/217.332;
    overflow: hidden;
    border: 0;
    background: transparent;
    font-family: "IBM Plex Sans", sans-serif;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    cursor: pointer;
}

.flex5-scratch-widget.is-ready {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.flex5-scratch-widget[hidden] {
    display: none;
}

.flex5-scratch-widget * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

@media (max-width: 1180px) {
    .flex5-scratch-widget {
        display: none;
    }
}

.flex5-scratch-ticket-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    pointer-events: none;
}

.flex5-scratch-close,
.flex5-scratch-popup-close {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    border: 0;
    border-radius: 50%;
    background: var(--color-surface-1);
    cursor: pointer;
}

.flex5-scratch-close::before,
.flex5-scratch-close::after,
.flex5-scratch-popup-close::before,
.flex5-scratch-popup-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 1px;
    border-radius: 999px;
    background: #FFFFFF;
}

.flex5-scratch-close::before,
.flex5-scratch-popup-close::before {
    transform: rotate(45deg);
}

.flex5-scratch-close::after,
.flex5-scratch-popup-close::after {
    transform: rotate(-45deg);
}

.flex5-scratch-close {
    top: 9px;
    right: 14px;
    width: 23px;
    height: 23px;
    padding: 3px;
}

.flex5-scratch-close::before,
.flex5-scratch-close::after {
    width: 13px;
}

.flex5-scratch-logo {
    position: absolute;
    left: 58px;
    top: 68px;
    width: 250px;
    height: 141px;
    pointer-events: none;
    transform: rotate(-8deg) skewX(-8deg);
}

.flex5-scratch-logo img {
    position: absolute;
    display: block;
    max-width: none;
}

.flex5-scratch-logo.is-small {
    left: 69px;
    top: 16px;
    width: 58px;
    height: 44px;
}

.flex5-scratch-logo-scratch {
    left: 0;
    top: 0;
    width: 244px;
    height: 42px;
}

.flex5-scratch-logo-and {
    left: 38px;
    top: 75px;
    width: 36px;
    height: 33px;
}

.flex5-scratch-logo-win {
    left: 80px;
    top: 56px;
    width: 160px;
    height: 54px;
}

.flex5-scratch-logo.is-small .flex5-scratch-logo-scratch {
    width: 57px;
    height: 10px;
}

.flex5-scratch-logo.is-small .flex5-scratch-logo-and {
    left: 9px;
    top: 18px;
    width: 9px;
    height: 8px;
}

.flex5-scratch-logo.is-small .flex5-scratch-logo-win {
    left: 18px;
    top: 13px;
    width: 38px;
    height: 13px;
}

.flex5-scratch-widget-area {
    position: absolute;
    left: 20px;
    top: 53px;
    width: 154px;
    height: 93px;
    border-radius: 10px;
    background: linear-gradient(111deg, #b5b5b5 1.89%, #e2e2e2 19.17%, #c3c2c2 47.95%, #e2e2e2 81.59%, #d9d9d9 101.71%);
    overflow: hidden;
}

.flex5-scratch-widget-area::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image: radial-gradient(rgba(255, 255, 255, 0.52) 1px, transparent 1px);
    background-size: 7px 7px;
}

.flex5-scratch-widget-area::after {
    content: "";
    position: absolute;
    inset: -30% -10%;
    background: linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, 0.36) 48%, transparent 62%);
    transform: translateX(32%);
}

.flex5-scratch-popup {
    position: fixed;
    inset: 0;
    z-index: 212;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 24px;
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-scratch-popup * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-scratch-popup[hidden] {
    display: none;
}

.flex5-scratch-popup-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(6, 11, 22, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.flex5-scratch-ticket {
    position: relative;
    width: min(700px, 100%);
    aspect-ratio: 700/279.543;
    overflow: hidden;
    overflow: clip;
    filter: drop-shadow(0 32px 86px rgba(0, 0, 0, 0.38));
    transform: translateY(8px) scale(0.98);
    animation: flex5SpinPopupIn 0.24s ease forwards;
}

.flex5-scratch-popup-close {
    top: 10px;
    right: 20px;
}

.flex5-scratch-state {
    position: absolute;
    inset: 0;
}

.flex5-scratch-state[hidden] {
    display: none;
}

.flex5-scratch-area {
    position: absolute;
    right: 58px;
    top: 46px;
    width: 300px;
    height: 183px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-surface-1);
    touch-action: none;
}

.flex5-scratch-prize {
    position: absolute;
    left: 30px;
    top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 24px;
    width: 240px;
}

.flex5-scratch-prize img {
    display: block;
    width: 56px;
    height: 56px;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-scratch-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    touch-action: none;
}

.flex5-scratch-result-card {
    position: absolute;
    left: 75px;
    top: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 548px;
    min-height: 156px;
    padding: 16px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-2);
    -webkit-backdrop-filter: blur(17px);
    backdrop-filter: blur(17px);
}

.flex5-scratch-result-logo {
    width: 250px;
    height: 123px;
    overflow: hidden;
    border-radius: 16px;
    background: #191235;
    flex: 0 0 250px;
}

.flex5-scratch-result-logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-scratch-result-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    width: 250px;
    min-width: 0;
    margin-left: auto;
}

.flex5-scratch-result-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
}

.flex5-scratch-result-copy span {
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
}

.flex5-scratch-result-copy strong {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
}

.flex5-scratch-result-card:not(:has(.flex5-scratch-result-logo)) {
    justify-content: center;
}

.flex5-scratch-result-card:not(:has(.flex5-scratch-result-logo)) .flex5-scratch-result-content {
    margin-left: 0;
    width: min(420px, 100%);
}

@media (max-width: 760px) {
    .flex5-scratch-popup {
        padding: 12px;
    }

    .flex5-scratch-ticket {
        width: min(700px, 100vw - 24px);
    }

    .flex5-scratch-result-card {
        left: 10.7%;
        top: 21.5%;
        width: 78.3%;
        min-height: 55.8%;
        gap: 10px;
        padding: 10px;
        border-radius: 16px;
    }

    .flex5-scratch-result-logo {
        width: 45%;
        height: auto;
        aspect-ratio: 250/123;
        flex-basis: 45%;
    }

    .flex5-scratch-result-content {
        width: 48%;
    }

    .flex5-scratch-result-copy strong {
        font-size: 18px;
    }

    .flex5-scratch-result-copy span {
        font-size: 13px;
    }
}

.sticky-offer-brand,
.sticky-offer-bonus,
.sticky-offer-actions,
.sticky-offer-rating,
.sticky-offer-stars {
    display: flex;
    align-items: center;
}

.sticky-offer-brand {
    gap: 12px;
    flex: 0 0 auto;
}

.sticky-offer-logo {
    width: 110px;
    height: 54px;
    border-radius: 13px;
    -o-object-fit: cover;
    object-fit: cover;
    background: #191235;
    flex: 0 0 110px;
}

.sticky-offer-brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 127px;
}

.sticky-offer-brand-info strong {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.sticky-offer-rating {
    gap: 8px;
}

.sticky-offer-rating span {
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

.sticky-offer-rating span b {
    color: #f7c11f;
    font-weight: 500;
}

.sticky-offer-stars {
    gap: 0;
}

.sticky-offer-stars img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.sticky-offer-stars .muted {
    opacity: 0.32;
    filter: grayscale(1);
}

.sticky-offer-bonus {
    gap: 12px;
    height: 54px;
    padding: 12px 16px 12px 12px;
    border: 1px solid #32d16d;
    border-radius: 12px;
    background: var(--color-surface-2);
    flex: 0 0 auto;
}

.sticky-offer-bonus img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.sticky-offer-bonus span {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

.sticky-offer-actions {
    gap: 12px;
    flex: 0 0 auto;
}

.sticky-offer-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.sticky-offer-demo {
    padding: 12px 16px;
    background: #FFFFFF;
    color: var(--color-background) !important;
}

.sticky-offer-play {
    gap: 12px;
    padding: 8px 16px 8px 8px;
    background: var(--color-primary);
}

.sticky-offer-play img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
    flex: 0 0 32px;
}

.snippet-left {
    display: flex;
    width: min(956px, 100%);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 750px) {
    .snippet-left {
        flex-direction: column;
    }
}

.snippet-left .snippet-image {
    margin-right: 20px;
    min-width: 240px;
}

@media (max-width: 750px) {
    .snippet-left .snippet-image {
        width: 100%;
        min-width: 0;
        margin-bottom: 10px;
    }
}

.snippet-left .snippet-image .image {
    max-width: 240px;
    height: auto;
}

@media (max-width: 750px) {
    .snippet-left .snippet-image .image {
        width: 100%;
        max-width: 100%;
    }
}

.snippet-right {
    display: flex;
    justify-content: space-between;
    width: min(956px, 100%);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 750px) {
    .snippet-right {
        flex-direction: column-reverse;
    }
}

.snippet-right .snippet-image {
    min-width: 240px;
}

@media (max-width: 750px) {
    .snippet-right .snippet-image {
        width: 100%;
        min-width: 0;
        margin-bottom: 10px;
    }
}

.snippet-right .snippet-image .image {
    max-width: 240px;
    height: auto;
}

@media (max-width: 750px) {
    .snippet-right .snippet-image .image {
        width: 100%;
        max-width: 100%;
    }
}

.snippet-right .snippet-text {
    margin-right: 20px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-spacing: 0 8px;
    display: inline-table;
}

@media (max-width: 750px) {
    table {
        overflow-x: auto;
        white-space: nowrap;
    }
}

table thead tr {
    background-color: var(--color-surface-3);
}

table thead tr td {
    border: 0;
    border-collapse: collapse;
    width: auto;
    padding: 10px 12px;
    font-weight: 700;
}

table thead tr td:first-child {
    border-radius: 8px 0 0 8px;
}

table thead tr td:last-child {
    border-radius: 0 8px 8px 0;
}

table tbody a {
    color: var(--color-grey);
}

table tbody tr td {
    border: 0;
    border-collapse: collapse;
    width: auto;
    padding: 10px 12px;
}

table tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
    font-weight: 700;
}

table tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}

table tbody tr td:not(:first-child) {
    color: var(--color-grey);
}

table tbody tr:nth-child(2n) {
    background-color: var(--color-surface-3);
}

.error {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error .error-404 {
    font-size: 128px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.error p {
    color: var(--color-grey);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    margin-bottom: 64px;
}

.error .btn {
    margin-bottom: 130px;
}

.error-home {
    width: 100%;
    max-width: 1392px;
    margin: 16px auto 40px;
    display: flex;
    justify-content: center;
}

.sitemap-page {
    width: min(956px, 100%);
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: "IBM Plex Sans", sans-serif;
}

.sitemap-page * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.sitemap-page h1 {
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.sitemap-page .sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.sitemap-page .sitemap-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px;
    border-radius: 24px;
    background: var(--color-surface-1);
    overflow: hidden;
}

.sitemap-page .sitemap-card-media {
    position: relative;
    width: 105px;
    height: 105px;
    flex: 0 0 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-surface-3);
    text-decoration: none;
}

.sitemap-page .sitemap-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sitemap-page .sitemap-card-placeholder {
    position: relative;
    width: 48px;
    height: 48px;
    opacity: 0.86;
}

.sitemap-page .sitemap-card-placeholder::before,
.sitemap-page .sitemap-card-placeholder::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: var(--color-background);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.sitemap-page .sitemap-card-placeholder::before {
    left: 3px;
    bottom: 4px;
}

.sitemap-page .sitemap-card-placeholder::after {
    right: 3px;
    top: 4px;
    transform: rotate(45deg);
}

.sitemap-page .sitemap-card-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.sitemap-page .sitemap-card-content h2 {
    margin: 0;
}

.sitemap-page .sitemap-card-content h2 a {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.sitemap-page .sitemap-card-content p {
    margin: 0;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
}

.sitemap-page .sitemap-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: -moz-fit-content;
    width: fit-content;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
}

.sitemap-page .sitemap-card-link span {
    width: 18px;
    height: 18px;
    position: relative;
}

.sitemap-page .sitemap-card-link span::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-secondary);
}

.sitemap-page .sitemap-card-link span::after {
    content: "";
    position: absolute;
    right: 3px;
    top: 5px;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    transform: rotate(45deg);
}

@media (max-width: 760px) {
    .sitemap-page {
        gap: 18px;
    }

    .sitemap-page h1 {
        font-size: 28px;
    }

    .sitemap-page .sitemap-card {
        align-items: flex-start;
        gap: 12px;
        border-radius: 18px;
    }

    .sitemap-page .sitemap-card-media {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
        border-radius: 12px;
    }

    .sitemap-page .sitemap-card-content {
        gap: 6px;
    }

    .sitemap-page .sitemap-card-content h2 a {
        font-size: 16px;
    }

    .sitemap-page .sitemap-card-content p {
        font-size: 14px;
    }

    .sitemap-page .sitemap-card-link {
        font-size: 14px;
    }
}

.cookies {
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 16px;
    width: min(596px, 100% - 32px);
    min-height: 64px;
    padding: 8px;
    border-radius: 16px;
    background-color: var(--color-surface-2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
    transform: translateX(-50%);
    font-family: "IBM Plex Sans", sans-serif;
}

.cookies * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

@media (max-width: 575px) {
    .cookies {
        align-items: stretch;
        flex-direction: column;
        width: calc(100% - 24px);
        bottom: 12px;
    }
}

body.is-scroll-offer .cookies {
    bottom: 94px;
}

.cookies .cookies-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}

.cookies .cookies-block img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin: 0;
}

.cookies .cookies-block .cookies-text-block {
    display: flex;
    align-items: center;
    min-height: 44px;
    min-width: 0;
}

.cookies .cookies-block .cookies-text-block .cookies-text {
    margin: 0;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: 0;
}

.cookies .cookies-block .cookies-text-block .cookies-text a,
.cookies .cookies-block .cookies-text-block .cookies-text span {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.cookies .cookies-links {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .cookies .cookies-links {
        width: 100%;
    }
}

.cookies .cookies-links .cookies-links-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px;
    border: 1px solid var(--color-secondary);
    border-radius: 12px;
    background: transparent;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cookies .cookies-links .cookies-links-btn:hover {
    background: rgba(244, 197, 10, 0.12);
}

@media (max-width: 575px) {
    .cookies .cookies-links .cookies-links-btn {
        width: 100%;
    }
}

.author {
    border-radius: 8px;
    background: var(--color-surface-1);
    padding: 16px;
}

.author .author-item {
    display: flex;
    justify-content: space-between;
}

.author .author-item .flex {
    display: flex;
    margin-bottom: 16px;
}

.author .author-item .flex .avatar {
    height: 76.59px;
    margin-right: 16px;
}

.author .author-item .flex .info .name {
    margin: 0;
    font-weight: 700;
}

.author .author-item .flex .info .label {
    margin-top: 8px;
    font-size: 14px;
    color: var(--color-grey);
}

.author .author-item .author-social a {
    text-decoration: none;
}

.author .author-item .author-social a .social-item {
    height: 38px;
    width: auto;
    border-radius: 6px;
    margin: 0 0 0 6px;
}

.author .text {
    line-height: 140%;
    margin: 0;
}

.author .date {
    font-size: 12px;
    line-height: 142%;
    color: var(--color-grey);
    text-align: right;
}

.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

@media (max-width: 950px) {
    .faq {
        grid-template-columns: repeat(1, 1fr);
    }
}

.faq .faq-item h3 {
    cursor: pointer;
    border-radius: 8px;
    padding: 14px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 700;
    background-color: var(--color-surface-1);
    font-size: 16px;
}

.faq .faq-item .faq-item-content {
    padding: 9px 12px;
    background-color: var(--color-surface-1);
    border-radius: 8px;
    display: none;
    margin-bottom: 8px;
}

.faq .faq-item .faq-item-content p {
    margin: 0;
}

.faq .faq-item .faq-item-content.show {
    display: block;
}

.faq .faq-item h3::after {
    content: url("/assets/images/arrow-down.svg");
    margin-right: 5px;
}

.faq .faq-item.show h3::after {
    content: url("/assets/images/arrow-up.svg");
    margin-right: 5px;
}

.content-center {
    width: min(956px, 100%);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

input[id=radio-1]:checked~.glider {
    transform: translateX(0);
}

input[id=radio-2]:checked~.glider {
    transform: translateX(100%);
}

input[id=radio-3]:checked~.glider {
    transform: translateX(200%);
}

.showcase .showcase-item {
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-surface-1);
    margin-bottom: 16px;
}

@media (max-width: 750px) {
    .showcase .showcase-item {
        align-items: center;
        flex-direction: column;
    }
}

.showcase .showcase-item .showcase-logo {
    border-radius: 6px;
    height: 150px;
    width: auto;
    margin-right: 16px;
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-logo {
        width: 100%;
        height: auto;
    }
}

.showcase .showcase-item .showcase-content {
    display: flex;
    flex-direction: column;
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-content {
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
}

.showcase .showcase-item .showcase-content strong {
    font-size: 20px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 16px;
}

.showcase .showcase-item .showcase-content .rating {
    display: flex;
    align-items: center;
}

.showcase .showcase-item .showcase-content .rating .stars {
    margin-right: 8px;
}

.showcase .showcase-item .showcase-content .rating .stars .gray {
    filter: grayscale(100%);
    opacity: 0.2;
}

.showcase .showcase-item .showcase-content .rating p {
    font-weight: 700;
    margin: 0;
    color: var(--color-grey);
}

.showcase .showcase-item .showcase-content .rating p span {
    color: #FFFFFF;
}

.showcase .showcase-item .showcase-content .text {
    margin: 16px 0 0 0;
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-content .text {
        line-height: unset;
    }
}

.showcase .showcase-item .showcase-deposit {
    min-width: 165px;
    background: var(--color-surface-3);
    border-radius: 6px;
    padding: 16px;
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-deposit {
        padding: 10px 0;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-deposit p {
        padding: 0 15px;
    }
}

.showcase .showcase-item .showcase-deposit .label {
    margin-top: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-grey);
}

.showcase .showcase-item .showcase-deposit .deposit {
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.showcase .showcase-item .showcase-play {
    padding: 0 40px;
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-play {
        padding: 0;
        width: 100%;
    }
}

.showcase .showcase-item .showcase-play .btn {
    padding: 12px 16px;
    text-align: center;
    border: none;
    display: inline-block;
    min-width: 240px;
    width: 100%;
    background: var(--color-primary-solid);
    line-height: 140%;
    border-radius: 6px;
    margin-bottom: 17px;
    transition: 0.3s;
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-play .btn {
        padding: 15px 0;
    }
}

.showcase .showcase-item .showcase-play .btn:hover {
    background: var(--color-surface-3);
}

.showcase .showcase-item .showcase-play .payments {
    display: flex;
    align-items: center;
}

@media (max-width: 750px) {
    .showcase .showcase-item .showcase-play .payments {
        justify-content: center;
    }
}

.showcase .showcase-item .showcase-play .payments img {
    height: 24px;
    margin-right: 17px;
}

.showcase .showcase-item .showcase-play .payments span {
    font-size: 14px;
}

.showcase-grid {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
}

.showcase-grid .showcase-item {
    min-width: 392px;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--color-surface-1);
}

@media (max-width: 750px) {
    .showcase-grid .showcase-item {
        min-width: unset;
        width: 100%;
        flex-direction: column;
    }
}

.showcase-grid .showcase-item .showcase-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 750px) {
    .showcase-grid .showcase-item .showcase-content {
        width: 100%;
        align-items: center;
        margin-bottom: 16px;
    }
}

.showcase-grid .showcase-item .showcase-content .showcase-logo {
    border-radius: 6px;
    height: 107px;
    width: auto;
    margin-right: 16px;
}

.showcase-grid .showcase-item .showcase-content .flex {
    display: flex;
    flex-direction: column;
}

.showcase-grid .showcase-item .showcase-content .flex strong {
    font-size: 20px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 16px;
}

.showcase-grid .showcase-item .showcase-content .flex .rating {
    display: flex;
    align-items: center;
}

.showcase-grid .showcase-item .showcase-content .flex .rating .stars {
    margin-right: 8px;
}

.showcase-grid .showcase-item .showcase-content .flex .rating .stars .gray {
    filter: grayscale(100%);
    opacity: 0.2;
}

.showcase-grid .showcase-item .showcase-content .flex .rating p {
    font-weight: 700;
    margin: 0;
    color: var(--color-grey);
}

.showcase-grid .showcase-item .showcase-content .flex .rating p span {
    color: #FFFFFF;
}

.showcase-grid .showcase-item .text {
    margin: 18px 0 18px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.showcase-grid .showcase-item .showcase-deposit {
    display: flex;
    background: var(--color-surface-3);
    border-radius: 6px;
    padding: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.showcase-grid .showcase-item .showcase-deposit .col {
    width: 50%;
}

.showcase-grid .showcase-item .showcase-deposit .col .label {
    margin-top: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-grey);
}

.showcase-grid .showcase-item .showcase-deposit .col .deposit {
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.showcase-grid .showcase-item .showcase-play {
    display: grid;
}

.showcase-grid .showcase-item .showcase-play .btn {
    padding: 12px 16px;
    text-align: center;
    border: none;
    background: var(--color-primary-solid);
    line-height: 140%;
    border-radius: 6px;
    transition: 0.3s;
    margin: 0;
}

.showcase-grid .showcase-item .showcase-play .btn:hover {
    background: var(--color-surface-3);
}

.reviews {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.reviews .review {
    width: 280px;
    background: var(--color-surface-1);
    border-radius: 8px;
    padding: 16px;
}

@media (max-width: 750px) {
    .reviews .review {
        width: 100%;
    }
}

.reviews .review .user {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}

.reviews .review .user .avatar {
    height: 52.6px;
    margin-right: 16px;
}

.reviews .review .user .user-info .name {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
}

.reviews .review .user .user-info .city {
    color: var(--color-grey);
    font-weight: 400;
    line-height: 140%;
    margin: 0;
    display: flex;
    align-items: center;
}

.reviews .review .user .user-info .city img {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.reviews .review .rating {
    display: flex;
    align-items: center;
}

.reviews .review .rating .stars {
    margin-right: 8px;
}

.reviews .review .rating .stars .gray {
    filter: grayscale(100%);
    opacity: 0.2;
}

.reviews .review .rating p {
    font-weight: 700;
    margin: 0;
    color: var(--color-grey);
}

.reviews .review .rating p span {
    color: #FFFFFF;
}

.slots {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.slots .slot {
    width: 200px;
}

@media (max-width: 750px) {
    .slots .slot {
        width: 46%;
    }
}

.slots .slot .item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    transition: 0.3s;
}

@media (max-width: 750px) {
    .slots .slot .item {
        height: unset;
    }
}

.slots .slot .item .logo {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.slots .slot .item .info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    border-radius: 8px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.slots .slot .item .info .top {
    margin: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slots .slot .item .info .top .rtp {
    padding: 8px 10px;
    border-radius: 44px;
    background: rgba(0, 0, 0, 0.48);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-grey);
}

.slots .slot .item .info .top .rtp span {
    color: #FFFFFF;
}

.slots .slot .item .info .top .level {
    padding: 8px 10px;
    border-radius: 44px;
    background: rgba(0, 0, 0, 0.48);
    color: #60DA60;
    font-size: 14px;
    font-weight: 600;
}

.slots .slot .item .info .action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slots .slot .item .info .action .btn {
    padding: 8px 16px;
    text-align: center;
    border: none;
    min-width: 116px;
    transition: 0.3s;
}

.slots .slot .item .info .action .btn.btn-play {
    background: var(--color-primary-solid);
    margin-bottom: 8px;
}

.slots .slot .item .info .action .btn.btn-play:hover {
    background: var(--color-surface-3);
}

.slots .slot .item .info .action .btn.btn-demo {
    color: var(--color-background);
    background: #FFFFFF;
}

.slots .slot .item .info .action .btn.btn-demo:hover {
    background: var(--color-grey);
}

.slots .slot .item .info .bottom {
    background: rgba(0, 0, 0, 0.48);
    color: var(--color-grey);
    border-radius: 0 0 8px 8px;
    padding: 6px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.slots .slot .item:hover .info {
    display: flex;
}

.slots .slot p {
    font-weight: 700;
}

.advantages {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.advantages .advantage {
    max-width: 280px;
    background: var(--color-surface-1);
    border-radius: 8px;
    padding: 16px;
}

@media (max-width: 750px) {
    .advantages .advantage {
        max-width: unset;
        width: 100%;
    }
}

.advantages .advantage .heading {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.advantages .advantage .heading .num {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    font-weight: 700;
    background: var(--color-primary-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.advantages .advantage .heading p {
    width: 85%;
    font-weight: 700;
    margin: 0;
}

.advantages .advantage .text {
    margin: 0;
}

.flex5-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: min(956px, 100% - 32px);
    margin: 40px auto 24px;
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-content * {
    box-sizing: border-box;
}

.flex5-content h2,
.flex5-content h3,
.flex5-content p,
.flex5-content span,
.flex5-content strong,
.flex5-content li,
.flex5-content td,
.flex5-content summary,
.flex5-content input,
.flex5-content textarea,
.flex5-content button,
.flex5-content a {
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-content h2,
.flex5-content p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 500;
}

.flex5-content h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 600;
}

.flex5-content p {
    margin: 0;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.flex5-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex5-content li {
    position: relative;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1.35;
    padding-left: 22px;
}

.flex5-content li::before {
    content: "";
    position: absolute;
    top: 0.48em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #32d16d;
}

@media (max-width: 750px) {
    .flex5-content {
        width: 100%;
        gap: 40px;
        margin-top: 32px;
    }

    .flex5-content h2,
    .flex5-content p.flex5-h2 {
        font-size: 30px;
    }

    .flex5-content p,
    .flex5-content li {
        font-size: 15px;
    }
}

.flex5-label {
    display: inline-flex;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--color-surface-2);
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.flex5-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.flex5-btn img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 520px) {
    .flex5-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

.flex5-btn-primary {
    background: var(--color-primary);
}

.flex5-btn-ghost {
    background: var(--color-surface-3);
}

.flex5-btn-light {
    background: #FFFFFF;
    color: var(--color-background);
}

.flex5-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flex5-section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.flex5-game-spotlight {
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-2);
}

.flex5-game-media {
    height: 258px;
    overflow: hidden;
    background: var(--color-surface-1);
}

.flex5-game-media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-game-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 24px;
    background: var(--color-surface-2);
}

.flex5-game-panel p {
    grid-column: 1/-1;
    max-width: 710px;
}

.flex5-game-panel .flex5-updated {
    grid-column: 1/-1;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    line-height: 1;
}

.flex5-game-panel .flex5-updated img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-game-panel .flex5-updated span {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .flex5-game-panel {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}

.flex5-game-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.flex5-game-info img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-game-info span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1;
}

.flex5-game-info h2,
.flex5-game-info p.flex5-h2 {
    font-size: 32px;
}

.flex5-game-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 820px) {
    .flex5-game-actions {
        flex-wrap: wrap;
    }
}

.flex5-spoiler-text,
.flex5-copy-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flex5-spoiler-text {
    align-items: flex-start;
    width: 100%;
    background: transparent;
}

.flex5-copy-block {
    gap: 16px;
    padding: 32px;
    border-radius: 24px;
    background: var(--color-surface-1);
}

@media (max-width: 750px) {
    .flex5-copy-block {
        padding: 22px;
        border-radius: 18px;
    }
}

.flex5-spoiler-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 83px;
    overflow: hidden;
}

.flex5-spoiler-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--color-grey);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.flex5-spoiler-text.is-open .flex5-spoiler-copy {
    height: auto;
    overflow: visible;
}

.flex5-spoiler-text.is-open .flex5-spoiler-copy p {
    display: block;
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: unset;
}

.flex5-spoiler-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 25px;
    padding: 2px 0 4px;
    border: 0;
    border-bottom: 1px dashed #FFFFFF;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0;
}

.flex5-promo-panel {
    height: 266px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    overflow: hidden;
    padding: 40px;
    border-radius: 24px;
    background-color: #343434;
    background-image: url("/assets/img/promo-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 760px) {
    .flex5-promo-panel {
        height: auto;
        min-height: 340px;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 24px;
        border-radius: 18px;
    }
}

.flex5-promo-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    width: 600px;
    max-width: 100%;
}

@media (max-width: 760px) {
    .flex5-promo-shell {
        width: 100%;
        min-width: 0;
    }
}

.flex5-promo-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.flex5-promo-copy span {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.flex5-promo-copy h2,
.flex5-promo-copy p.flex5-h2 {
    margin: 0;
    margin-bottom: 12px;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.flex5-promo-copy p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.flex5-promo-action {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 760px) {
    .flex5-promo-action {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
    }
}

.flex5-promo-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 48px;
    padding: 6px 6px 6px 16px;
    border-radius: 12px;
    background: #FFFFFF;
    white-space: nowrap;
}

.flex5-promo-code span {
    color: var(--color-surface-1);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.flex5-promo-code button {
    align-self: stretch;
    border: 0;
    border-radius: 8px;
    padding: 10px 16px 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .flex5-promo-code {
        width: 100%;
    }

    .flex5-promo-code span {
        flex: 1;
    }
}

.flex5-promo-play {
    height: 48px;
    padding: 8px 16px 8px 8px;
}

.flex5-promo-play img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.flex5-promo-play span {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.flex5-promo-panel-secondary {
    min-height: 266px;
    background-position: center right;
}

.flex5-promo-panel-tall {
    height: 474px;
    align-items: flex-end;
}

.flex5-promo-panel-tall .flex5-promo-copy {
    max-width: 620px;
}

.flex5-content-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    overflow: hidden;
    padding: 16px;
    border-radius: 24px;
    background: var(--color-surface-1);
    font-family: "IBM Plex Sans", sans-serif;
}

@media (max-width: 750px) {
    .flex5-content-nav {
        border-radius: 18px;
    }
}

.flex5-content-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 40px;
    padding: 0;
    border: 0;
    border-radius: 60px;
    background: transparent;
    cursor: pointer;
}

.flex5-content-nav-head span {
    flex: 1 1 auto;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0;
}

.flex5-content-nav-head img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    -o-object-fit: contain;
    object-fit: contain;
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.flex5-content-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.flex5-content-nav-list a {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-height: 32px;
    padding: 6px 8px;
    border-radius: 8px;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    letter-spacing: 0;
}

.flex5-content-nav-list a span {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.flex5-content-nav-list a.active,
.flex5-content-nav-list a:hover {
    background: var(--color-surface-2);
    color: #FFFFFF;
}

.flex5-content-nav.is-collapsed .flex5-content-nav-head img {
    transform: rotate(0deg);
}

.flex5-content-nav.is-collapsed .flex5-content-nav-list {
    display: none;
}

.flex5-info-card,
.flex5-table-card,
.flex5-responsible,
.flex5-author,
.flex5-attention,
.flex5-quote {
    padding: 32px;
    border-radius: 24px;
    background: var(--color-surface-1);
}

@media (max-width: 750px) {

    .flex5-info-card,
    .flex5-table-card,
    .flex5-responsible,
    .flex5-author,
    .flex5-attention,
    .flex5-quote {
        padding: 22px;
        border-radius: 18px;
    }
}

.flex5-info-card {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    gap: 32px;
    align-items: center;
}

@media (max-width: 760px) {
    .flex5-info-card {
        grid-template-columns: 1fr;
    }
}

.flex5-survey {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    padding: 24px 16px 16px;
    border-radius: 24px;
    background: var(--color-surface-1);
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-survey h2,
.flex5-survey p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

@media (max-width: 750px) {
    .flex5-survey {
        border-radius: 18px;
    }
}

.flex5-survey-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.flex5-survey-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.flex5-survey-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: var(--color-surface-2);
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    text-align: left;
    letter-spacing: 0;
    transition: background 0.2s ease;
}

.flex5-survey-option:hover {
    background: var(--color-surface-3);
}

.flex5-survey-option.is-selected .flex5-survey-radio {
    border: 0;
    background: var(--color-primary);
}

.flex5-survey-option.is-selected .flex5-survey-radio::after {
    opacity: 1;
}

.flex5-survey-option:disabled {
    cursor: default;
}

.flex5-survey-option:disabled:hover {
    background: var(--color-surface-2);
}

.flex5-survey-radio {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    box-sizing: border-box;
    border: 1px solid var(--color-grey);
    border-radius: 50%;
    background: var(--color-surface-1);
}

.flex5-survey-radio::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
    opacity: 0;
}

.flex5-survey-label {
    min-width: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.flex5-survey-result {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    min-width: 170px;
}

@media (max-width: 620px) {
    .flex5-survey-result {
        min-width: 120px;
    }
}

@media (max-width: 460px) {
    .flex5-survey-result {
        width: 100%;
        min-width: 0;
        margin-left: 28px;
    }
}

.flex5-survey-scale {
    display: block;
    width: 119px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(216, 214, 226, 0.32);
}

.flex5-survey-scale span {
    display: block;
    width: var(--survey-percent, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-primary-solid) 0%, #32d16d 100%);
}

@media (max-width: 620px) {
    .flex5-survey-scale {
        width: 72px;
    }
}

.flex5-survey-percent {
    width: 42px;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-align: right;
    letter-spacing: 0;
}

@media (max-width: 460px) {
    .flex5-survey.is-results .flex5-survey-option {
        align-items: flex-start;
        flex-wrap: wrap;
    }
}

.flex5-survey.is-results .flex5-survey-result {
    display: flex;
}

.flex5-survey-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    width: 100%;
}

@media (max-width: 640px) {
    .flex5-survey-footer {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 12px;
    }
}

.flex5-survey-votes {
    margin: 0;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
}

.flex5-survey-votes span {
    color: #FFFFFF;
    font-size: inherit;
    line-height: inherit;
    font-weight: 500;
}

.flex5-survey-vote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 180px;
    height: 48px;
    padding: 8px 16px;
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.flex5-survey-vote:disabled {
    cursor: default;
    opacity: 0.54;
}

@media (max-width: 640px) {
    .flex5-survey-vote {
        width: 100%;
    }
}

.flex5-survey-vote-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

.flex5-survey-vote-icon::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
}

.flex5-survey-show {
    justify-self: end;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 25px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 640px) {
    .flex5-survey-show {
        justify-self: start;
    }
}

.flex5-reward-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 266px;
    box-sizing: border-box;
    padding: 40px;
    overflow: hidden;
    border-radius: 24px;
    background-color: #343434;
    background-image: url("//assets/img/reward-panel-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "IBM Plex Sans", sans-serif;
    text-align: center;
}

@media (max-width: 760px) {
    .flex5-reward-panel {
        min-height: 300px;
        padding: 28px 18px;
        border-radius: 18px;
    }
}

.flex5-reward-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(511px, 100%);
}

.flex5-reward-copy span {
    margin-bottom: -8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.flex5-reward-copy h2,
.flex5-reward-copy p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
}

.flex5-reward-copy p {
    width: min(431px, 100%);
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 560px) {

    .flex5-reward-copy h2,
    .flex5-reward-copy p.flex5-h2 {
        font-size: 27px;
    }

    .flex5-reward-copy p {
        font-size: 15px;
    }
}

.flex5-reward-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    box-sizing: border-box;
    padding: 8px 16px 8px 8px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}

.flex5-reward-action img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-reward-action span {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

@media (max-width: 420px) {
    .flex5-reward-action {
        width: 100%;
        white-space: normal;
    }
}

.flex5-top3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

@media (max-width: 930px) {
    .flex5-top3 {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 520px) {
    .flex5-top3 {
        flex-direction: column;
        overflow: visible;
        padding-bottom: 0;
    }
}

.flex5-top-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 308px;
    flex: 0 0 308px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-1);
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    scroll-snap-align: start;
}

@media (max-width: 520px) {
    .flex5-top-card {
        width: 100%;
        flex-basis: auto;
    }
}

.flex5-top-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 30px;
    box-sizing: border-box;
    padding: 4px 12px;
    border-radius: 24px 24px 0 0;
    background: var(--color-primary);
}

.flex5-top-badge strong {
    min-width: 0;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.flex5-top-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 22px;
    flex: 0 0 38px;
    border-radius: 24px;
    background: rgba(6, 6, 6, 0.2);
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.flex5-top-mark {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-top-mark::before,
.flex5-top-mark::after {
    content: "";
    position: absolute;
    display: block;
}

.flex5-top-mark-flash::before {
    left: 8px;
    top: 4px;
    width: 8px;
    height: 16px;
    background: #FFFFFF;
    clip-path: polygon(42% 0, 100% 0, 62% 43%, 100% 43%, 24% 100%, 42% 55%, 0 55%);
}

.flex5-top-mark-fire::before {
    left: 6px;
    top: 4px;
    width: 12px;
    height: 16px;
    border-radius: 50% 50% 46% 46%;
    background: #FFFFFF;
    transform: rotate(10deg);
}

.flex5-top-mark-new::before {
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    clip-path: polygon(50% 0, 61% 25%, 88% 12%, 75% 39%, 100% 50%, 75% 61%, 88% 88%, 61% 75%, 50% 100%, 39% 75%, 12% 88%, 25% 61%, 0 50%, 25% 39%, 12% 12%, 39% 25%);
}

.flex5-top-mark-new::after {
    content: "NEW";
    left: 4px;
    top: 8px;
    color: var(--color-primary-solid);
    font-size: 5px;
    line-height: 1;
    font-weight: 700;
}

.flex5-top-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 151px;
    overflow: hidden;
    background: #191235;
}

.flex5-top-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-top-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
}

.flex5-top-content h2,
.flex5-top-content p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.flex5-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.flex5-rating span {
    position: relative;
    width: 24px;
    height: 24px;
    display: block;
}

.flex5-rating span::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #f7c11f;
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.flex5-rating span.is-muted::before {
    background: var(--color-grey);
}

.flex5-top-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    box-sizing: border-box;
    padding: 6px 8px 6px 12px;
    border-radius: 12px;
    background: var(--color-background);
}

.flex5-top-bonus img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-top-bonus p {
    flex: 1;
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0;
}

.flex5-payments {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    height: 24px;
}

.flex5-payments span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 24px;
    border-radius: 4px;
    color: var(--color-grey);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.flex5-payments .visa {
    background: #1434cb;
    color: #FFFFFF;
    font-size: 11px;
}

.flex5-payments .mastercard {
    position: relative;
    background: #15171f;
}

.flex5-payments .mastercard::before,
.flex5-payments .mastercard::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.flex5-payments .mastercard::before {
    left: 10px;
    background: #eb001b;
}

.flex5-payments .mastercard::after {
    left: 17px;
    background: #f79e1b;
}

.flex5-payments .skrill {
    background: #150410;
    color: #b31a7b;
    font-size: 11px;
}

.flex5-payments .paypal {
    background: #0c1033;
    color: #009cde;
    font-style: italic;
}

.flex5-payments .neteller {
    background: #101010;
    color: #b7f000;
    font-size: 7px;
}

.flex5-payments .more {
    background: var(--color-surface-2);
    color: var(--color-grey);
    font-weight: 500;
}

.flex5-card-actions {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.flex5-top-review,
.flex5-top-register {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    box-sizing: border-box;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}

.flex5-top-review {
    flex: 1;
    border: 1px solid var(--color-secondary);
    background: transparent;
}

.flex5-top-register {
    width: 166px;
    flex: 0 0 166px;
    background: var(--color-primary);
}

.flex5-feature-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    min-height: 28px;
    padding: 2px 8px 2px 12px;
    border: 0;
    border-radius: 74px;
    background: var(--color-surface-2);
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.flex5-feature-pill span {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-feature-pill span::before,
.flex5-feature-pill span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #0bdd87;
    transform: translate(-50%, -50%);
}

.flex5-feature-pill span::before {
    width: 13px;
    height: 2px;
}

.flex5-feature-pill span::after {
    width: 2px;
    height: 13px;
}

.flex5-casino-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-casino-row {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 2px 2px;
    border-radius: 26px;
    background: var(--color-surface-1);
}

.flex5-casino-row.is-featured {
    background: var(--color-primary);
}

.flex5-casino-row.is-featured .flex5-casino-badge {
    background: var(--color-primary);
}

.flex5-casino-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 30px;
    box-sizing: border-box;
    padding: 4px 12px;
    background: var(--color-surface-1);
    color: #FFFFFF;
}

.flex5-casino-badge span {
    position: absolute;
    left: 14px;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.flex5-casino-badge strong {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0;
}

.flex5-casino-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr) 134px;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 24px;
    background: var(--color-surface-1);
}

@media (max-width: 980px) {
    .flex5-casino-card {
        grid-template-columns: minmax(0, 1fr) 270px;
    }

    .flex5-casino-card .flex5-casino-actions {
        grid-column: 1/-1;
        flex-direction: row;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .flex5-casino-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.flex5-casino-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.flex5-casino-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

@media (max-width: 520px) {
    .flex5-casino-brand {
        flex-direction: column;
    }
}

.flex5-casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 90px;
    flex: 0 0 184px;
    overflow: hidden;
    border-radius: 16px;
    background: #191235;
}

.flex5-casino-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 520px) {
    .flex5-casino-logo {
        width: 100%;
        height: 128px;
        flex-basis: auto;
    }
}

.flex5-casino-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    width: 200px;
    min-width: 0;
}

.flex5-casino-info h2,
.flex5-casino-info p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

@media (max-width: 520px) {
    .flex5-casino-info {
        width: 100%;
    }
}

.flex5-casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flex5-casino-rating p {
    margin: 0;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

.flex5-casino-rating p b {
    color: #f7c11f;
    font-weight: inherit;
}

.flex5-casino-reviews {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 2px 0;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
}

.flex5-casino-reviews span {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-casino-reviews span::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 14px;
    height: 11px;
    border: 2px solid var(--color-secondary);
    border-radius: 2px;
}

.flex5-casino-reviews span::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-left: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    transform: skewX(-18deg);
}

.flex5-casino-divider {
    width: 100%;
    height: 1px;
    background: rgba(216, 214, 226, 0.1);
}

.flex5-casino-meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.flex5-casino-meta .flex5-payments {
    justify-content: center;
}

.flex5-casino-meta .flex5-feature-pill {
    min-height: 28px;
}

.flex5-casino-bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border: 1px solid #32d16d;
    border-radius: 12px;
    background: var(--color-surface-2);
}

.flex5-casino-bonus-title {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.flex5-casino-bonus-title img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-casino-bonus-title p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.flex5-casino-bonus ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 8px;
    border-radius: 8px;
    background: var(--color-surface-1);
    list-style: none;
}

.flex5-casino-bonus li {
    position: relative;
    min-height: 20px;
    padding-left: 28px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.flex5-casino-bonus li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(50, 209, 109, 0.22);
}

.flex5-casino-bonus li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #32d16d;
    border-bottom: 2px solid #32d16d;
    transform: rotate(45deg);
}

.flex5-casino-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    width: 134px;
}

@media (max-width: 980px) {
    .flex5-casino-actions {
        width: 100%;
    }
}

.flex5-casino-register,
.flex5-casino-review {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.flex5-casino-register {
    background: var(--color-primary);
}

.flex5-casino-review {
    border: 1px solid var(--color-secondary);
    background: transparent;
}

.flex5-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    color: var(--color-grey);
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-text-content h2,
.flex5-text-content p.flex5-h2,
.flex5-text-content h3,
.flex5-text-content p,
.flex5-text-content li {
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 0;
}

.flex5-text-content h2,
.flex5-text-content p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
}

.flex5-text-content h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
}

.flex5-text-content p {
    margin: 0;
    color: var(--color-grey);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.flex5-text-content ul,
.flex5-text-content ol {
    margin: 0;
    padding: 0;
}

.flex5-text-content ul {
    padding-left: 24px;
    list-style: disc;
}

.flex5-text-content ul li {
    padding-left: 0;
}

.flex5-text-content table {
    width: 100%;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 24px;
    background: var(--color-surface-1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.flex5-text-content thead {
    background: var(--color-primary);
}

.flex5-text-content tbody tr:nth-child(even) {
    background: var(--color-surface-2);
}

.flex5-text-content tbody tr:nth-child(odd) {
    background: var(--color-surface-1);
}

.flex5-text-content th,
.flex5-text-content td {
    padding: 8px 16px;
    border: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.flex5-text-content th {
    font-weight: 600;
    text-transform: uppercase;
}

.flex5-text-content td {
    font-weight: 400;
}

.flex5-text-content td:nth-child(2) {
    font-weight: 600;
}

@media (max-width: 760px) {
    .flex5-text-content table {
        display: block;
        overflow-x: auto;
    }

    .flex5-text-content th,
    .flex5-text-content td {
        min-width: 180px;
    }
}

.flex5-text-content li::before,
.flex5-text-content li::after {
    content: none;
}

@media (max-width: 760px) {
    .flex5-text-content {
        gap: 12px;
    }

    .flex5-text-content h2,
    .flex5-text-content p.flex5-h2 {
        font-size: 22px;
    }

    .flex5-text-content h3 {
        font-size: 17px;
    }
}

.flex5-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.flex5-text-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.flex5-text-group-small {
    gap: 12px;
}

.flex5-text-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    list-style: none;
    counter-reset: flex5-text-counter;
}

.flex5-text-list li {
    counter-increment: flex5-text-counter;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.flex5-text-list li h3 {
    position: relative;
    padding-left: 24px;
}

.flex5-text-list li h3::before {
    content: counter(flex5-text-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: inherit;
    font: inherit;
}

.flex5-offer-panel {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    min-height: 474px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 40px;
    border-radius: 24px;
    background-color: #343434;
    background-image: url("//assets/img/offer-panel-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "IBM Plex Sans", sans-serif;
}

@media (max-width: 900px) {
    .flex5-offer-panel {
        flex-direction: column;
        min-height: 0;
        padding: 28px 18px;
        border-radius: 18px;
    }
}

.flex5-offer-brand {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 208px;
    flex: 0 0 208px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-primary);
}

@media (max-width: 900px) {
    .flex5-offer-brand {
        flex-basis: auto;
    }
}

@media (max-width: 420px) {
    .flex5-offer-brand {
        width: 100%;
    }
}

.flex5-offer-brand-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 12px;
}

.flex5-offer-brand-label span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.flex5-offer-brand-label span::before {
    content: "";
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    clip-path: polygon(50% 0, 61% 25%, 88% 12%, 75% 39%, 100% 50%, 75% 61%, 88% 88%, 61% 75%, 50% 100%, 39% 75%, 12% 88%, 25% 61%, 0 50%, 25% 39%, 12% 12%, 39% 25%);
}

.flex5-offer-brand-label span::after {
    content: "NEW";
    position: absolute;
    left: 3px;
    top: 7px;
    color: var(--color-primary-solid);
    font-size: 5px;
    line-height: 1;
    font-weight: 700;
}

.flex5-offer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px 2px;
    min-height: 204px;
    overflow: hidden;
    border-radius: 16px;
    background: #191235;
}

.flex5-offer-brand-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-offer-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
}

.flex5-offer-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 520px;
}

.flex5-offer-copy>span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.flex5-offer-copy h2,
.flex5-offer-copy p.flex5-h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
}

.flex5-offer-copy>p {
    max-width: 450px;
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 560px) {

    .flex5-offer-copy h2,
    .flex5-offer-copy p.flex5-h2 {
        font-size: 28px;
    }
}

.flex5-offer-bonus {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #32d16d;
    border-radius: 12px;
    background: rgba(6, 6, 6, 0.2);
    -webkit-backdrop-filter: blur(17px);
    backdrop-filter: blur(17px);
}

.flex5-offer-bonus-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flex5-offer-bonus-title img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-offer-bonus-title p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .flex5-offer-bonus-title p {
        white-space: normal;
    }
}

.flex5-offer-bonus ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 8px;
    border-radius: 8px;
    background: rgba(6, 6, 6, 0.2);
    list-style: none;
}

.flex5-offer-bonus li {
    position: relative;
    min-height: 24px;
    padding-left: 32px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    white-space: nowrap;
}

.flex5-offer-bonus li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(50, 209, 109, 0.22);
}

.flex5-offer-bonus li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #32d16d;
    border-bottom: 2px solid #32d16d;
    transform: rotate(45deg);
}

@media (max-width: 520px) {
    .flex5-offer-bonus li {
        white-space: normal;
        line-height: 1.35;
    }
}

.flex5-offer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.flex5-offer-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 48px;
    box-sizing: border-box;
    padding: 6px 6px 6px 16px;
    border-radius: 12px;
    background: #FFFFFF;
}

.flex5-offer-code span {
    color: var(--color-surface-1);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.flex5-offer-code button {
    align-self: stretch;
    border: 0;
    border-radius: 8px;
    padding: 10px 16px 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    cursor: pointer;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .flex5-offer-code {
        width: 100%;
    }

    .flex5-offer-code span {
        flex: 1;
    }
}

.flex5-offer-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 48px;
    box-sizing: border-box;
    padding: 8px 16px 8px 8px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    text-decoration: none;
}

.flex5-offer-play img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-offer-play span {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .flex5-offer-play {
        width: 100%;
    }
}

.flex5-media-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-media-slider-stage {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 24px;
    width: 100%;
}

@media (max-width: 760px) {
    .flex5-media-slider-stage {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.flex5-media-slider-stage figure {
    grid-column: 2;
    width: 100%;
    aspect-ratio: 1456/816;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-2);
}

.flex5-media-slider-stage figure img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 760px) {
    .flex5-media-slider-stage figure {
        grid-column: 1;
        order: 1;
        border-radius: 18px;
    }
}

.flex5-media-slider-control {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 64px;
    cursor: pointer;
}

.flex5-media-slider-control img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-media-slider-control.is-prev {
    background: var(--color-primary);
}

.flex5-media-slider-control.is-prev img {
    transform: scaleX(-1);
}

.flex5-media-slider-control.is-next {
    background: var(--color-surface-2);
}

@media (max-width: 760px) {
    .flex5-media-slider-control {
        position: absolute;
        z-index: 2;
        margin-top: calc((100vw - 30px) * 0.28);
    }

    .flex5-media-slider-control.is-prev {
        left: 18px;
    }

    .flex5-media-slider-control.is-next {
        right: 18px;
    }
}

.flex5-media-slider>p {
    width: 100%;
    min-height: 31px;
    margin: -16px 0 0;
    color: var(--color-grey);
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0;
}

@media (max-width: 760px) {
    .flex5-media-slider>p {
        margin-top: 0;
    }
}

.flex5-media-slider-thumbs {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    width: min(597px, 100%);
}

.flex5-media-slider-thumbs button {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1456/816;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: var(--color-surface-2);
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.2s ease, outline-color 0.2s ease;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.flex5-media-slider-thumbs button.is-active,
.flex5-media-slider-thumbs button:hover {
    opacity: 1;
    outline-color: var(--color-primary-solid);
}

.flex5-media-slider-thumbs button img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 560px) {
    .flex5-media-slider-thumbs {
        gap: 8px;
    }
}

.flex5-top-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flex5-row-card {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) 100px minmax(220px, 0.9fr) 180px;
    align-items: center;
    gap: 18px;
    min-height: 120px;
    padding: 18px;
    border-radius: 20px;
    background: var(--color-surface-2);
}

@media (max-width: 900px) {
    .flex5-row-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .flex5-row-card {
        grid-template-columns: 1fr;
    }
}

.flex5-row-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.flex5-row-brand img {
    width: 84px;
    height: 58px;
    border-radius: 14px;
    -o-object-fit: contain;
    object-fit: contain;
    background: var(--color-background);
}

.flex5-row-brand span {
    color: var(--color-grey);
    font-size: 14px;
}

.flex5-row-meta,
.flex5-row-bonus {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flex5-row-meta strong,
.flex5-row-bonus strong {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1;
}

.flex5-row-meta span,
.flex5-row-bonus span {
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1.2;
}

.flex5-row-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.flex5-row-actions .flex5-btn {
    min-height: 42px;
}

.flex5-slider-grid,
.flex5-games,
.flex5-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 820px) {

    .flex5-slider-grid,
    .flex5-games,
    .flex5-review-grid {
        grid-template-columns: 1fr;
    }
}

.flex5-slider-grid article,
.flex5-review-grid article {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
    padding: 24px;
    border-radius: 20px;
    background: var(--color-surface-2);
}

.flex5-slider-grid article span,
.flex5-review-grid article span {
    color: var(--color-grey);
}

.flex5-slider-grid article strong,
.flex5-review-grid article strong {
    color: #FFFFFF;
}

.flex5-pros-cons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
}

.flex5-pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    width: 100%;
}

@media (max-width: 760px) {
    .flex5-pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.flex5-pros-cons-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-1);
}

.flex5-pros-cons-card h3 {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 16px;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.flex5-pros-cons-card ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 16px;
    padding: 16px;
    list-style: none;
}

.flex5-pros-cons-card li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 24px;
    padding-left: 32px;
    color: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0;
}

.flex5-pros-cons-card li::before,
.flex5-pros-cons-card li::after {
    content: "";
    position: absolute;
    display: block;
}

.flex5-pros-cons-card li::before {
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--flex5-pros-cons-color);
    border-radius: 6px;
}

.flex5-pros-cons-card li::after {
    left: 6px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--flex5-pros-cons-color);
}

.flex5-pros-cons-card.is-pros {
    --flex5-pros-cons-color: #32d16d;
}

.flex5-pros-cons-card.is-pros h3 {
    background: linear-gradient(90deg, #32d16d 0%, #22b26c 100%);
}

.flex5-pros-cons-card.is-pros li::before {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0;
    background: url("//assets/img/pros-plus.svg") center/contain no-repeat;
}

.flex5-pros-cons-card.is-pros li::after {
    content: none;
}

.flex5-pros-cons-card.is-cons {
    --flex5-pros-cons-color: #eb355d;
}

.flex5-pros-cons-card.is-cons h3 {
    background: linear-gradient(90deg, #eb355d 0%, #d92935 100%);
}

.flex5-pros-cons-card.is-cons li::before {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0;
    background: url("//assets/img/cons-minus.svg") center/contain no-repeat;
}

.flex5-pros-cons-card.is-cons li::after {
    content: none;
}

@media (max-width: 760px) {
    .flex5-pros-cons-card {
        border-radius: 18px;
    }
}

.flex5-faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flex5-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    width: 100%;
}

@media (max-width: 760px) {
    .flex5-faq-grid {
        grid-template-columns: 1fr;
    }
}

.flex5-faq-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.flex5-faq-item {
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-surface-1);
    transition: background 0.2s ease, border-radius 0.2s ease;
}

.flex5-faq-item.is-open {
    padding: 16px;
    border-radius: 24px;
    background: var(--color-surface-2);
}

.flex5-faq-item.is-open .flex5-faq-question {
    padding: 0;
}

.flex5-faq-item.is-open .flex5-faq-question img {
    transform: rotate(0deg);
}

.flex5-faq-item.is-open .flex5-faq-answer {
    display: flex;
}

.flex5-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px;
    border: 0;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
}

.flex5-faq-question span {
    flex: 1 1 auto;
    min-width: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    text-align: left;
}

.flex5-faq-question img {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.flex5-faq-answer {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding-right: 24px;
}

.flex5-faq-answer p {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: var(--color-grey);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.flex5-comparison-table {
    width: 100%;
}

.flex5-comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 24px;
}

.flex5-comparison-table-wrap table {
    width: 100%;
    min-width: 666px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 24px;
}

.flex5-comparison-table-wrap thead {
    background: var(--color-primary);
}

.flex5-comparison-table-wrap tr:nth-child(odd) td {
    background: var(--color-surface-1);
}

.flex5-comparison-table-wrap tr:nth-child(even) td {
    background: var(--color-surface-2);
}

.flex5-comparison-table-wrap th,
.flex5-comparison-table-wrap td {
    width: 33.333%;
    padding: 8px 16px;
    border: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    text-align: left;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.flex5-comparison-table-wrap th,
.flex5-comparison-table-wrap strong {
    font-weight: 600;
    text-transform: uppercase;
}

.flex5-comparison-table-wrap td {
    font-weight: 400;
}

@media (max-width: 760px) {
    .flex5-comparison-table-wrap {
        border-radius: 18px;
    }

    .flex5-comparison-table-wrap table {
        border-radius: 18px;
    }
}

.flex5-two-column-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.flex5-two-column-text article {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.flex5-two-column-text h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
}

.flex5-two-column-text p {
    margin: 0;
    color: var(--color-grey);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

@media (max-width: 760px) {
    .flex5-two-column-text {
        grid-template-columns: 1fr;
    }
}

.flex5-games-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.flex5-games-section h2,
.flex5-games-section p.flex5-h2 {
    width: 100%;
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.flex5-games {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

@media (max-width: 980px) {
    .flex5-games {
        grid-template-columns: 1fr;
    }
}

.flex5-game-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-surface-1);
}

.flex5-game-card-media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: 308/151;
    overflow: hidden;
    background: #191235;
}

.flex5-game-card-media>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-game-card-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 72px;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.71) 36.5%, rgba(0, 0, 0, 0) 100%);
}

.flex5-game-card-media strong {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    min-height: 72px;
    padding: 16px 4px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    text-align: center;
}

.flex5-game-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}

.flex5-game-card-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 48px;
    padding: 6px 6px 6px 16px;
    border: 1px solid var(--color-surface-3);
    border-radius: 12px;
    background: var(--color-surface-2);
}

.flex5-game-card-code span {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.flex5-game-card-code button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 137px;
    padding: 10px 16px 12px;
    border: 0;
    border-radius: 8px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}

.flex5-game-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flex5-game-card-play,
.flex5-game-card-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 48px;
    padding: 12px 16px 12px 8px;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.flex5-game-card-play img,
.flex5-game-card-demo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-game-card-play {
    background: var(--color-primary);
}

.flex5-game-card-demo {
    background: #FFFFFF;
    color: var(--color-background);
}

.flex5-auditor-quote {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    background: var(--color-surface-1);
}

.flex5-auditor-quote-text {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: var(--color-surface-2);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.9);
}

.flex5-auditor-quote-text p {
    flex: 1 1 auto;
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    font-style: italic;
}

.flex5-quote-mark {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-quote-mark.is-closing {
    transform: scaleX(-1);
}

.flex5-auditor-quote-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

@media (max-width: 650px) {
    .flex5-auditor-quote-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.flex5-auditor-person {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.flex5-auditor-person>img {
    width: 49px;
    height: 49px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    background: #FFFFFF;
}

.flex5-auditor-person p {
    margin: 0 0 4px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
}

.flex5-auditor-person p span {
    color: var(--color-grey);
}

.flex5-auditor-person p strong {
    font-weight: 600;
}

.flex5-auditor-person a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: normal;
    text-decoration: none;
}

.flex5-auditor-person a img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.flex5-auditor-logo {
    width: 105px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-warning {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(90deg, #eb4135 0%, #d94729 100%);
}

.flex5-warning p {
    flex: 1 1 auto;
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
}

.flex5-warning-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-responsible-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.flex5-reviews h2,
.flex5-reviews p.flex5-h2 {
    width: 100%;
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.flex5-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.flex5-review-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 16px;
    border-radius: 24px;
    background: var(--color-surface-1);
}

.flex5-review-card.is-reply {
    width: calc(100% - 24px);
    margin-left: 24px;
    border-radius: 12px 24px 24px 12px;
}

.flex5-review-card>p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.flex5-review-head {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

@media (max-width: 760px) {
    .flex5-review-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

.flex5-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.flex5-review-author img {
    width: 49px;
    height: 49px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex5-review-author strong {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
}

.flex5-review-author span {
    display: block;
    color: var(--color-grey);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}

.flex5-review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
}

.flex5-stars {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.flex5-stars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    font-size: 17px;
    line-height: 1;
}

.flex5-stars span::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("//assets/img/star.svg") center/contain no-repeat;
}

.flex5-stars span.is-filled::before {
    background-image: url("//assets/img/star-filled.svg");
}

.flex5-rating-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.flex5-rating-star::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("//assets/img/star.svg") center/contain no-repeat;
}

.flex5-rating-star.is-filled::before,
.flex5-rating-star.is-hovered::before {
    background-image: url("//assets/img/star-filled.svg");
}

.flex5-rating-star:hover,
.flex5-rating-star:focus-visible {
    transform: translateY(-1px);
}

.flex5-rating-star:hover::before,
.flex5-rating-star:focus-visible::before {
    background-image: url("//assets/img/star-filled.svg");
}

.flex5-rating-star:focus-visible {
    outline: 2px solid rgba(244, 197, 10, 0.55);
    outline-offset: 2px;
    border-radius: 4px;
}

.flex5-review-reply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    align-self: flex-end;
    padding: 2px 0;
    border: 0;
    background: transparent;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    cursor: pointer;
}

.flex5-review-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: min(700px, 100%);
    margin-top: 48px;
}

.flex5-review-form h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
}

.flex5-review-form input,
.flex5-review-form textarea {
    width: 100%;
    border: 1px solid var(--color-surface-3);
    background: var(--color-surface-1);
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    outline: 0;
}

.flex5-review-form input::-moz-placeholder,
.flex5-review-form textarea::-moz-placeholder {
    color: var(--color-grey);
}

.flex5-review-form input::placeholder,
.flex5-review-form textarea::placeholder {
    color: var(--color-grey);
}

.flex5-review-form input {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
}

.flex5-review-form textarea {
    height: 104px;
    min-height: 104px;
    padding: 12px 16px;
    border-radius: 16px;
    resize: vertical;
}

.flex5-review-form-row,
.flex5-review-form-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
    width: 100%;
}

@media (max-width: 760px) {

    .flex5-review-form-row,
    .flex5-review-form-bottom {
        grid-template-columns: 1fr;
    }
}

.flex5-review-form-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
}

.flex5-review-form-hint {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-top: -16px;
    color: var(--color-grey);
    font-size: 14px;
    line-height: normal;
}

.flex5-review-form-bottom p {
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    font-style: italic;
}

.flex5-review-form-bottom p span {
    color: #32d16d;
}

.flex5-review-form-bottom button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.flex5-review-form-bottom button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    filter: grayscale(0.35);
}

.flex5-review-form-status {
    width: 100%;
    margin: -8px 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: normal;
    text-align: center;
}

.flex5-review-form-status[hidden] {
    display: none;
}

.flex5-review-form-status.is-success {
    border: 1px solid rgba(50, 209, 109, 0.34);
    background: rgba(50, 209, 109, 0.14);
    color: #65e48d;
}

.flex5-review-form-status.is-error {
    border: 1px solid rgba(255, 90, 90, 0.36);
    background: rgba(255, 90, 90, 0.14);
    color: #ff9b9b;
}

.flex5-responsible-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 24px;
    border-radius: 24px;
    background: var(--color-surface-1);
}

.flex5-responsible-card-intro {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.flex5-responsible-card-intro p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.flex5-responsible-card-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding-left: 56px;
}

.flex5-responsible-card-list article {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.flex5-responsible-card-list h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
}

.flex5-responsible-card-list p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

@media (max-width: 900px) {
    .flex5-responsible-card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .flex5-responsible-card-list {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
}

.flex5-responsible-logo {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.flex5-responsible-logo img {
    max-width: 124px;
    max-height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-responsible-logo strong {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.flex5-responsible-logo strong span {
    color: rgba(255, 255, 255, 0.5);
}

.flex5-author-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.flex5-author-section h2,
.flex5-author-section p.flex5-h2 {
    width: 100%;
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.flex5-author-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--color-primary-solid);
    border-radius: 24px;
    background: var(--color-surface-2);
}

.flex5-author-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 760px) {
    .flex5-author-main {
        flex-direction: column;
    }
}

.flex5-author-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 136px;
    flex: 0 0 136px;
}

.flex5-author-side img {
    width: 136px;
    aspect-ratio: 1;
    border-radius: 16px;
    -o-object-fit: cover;
    object-fit: cover;
    background: #FFFFFF;
}

.flex5-author-side>span {
    color: var(--color-grey);
    font-size: 12px;
    line-height: normal;
    font-style: italic;
}

@media (max-width: 760px) {
    .flex5-author-side {
        width: 100%;
        flex-basis: auto;
        align-items: flex-start;
    }

    .flex5-author-side img {
        width: 112px;
    }
}

.flex5-author-social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.flex5-author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.flex5-author-social a img {
    display: block;
    width: 24px;
    height: 24px;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex5-author-content {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
}

.flex5-author-content h3 {
    margin: 0 0 2px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
}

.flex5-author-content span {
    color: var(--color-grey);
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
}

.flex5-author-content p {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.flex5-author-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #FFFFFF;
    color: var(--color-surface-1);
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    text-decoration: none;
}

.flex5-author-button img {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
}

.flex5-author-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: var(--color-surface-1);
}

.flex5-author-check p {
    margin: 0;
    color: var(--color-grey);
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
}

.flex5-author-check p:first-child {
    margin-bottom: 12px;
    color: #FFFFFF;
    font-size: 16px;
}

.flex5-author-check p span {
    color: var(--color-primary-solid);
}

.flex5-author-check p .flex5-author-check-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: -6px;
}

.flex5-author-check p a {
    color: #FFFFFF;
    font-weight: 500;
}

.flex5-author-check img {
    width: 105px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
    flex: 0 0 auto;
}

@media (max-width: 760px) {
    .flex5-author-check {
        flex-direction: column;
    }
}

:root {
    --color-background: #0E0E0C;
    --color-grey: #D6E2E0;
    --color-primary: radial-gradient(84.12% 95.71% at 15.88% 50%, #E28419 0%, #FFE38E 100%);
    --color-primary-solid: #0B6E79;
    --color-secondary: #E02622;
    --color-surface-1: #22221E;
    --color-surface-2: #36362F;
    --color-surface-3: #36362F;
}

@media (max-width: 475px) {
    .snippet-left .snippet-image {
        min-width: 100%;
    }
}

@media (max-width: 750px) {
    .snippet-left .snippet-image {
        min-width: auto;
    }

    figure.table {
        overflow: auto;
        margin: 0;
    }
}

.review {
    margin: 15px 0 0 0;
}

.topbar .content-list .content-list-items::-webkit-scrollbar {
    height: 6px;
}

@media (max-width: 900px) {
    .topbar .header .header-logo {
        width: 139px;
        height: 50px;
        flex-basis: auto;
    }

    .hero-panel .hero-copy h1 {
        word-break: break-all;
        word-wrap: break-word;
        white-space: pre-line;
    }
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 1;

    background: linear-gradient(
        180deg,
        rgba(18, 34, 71, 0.36) 0%,
        rgba(18, 34, 71, 0.08) 48%,
        rgba(18, 34, 71, 0.78) 100%
    );

    pointer-events: none;
}
.img-cov {
    text-align: center;
}
.img-cov img {
    width:100%;
}