@font-face {
    font-family: 'Montserrat Bold';
    src: url('../font/montserrat.bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Regular';
    src: url('../font/montserrat.regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat SemiBold';
    src: url('../font/montserrat.semibold.ttf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(203, 225, 244, 0.4)) 
                drop-shadow(0 0 15px rgba(207, 215, 255, 0.2));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 12px rgba(203, 225, 244, 0.7)) 
                drop-shadow(0 0 25px rgba(207, 215, 255, 0.4))
                drop-shadow(0 0 40px rgba(228, 227, 242, 0.2));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(203, 225, 244, 0.4)) 
                drop-shadow(0 0 15px rgba(207, 215, 255, 0.2));
    }
}

@keyframes bonus-soft {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 2px 6px rgba(91, 95, 199, 0.22));
    }
    40% {
        transform: translateY(-5px) scale(1.035);
        filter: drop-shadow(0 6px 14px rgba(91, 95, 199, 0.42))
            drop-shadow(0 0 22px rgba(124, 127, 255, 0.18));
    }
    65% {
        transform: translateY(-2px) scale(1.02);
        filter: drop-shadow(0 4px 10px rgba(91, 95, 199, 0.32));
    }
}

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

:root {
    --page-bg: #ffffff;
    --text: rgb(28 35 105);
    --heading: rgb(84 79 180);
    --link: #5b5fc7;
    --header-overlay: rgba(255, 255, 255, 0.5);
    --header-g1: #e7e7f3;
    --header-g2: #d2d0fc;
    --header-g3: #d6ebff;
    --nav-text: #1c2369;
    --nav-text-hover: #5b5fc7;
    --nav-active: #3b34dd;
    --nav-link-bg: rgba(91, 95, 199, 0.08);
    --nav-link-bg-hover: rgba(91, 95, 199, 0.12);
    --nav-link-bg-active: rgba(91, 95, 199, 0.14);
    --mobile-nav-bg: #f6f6fc;
    --mobile-nav-shadow: rgba(15, 18, 40, 0.18);
    --backdrop: rgba(8, 10, 24, 0.5);
    --icon-btn-color: #3b34dd;
    --icon-btn-border: rgba(91, 95, 199, 0.28);
    --icon-btn-bg: rgba(91, 95, 199, 0.08);
    --content-box: rgb(248 248 255);
    --page-content-bg: #162334;
    --page-content-fg: #e8eaf2;
    --hero-title: rgb(63 56 221);
    --hero-subtitle: rgb(72 68 145);
    --footer-bg: rgb(248 248 255);
    --footer-muted: rgb(63 56 221);
    --hero-grad-1: rgb(203 225 244 / 0.82);
    --hero-grad-2: rgb(207 215 255 / 0.78);
    --hero-grad-3: rgb(228 227 242 / 0.85);
    --hero-fallback: rgb(228 227 242);
}

body {
    font-family: 'Montserrat SemiBold', sans-serif;;
    background: var(--page-bg);
    color: var(--text);
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    transition: background-color 0.25s ease, color 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat Bold', sans-serif;
    font-weight: 700;
    color: var(--heading);
    padding: 10px 0;
}

.body-large {
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
}

.body-medium {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
}

h1 {
    font-size: 42px;
    line-height: 64px;
    font-weight: bold;
}

h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: bold;
}

h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
}

h4 {
    font-size: 26px;
    line-height: 36px;
    font-weight: bold;
}

h5 {
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
}

h6 {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}

.content b, .content strong,
.content a{
    color: var(--link);
}
.content a:hover {
    color: var(--link);
    text-decoration: underline;
}

.page-content img {
    width: 100%;
    max-width: 980px;
    height: auto;
    display: block;
    margin: 5px auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header {
    position: sticky;
    top: 0;
    background: linear-gradient(0deg, var(--header-overlay) 0%, var(--header-overlay) 100%), linear-gradient(
        90deg, var(--header-g1) 0%, var(--header-g2) 70%, var(--header-g3) 100%);
    z-index: 200;
    padding: 10px 0;
    margin: 20px auto;
    max-width: 1320px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 24px;
    transition:
        background 0.3s ease,
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        margin 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.45s ease;
    filter: drop-shadow(0 0px 5px rgba(91, 95, 199, 0.42))
            drop-shadow(0 0 22px rgba(124, 127, 255, 0.18));
}

.header--scrolled {
    padding: 6px 0;
    margin: 10px auto;
    border-radius: 16px;
    filter: drop-shadow(0 10px 24px rgba(91, 95, 199, 0.38))
        drop-shadow(0 0 32px rgba(124, 127, 255, 0.24));
}

@media (prefers-reduced-motion: reduce) {
    .header {
        transition-duration: 0.01ms;
    }

    .header__logo img,
    .bonus img {
        transition-duration: 0.01ms;
    }

    .bonus img {
        animation: none;
        filter: drop-shadow(0 2px 8px rgba(91, 95, 199, 0.25));
    }
}

.header .container,
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.header__logo img {
   max-width: 200px;
   height: auto;
   transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled .header__logo img {
    max-width: 160px;
}

.header__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bonus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.bonus:focus-visible {
    outline: 2px solid var(--nav-active);
    outline-offset: 3px;
}

.bonus:hover {
    transform: scale(1.03);
}

.bonus img {
    display: block;
    height: 55px;
    width: auto;
    max-width: min(130px, 30vw);
    object-fit: contain;
    animation: bonus-soft 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform, filter;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled .bonus img {
    height: 46px;
}

.bonus:hover img,
.bonus:focus-visible img {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.06);
    filter: drop-shadow(0 6px 16px rgba(91, 95, 199, 0.48))
        drop-shadow(0 0 20px rgba(124, 127, 255, 0.22));
}

.header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--icon-btn-border);
    background: var(--icon-btn-bg);
    color: var(--icon-btn-color);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header__menu-toggle:hover {
    background: var(--nav-link-bg-hover);
}

.header__menu-toggle:focus-visible {
    outline: 2px solid var(--nav-active);
    outline-offset: 2px;
}

.header__menu-bars {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: background 0.2s ease;
}

.header__menu-bars::before,
.header__menu-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, top 0.25s ease;
}

.header__menu-bars::before {
    top: -7px;
}

.header__menu-bars::after {
    top: 7px;
}

.header--menu-open .header__menu-bars {
    background: transparent;
}

.header--menu-open .header__menu-bars::before {
    top: 0;
    transform: rotate(45deg);
}

.header--menu-open .header__menu-bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.header__backdrop {
    position: fixed;
    inset: 0;
    z-index: 198;
    background: var(--backdrop);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header.header--menu-open + .header__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px 8px;
    margin-left: auto;
    list-style: none;
}

.header__nav-close {
    display: none;
}

.header__nav-close-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}

.header__nav-close-icon::before,
.header__nav-close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    margin-left: -11px;
    margin-top: -1px;
    background: currentColor;
    border-radius: 1px;
}

.header__nav-close-icon::before {
    transform: rotate(45deg);
}

.header__nav-close-icon::after {
    transform: rotate(-45deg);
}

.header__nav .header__link {
    background: var(--nav-link-bg);
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--nav-text);
    text-decoration: none;
    font-family: 'Montserrat SemiBold', sans-serif;
    font-size: 15px;
    line-height: 1.2;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.header__nav .header__link:hover {
    color: var(--nav-text-hover);
    background: var(--nav-link-bg-hover);
}

.header__nav .header__link.active {
    color: var(--nav-active);
    background: var(--nav-link-bg-active);
    font-family: 'Montserrat Bold', sans-serif;
}

.header__actions {
    display: flex;
    gap: 8px;
}

.btn {
    padding: 14px 42px;
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: 1.5px solid #101827;
    box-sizing: border-box;
    text-align: center;
}

.btn--login {
    color: #3b34dd;
    font-size: 16px;
    background: #e7e5fe;
    transition: all 0.3s ease;
    padding: 15px 30px 12px 30px;
    border: 1px solid rgba(91, 95, 199, 0.2);
    cursor: pointer;
    font-family: 'Montserrat Bold', sans-serif;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
}

.btn--register {
    animation: pulse-glow 2s ease-in-out infinite;
    color: #1c2369;
    font-size: 16px;
    background: rgb(0 235 105);
    transition: all 0.3s ease;
    padding: 15px 30px 12px 30px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat Bold', sans-serif;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
}


.btn--hero {
    display: inline-block;
    text-decoration: none;
    color: #1c2369;
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    padding: 25px 50px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgb(0 235 105);
    border: none;
    animation: pulse-glow-cta 2s ease-in-out infinite;
}

@keyframes pulse-glow-cta {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 220, 106, 0.5)) 
                drop-shadow(0 0 20px rgba(255, 180, 50, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(255, 220, 106, 0.8)) 
                drop-shadow(0 0 30px rgba(255, 180, 50, 0.5))
                drop-shadow(0 0 50px rgba(255, 140, 0, 0.3));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 220, 106, 0.5)) 
                drop-shadow(0 0 20px rgba(255, 180, 50, 0.3));
    }
}

.main {
    margin-left: 0;
    padding: 0;
}
.content .container {
    background: linear-gradient(0deg, var(--header-overlay) 0%, var(--header-overlay) 100%), linear-gradient(
            90deg, var(--header-g1) 0%, var(--header-g2) 70%, var(--header-g3) 100%);
    padding: 30px;
    border-radius: 24px;
}
.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.page-content {
    background: var(--page-content-bg);
    color: var(--page-content-fg);
    border-radius: 2px;
    padding: 20px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
    background: linear-gradient(0deg, var(--header-overlay) 0%, var(--header-overlay) 100%), linear-gradient(
            90deg, var(--header-g1) 0%, var(--header-g2) 70%, var(--header-g3) 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    transition: background-color 0.25s ease;
}

.hero__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}


.hero__subtitle {
    font-family: 'New Spirit', sans-serif;
    color: var(--hero-subtitle);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.hero__title {
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--hero-title);
    text-align: left;
    transition: color 0.25s ease;
}

/* Casinos Slider */
.casinos-slider {
    background: linear-gradient(180deg, rgb(228 227 242) 0%, rgb(240 240 248) 100%);
    background: rgb(248 248 255);
    padding: 20px 0;
    border-radius: 24px;
    max-width: 1320px;
    margin: 30px auto 0;
}

.casinos-slider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.casinos-slider__title {
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1c2369;
    font-style: italic;
    margin: 0;
    padding: 0;
}

.casinos-slider__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casinos-slider__see-all {
    font-family: 'Montserrat SemiBold', sans-serif;
    font-size: 16px;
    color: #5b5fc7;
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid #c5c7e8;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.casinos-slider__see-all:hover {
    background: #5b5fc7;
    color: #fff;
    border-color: #5b5fc7;
}

.casinos-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #c5c7e8;
    background: transparent;
    color: #c5c7e8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.casinos-slider__arrow:hover {
    background: #5b5fc7;
    color: #fff;
    border-color: #5b5fc7;
}

.casinos-slider__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.casino-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.casino-card__logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.casino-card__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.casino-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: linear-gradient(180deg, #f5f5fa 0%, #eeeef5 100%);
    border-top: 1px solid #e8e8f0;
}

.casino-card__name {
    font-family: 'Montserrat SemiBold', sans-serif;
    font-size: 14px;
    color: #1c2369;
}

.casino-card__link-icon {
    max-width: 550px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8e8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b8fc7;
    transition: all 0.3s ease;
}

.casino-card:hover .casino-card__link-icon {
    background: #5b5fc7;
    color: #fff;
}

.content {
    padding: 32px 0 48px;
}

p {
    font-family: 'Montserrat Regular', sans-serif;
    font-size: 17px;
    line-height: 28px;
    color: rgb(126 123 180);
    margin-bottom: 16px;
    font-weight: 500;
}

ul, ol {
    font-family: 'Montserrat SemiBold', sans-serif;
    font-size: 17px;
    line-height: 24px;
    color: rgb(126 123 180);
    margin-bottom: 16px;
    padding: 25px;
    padding: 20px 20px 13px 35px;
    background: linear-gradient(45deg, #ccdef7, #cfd7ff 35.48%, #d2d0fc 75%, #d0cbf4);
    box-shadow: 0 4px 8px #0307300f;
    border-radius: 12px;
    font-weight: 500;
}

ul li::marker , ol li::marker {
   color: rgb(126 123 180);
}

ul li, ol li {
    margin-bottom: 8px;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

.table-section {
    padding-bottom: 48px;
}

.lexical-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 10px;
}

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #ccdef7;
    border-radius: 2px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgb(126 123 180);
}

.lexical-table tr {
    border-bottom: 1px solid rgb(194 192 230 / 59%);
}

.lexical-table tr:last-child {
    border-bottom: none;
}

.lexical-table tr:nth-child(even) {
    background: #d0cbf46b;
}

.lexical-table td {
    padding: 16px 20px;
    font-size: 16px;
    line-height: 22px;
    border: none !important;
    padding: 10px!important;
}

.lexical-table td p {
    padding: 0!important;
    margin: 0!important;
}

.table-label {
    color: #7e7bb4;
    font-weight: 500;
    width: 50%;
}

.table-value {
    color: rgb(84 79 180);
    font-weight: normal;
    text-align: left;
}

.featured img {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgb(84 79 180);
}

.payments {
    background: #3a040e;
    padding: 40px 0;
    margin-top: 40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.payments__track {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.payments__item {
    flex-shrink: 0;
}

.payments__item img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer {
    background: var(--footer-bg);
    padding: 30px 0 50px;
    margin-top: 64px;
    text-align: center;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 24px;
    transition: background-color 0.25s ease;
}

.footer__logo {
    margin-bottom: 32px;
}

.footer__logo img {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
}

.footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 32px;
    padding: 0 8px;
    list-style: none;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2;
    font-family: 'Montserrat SemiBold', sans-serif;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease;
}

.footer__link:hover {
    color: var(--nav-active);
    background: var(--nav-link-bg-hover);
}

.footer__link:focus-visible {
    outline: 2px solid rgba(59, 52, 221, 0.45);
    outline-offset: 2px;
}

.footer__link--active {
    color: var(--nav-active);
    background: var(--nav-link-bg-active);
    font-family: 'Montserrat Bold', sans-serif;
}

.footer__licenses {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer__licenses img {
   width: 100%;
   max-width: 85px;
   height: 40px;
   object-fit: contain;
}

.footer__payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer__payments img {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 90px;
}

.footer__disclaimer {
    margin-bottom: 16px;
}

.footer__disclaimer p {
    font-size: 14px;
    line-height: 20px;
    color: var(--footer-muted);
    margin-bottom: 0;
}

.footer__copyright p {
    font-size: 14px;
    line-height: 20px;
    color: var(--footer-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .header__menu-toggle {
        display: inline-flex;
    }

    .bonus img {
        height: 38px;
        max-width: min(96px, 24vw);
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 88vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        padding: calc(20px + env(safe-area-inset-top, 0px)) 20px 24px;
        background: var(--mobile-nav-bg);
        box-shadow: -12px 0 40px var(--mobile-nav-shadow);
        transform: translateX(100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 220;
        overflow-y: auto;
        border-left: 1px solid var(--mobile-nav-border);
        visibility: hidden;
        pointer-events: none;
    }

    .header--menu-open .header__nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .header__nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: flex-end;
        width: 44px;
        height: 44px;
        margin: -4px -4px 8px 0;
        padding: 0;
        border: 1px solid var(--icon-btn-border);
        border-radius: 12px;
        background: var(--icon-btn-bg);
        color: var(--icon-btn-color);
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .header__nav-close:hover {
        background: var(--nav-link-bg-hover);
        color: var(--nav-text-hover);
    }

    .header__nav-close:focus-visible {
        outline: 2px solid var(--nav-active);
        outline-offset: 2px;
    }

    .header__nav .header__link {
        padding: 12px 14px;
        font-size: 15px;
        white-space: normal;
        justify-content: flex-start;
        width: 100%;
    }

    html {
        scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 100px);
    }

    .main {
        margin-left: 0;
        padding-top: calc(15px + env(safe-area-inset-top, 0px) + 75px);
    }

    .container {
        padding: 15px;
    }

    .content {
        padding: 0!important;
        max-width: 96%;
        margin: 0 auto;
    }

    .header {
        position: fixed;
        top: max(5px, env(safe-area-inset-top, 0px));
        left: 0;
        right: 0;
        margin: 5px auto;
        max-width: 97%;
        width: 97%;
        padding: 10px 0;
        z-index: 200;
    }

    .header--scrolled {
        top: max(3px, env(safe-area-inset-top, 0px));
        margin: 3px auto;
        padding: 6px 0;
        border-radius: 18px;
    }

    .header--scrolled .header__logo img {
        max-width: 100px;
    }

    .header--scrolled .bonus img {
        height: 34px;
    }
    
    .header .container,
    .header__inner {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 16px;
    }

    .header__logo {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        min-width: 0;
    }

    .header__logo img {
        max-width: 120px;
        object-fit: inherit;
    }

    .header__actions {
        position: absolute;
        top: 77px;
        left: 0;
        width: 100%;
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    .btn--login,
    .btn--register {
        width: 50%;
        padding: 10px 30px;
    }

    .btn {
        flex: 1;
        padding: 10px;
        font-size: 16px;
        width: auto;
        height: auto;
    }

    .hero {
        max-width: 95%;
        margin: 0 auto;
        border-radius: 24px;
    }
    .hero .container {
        min-height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .hero__image {
        max-height: 140px;
        margin-bottom: -30px;
    }

    .hero__title {
        font-size: 30px;
        margin-bottom: 0;
        line-height: 30px;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .btn--hero {
        padding: 20px 40px;
        font-size: 15px;
    }

    /* Casinos Slider Mobile */
   
    .casinos-slider__header {
        flex-wrap: wrap;
        gap: 16px;
        
    }

    .casinos-slider__title {
        font-size: 22px;
        width: 100%;
    }

    .casinos-slider__controls {
        width: 100%;
        justify-content: flex-end;
    }

    .casinos-slider__grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
        cursor: grab;
        scroll-behavior: smooth;
        height: 265px;
    }
    .casinos-slider{
        padding: 0;
        margin: 10px;
    }
    .content .container {
        padding: 20px 15px;
        margin-top: 20px;
    }
    .casinos-slider__grid:active {
        cursor: grabbing;
    }

    .casinos-slider__grid::-webkit-scrollbar {
        display: none;
    }

    .casinos-slider__grid .casino-card {
        flex: 0 0 calc(50% - 6px);
        width: calc((100vw - 64px) / 2.2);
        scroll-snap-align: start;
        max-height: 120px;
    }

    .casino-card__logo {
        height: 80px;
        padding: 15px;
    }

    .casino-card__logo img {
        max-height: 50px;
    }

    .casino-card__footer {
        padding: 10px 12px;
    }

    .casino-card__name {
        font-size: 12px;
    }

    .casino-card__link-icon {
        width: 28px;
        height: 28px;
    }

    .lexical-table-container {
        overflow-x: auto;
        padding: 20px 0px;
    }

    .lexical-table {
        min-width: 400px;
        white-space: normal;
    }

    .lexical-table td {
        padding: 6px;
        font-size: 14px;
    }

    .table-label {
        font-size: 14px;
    }

    .table-value {
        font-size: 14px;
    }

    .hero__content {
        max-width: 100%;
    }

    h1 {
        font-size: 30px;
        line-height: 38px;
    }

    h2 {
        font-size: 28px;
        line-height: 34px;
    }

    h3 {
        font-size: 24px;
        line-height: 30px;
    }

    h4 {
        font-size: 22px;
        line-height: 26px;
    }

    h5 {
        font-size: 20px;
        line-height: 24px;
    }

    h6 {
        font-size: 19px;
        line-height: 20px;
    }

    p {
        font-size: 16px;
        line-height: 22px;
    }

    ul, ol {
        font-size: 16px;
        line-height: 22px;
    }

    .footer {
        margin-top: 48px;
    }

    .footer .container {
        padding: 0 16px;
    }

    .footer__logo {
        margin-bottom: 24px;
    }

    .footer__logo img {
        max-width: 100px;
    }

    .footer__nav {
        gap: 6px 8px;
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .footer__link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .footer__licenses {
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer__licenses img {
        height: 32px;
        padding: 0;
    }

    .footer__payments {
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer__payments img {
        height: 30px;
        padding: 0;
    }

    .payments {
        padding: 30px 0;
        margin-top: 30px;
    }

    .payments__track {
        gap: 20px;
    }

    .payments__item img {
        height: 50px;
    }

    .footer__disclaimer p,
    .footer__copyright p {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero__title {
        font-size: 40px;
    }
}

@media (min-width: 769px) {
    .header .container,
    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .header__logo {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .header__nav {
        position: static;
        width: auto;
        height: auto;
        min-height: 0;
        transform: none;
        visibility: visible;
        box-shadow: none;
        border: none;
        overflow: visible;
        padding: 0;
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: 8px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        background: transparent;
    }

    .header__actions {
        display: flex;
        gap: 8px;
        flex: 0 0 auto;
    }

    .btn {
        padding: 15px 35px;
    }

    .hero {
        display: flex;
        max-width: 1320px;
        padding: 25px 0;
        border-radius: 24px;
        margin: 10px auto 0;
    }

}

#review-block .review-block__name {
    color: #3b34dd!important;
}
#review-block {
    background: linear-gradient(90deg, rgb(203 225 244) 0%,
                rgb(207 215 255) 29.41%, rgb(228 227 242) 100%)!important;
}
#review-block .review-block__row--highlighted {
    background: rgba(80, 100, 200, 0.18)!important;
    border-color: rgb(100 120 220 / 36%)!important;
}
#review-block .review-block__bonus:has(span:nth-child(2)) span:first-child {
    color: #fd0abb!important;
}
#review-block .review-block__row {
    border: 1px solid rgb(255 255 255)!important;
    background: rgb(255 255 255 / 34%)!important;
    transition: background 0.2s, border-color 0.2s;
}
#review-block .review-block__bonus {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #5b5fc7!important;
}
#review-block .review-block__code {
    color: #5b5fc7!important;
}
#review-block .review-block__name {
    color: #3b34dd!important;
}
#review-block .review-block__bonus:has(span:nth-child(2)) span:first-child {
    color: #e91e64!important;
}
#review-block .review-block__header {
    color: rgb(63 56 221)!important;
}
#review-block .review-block__number {
    color: #e91e64!important;
}
#review-block {
    margin: 15px 0!important;
}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}


/* --- Review Block Styles --- */
#review-block {
  margin: 32px 0;
  background: #151b3a;
  border-radius: 14px;
  padding: 20px 16px 16px;
  overflow: hidden;
}
#review-block .review-block__header {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  padding: 0 24px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.review-block__header span:first-child{
  padding-left: 32px;
}
.review-block__header span:nth-child(2){
  text-align: center;
}
#review-block .review-block__row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
#review-block .review-block__row:last-child{
  margin: 0;
}
#review-block .review-block__row:hover {
  background: rgba(255, 255, 255, 0.05);
}
#review-block .review-block__row--highlighted {
  background: rgba(80, 100, 200, 0.18);
  border-color: rgba(100, 120, 220, 0.25);
}
#review-block .review-block__row--highlighted:hover {
  background: rgba(80, 100, 200, 0.24);
}
#review-block .review-block__label {
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  transform: rotate(-46deg) translate(-36px, -11px);
  height: 20px;
  padding: 0;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: #fff;
}
#review-block .review-block__casino {
  display: flex;
  align-items: center;
  gap: 12px;
}
#review-block .review-block__number {
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  color: rgba(255, 255, 255, 0.7);
}
#review-block .review-block__logo-wrapper{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 90px;
}
#review-block .review-block__logo {
  object-fit: contain;
  box-shadow: none;
  max-height: 90px;
  margin: 0;
}
#review-block .review-block__name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-grow: 1;
}
#review-block .review-block__bonus {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
#review-block .review-block__bonus:has(span:nth-child(2)) span:first-child{
  color: #FFDA03;
}
#review-block .review-block__bonus strong,
#review-block .review-block__bonus b {
  color: #fff;
  font-weight: 700;
}
#review-block .review-block__code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
#review-block .review-block__action {
  display: flex;
  justify-content: flex-end;
}
#review-block .review-block__button {
  display: inline-block;
  padding: 12px 32px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
#review-block .review-block__button:hover {
  background: #d81b60;
  transform: translateY(-1px);
}
@media (max-width: 750px) and (min-width: 601px) {
  #review-block .review-block__header {
    grid-template-columns: 1fr 1fr;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr 1fr;
  }
  .review-block__action {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #review-block .review-block__button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #review-block {
    padding: 8px;
  }
  #review-block .review-block__header {
    display: none;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }
  #review-block .review-block__logo-wrapper {
    height: auto;
  }
  #review-block .review-block__casino {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  #review-block .review-block__name {
    font-size: 15px;
  }
  #review-block .review-block__bonus {
    font-size: 15px;
  }
  #review-block .review-block__action {
    justify-content: center;
  }
  #review-block .review-block__button {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}
