@font-face {
    font-family: "MegaAero";
    src: url("/assets/frontend/img/mega/Aero.86a3afac.ttf") format("truetype");
    font-display: swap;
}

.builder-banner,
.builder-container,
.builder-two-columns,
.builder-cta,
.builder-feature-cards {
    position: relative;
    width: 100%;
}

.builder-banner {
    min-height: 420px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #111827;
    color: #fff;
}

.builder-banner-compact {
    min-height: 280px;
}

.builder-banner-tall {
    min-height: 620px;
}

.builder-banner-media,
.builder-banner-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.builder-banner-media img {
    object-fit: cover;
}

.builder-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .2));
}

.builder-banner-copy {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.builder-align-center .builder-banner-copy,
.builder-align-center.builder-cta {
    text-align: center;
}

.builder-align-right .builder-banner-copy,
.builder-align-right.builder-cta {
    text-align: right;
}

.builder-banner h1,
.builder-container h2,
.builder-two-columns h2,
.builder-cta h2,
.builder-feature-cards h2 {
    margin: 0 0 12px;
    line-height: 1.05;
}

.builder-banner h1 {
    max-width: 760px;
    font-size: clamp(36px, 6vw, 72px);
}

.builder-align-center .builder-banner h1,
.builder-align-center.builder-banner h1 {
    margin-left: auto;
    margin-right: auto;
}

.builder-eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 700;
}

.builder-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 22px;
    border-radius: 6px;
    background: #f6c549;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.builder-button-secondary {
    background: transparent;
    color: inherit;
    border: 1px solid currentColor;
}

.builder-container {
    background-size: cover;
    background-position: center;
}

.builder-container-inner,
.builder-two-columns,
.builder-cta,
.builder-feature-cards {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.builder-container-narrow .builder-container-inner {
    width: min(760px, calc(100% - 32px));
}

.builder-container-wide .builder-container-inner {
    width: min(1360px, calc(100% - 32px));
}

.builder-container-full .builder-container-inner {
    width: calc(100% - 32px);
}

.builder-padding-none {
    padding: 0;
}

.builder-padding-sm {
    padding: 32px 0;
}

.builder-padding-md {
    padding: 64px 0;
}

.builder-padding-lg {
    padding: 96px 0;
}

.builder-section-subtitle {
    max-width: 760px;
    margin: 0 0 18px;
    opacity: .78;
}

.builder-rich-content > *:first-child {
    margin-top: 0;
}

.builder-two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 72px 0;
}

.builder-image-right .builder-two-columns-media {
    order: 2;
}

.builder-two-columns-media img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.builder-cta {
    padding: 56px 32px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
}

.builder-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: inherit;
}

.builder-feature-cards {
    padding: 72px 0;
}

.builder-section-heading {
    margin-bottom: 24px;
}

.builder-card-grid {
    display: grid;
    grid-template-columns: repeat(var(--builder-columns, 3), minmax(0, 1fr));
    gap: 18px;
}

.builder-card {
    min-width: 0;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.builder-card-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 14px;
}

.builder-card h3 {
    margin: 0 0 8px;
}

.builder-card a {
    color: #f6c549;
    font-weight: 700;
}

.builder-custom-data {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.builder-custom-data__items {
    display: grid;
    grid-template-columns: repeat(var(--builder-columns, 3), minmax(0, 1fr));
    gap: 18px;
}

.builder-custom-data--list .builder-custom-data__items,
.builder-custom-data--compact .builder-custom-data__items {
    grid-template-columns: 1fr;
}

.builder-custom-data__item {
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
}

.builder-custom-data--list .builder-custom-data__item {
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
}

.builder-custom-data--compact .builder-custom-data__item {
    display: flex;
    align-items: center;
}

.builder-custom-data__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.builder-custom-data--list .builder-custom-data__image {
    height: 100%;
    aspect-ratio: auto;
}

.builder-custom-data--compact .builder-custom-data__image {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
}

.builder-custom-data__body {
    padding: 20px;
}

.builder-custom-data__body h3 {
    margin: 0 0 8px;
}

.builder-custom-data__subtitle {
    margin: 0 0 10px;
    opacity: .72;
}

.builder-custom-data__description > *:first-child {
    margin-top: 0;
}

.builder-custom-data__description > *:last-child {
    margin-bottom: 0;
}

.builder-custom-data__link {
    display: inline-flex;
    margin-top: 14px;
    color: #f6c549;
    font-weight: 700;
}

.builder-custom-data__empty {
    opacity: .72;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.menu-caret {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 40;
    min-width: 190px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(17, 24, 39, .96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease;
}

.has-dropdown:hover > .menu-dropdown,
.has-dropdown:focus-within > .menu-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-dropdown .menu-item {
    display: block;
}

.menu-dropdown .menu-link {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.menu-dropdown .menu-link:hover {
    background: rgba(255, 255, 255, .1);
}

.menu-dropdown .menu-dropdown {
    top: 0;
    left: calc(100% + 8px);
}

@media (max-width: 900px) {
    .builder-two-columns,
    .builder-card-grid,
    .builder-custom-data__items,
    .builder-custom-data--list .builder-custom-data__item {
        grid-template-columns: 1fr;
    }

    .builder-image-right .builder-two-columns-media {
        order: 0;
    }

    .builder-banner {
        min-height: 360px;
    }

    .mobile-menu-nav .menu-item {
        width: 100%;
    }

    .mobile-menu-nav .menu-link {
        justify-content: flex-start;
        width: 100%;
    }

    .mobile-menu-nav .menu-dropdown {
        position: static;
        min-width: 0;
        padding: 4px 0 4px 16px;
        margin-top: 4px;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .mobile-menu-nav .menu-dropdown .menu-link {
        padding: 7px 0;
    }
}

:root {
    --cms-bg: var(--theme-background-color, #050505);
    --cms-gold: var(--theme-primary-color, #f6c549);
    --cms-gold-deep: #a96d12;
    --cms-red: var(--theme-secondary-color, #d8172f);
    --cms-text: var(--theme-text-color, #ffffff);
    --cms-muted: #d8d8d8;
    --cms-line: rgba(246, 197, 73, .34);
    --cms-panel: #101010;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #010b49;
    color: var(--cms-text);
    font-family: var(--theme-font-family, Arial, Helvetica, sans-serif);
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.cms-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #010b49;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 8px 16px;
    background: rgba(0, 0, 0, .5);
    border-bottom: 0;
}

.header-shell {
    width: 100%;
    min-height: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand img {
    width: 140px;
    max-width: 25vmin;
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.main-nav a {
    padding: 10px 0;
}

.main-nav a:hover {
    color: var(--cms-gold);
}

.mobile-menu-divider,
.mobile-menu-languages {
    display: none;
}

.mobile-menu-nav {
    display: contents;
}

.language-switcher {
    position: relative;
}

.language-switcher button,
.nav-toggle {
    border: 1px solid rgba(246, 197, 73, .4);
    background: #111;
    color: var(--cms-gold);
    cursor: pointer;
}

.language-switcher button {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
    overflow: hidden;
}

.lang-toggle-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 10002;
    min-width: 160px;
    display: none;
    padding: 8px;
    background: #111;
    border: 1px solid var(--cms-line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
}

.language-menu.is-open {
    display: grid;
}

.language-menu a {
    padding: 10px 12px;
    border-radius: 6px;
}

.language-menu a:hover {
    background: rgba(246, 197, 73, .12);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    border-radius: 6px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--cms-gold);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    background: #010b49;
}

.hero-track {
    display: flex;
    transition: transform .45s ease;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: 0;
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
}

.hero-slide img {
    height: auto;
    object-fit: cover;
}

.hero-copy {
    position: absolute;
    left: 7vw;
    top: 50%;
    z-index: 2;
    max-width: 560px;
    transform: translateY(-50%);
}

.hero-copy p,
.eyebrow {
    color: var(--cms-gold);
    font-weight: 800;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 10px 0;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 1;
}

.hero-text {
    color: #fff3cd;
    font-size: 18px;
    line-height: 1.55;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 3;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .46);
    cursor: pointer;
}

.hero-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--cms-gold);
}

.title-badge {
    position: relative;
    display: grid;
    place-items: center;
    width: min(270px, 92vw);
    margin: 0 auto 14px;
}

.title-badge img {
    width: 100%;
    height: auto;
}

.title-badge span {
    position: absolute;
    left: 55%;
    top: 48%;
    transform: translate(-50%, -50%);
    display: block;
    padding-bottom: 0;
    color: #fff;
    font-family: "MegaAero", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .32), 0 0 14px rgba(255, 255, 255, .28);
    white-space: nowrap;
}

.how-to-section {
    padding: 80px 28px 72px;
    background: linear-gradient(#1a1e79, #110f27 60%, #1a1e79);
}

.how-to-shell {
    width: min(960px, calc(100% - 56px));
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 28px;
}

.how-to-card {
    align-self: center;
    width: 380px;
    min-height: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.how-to-card .title-badge {
    z-index: 2;
    margin-bottom: 0;
    width: min(380px, 94vw);
}

.how-to-copy {
    display: grid;
    justify-items: center;
    width: 100%;
    gap: 16px;
    margin-top: -48px;
    padding: 72px 24px 24px;
    color: #fff;
    text-align: center;
    font-size: 21px;
    line-height: 1.55;
    border: 1px solid aqua;
    box-shadow: 0 0 2px aqua;
}

.how-to-copy p {
    margin: 0;
}

.how-to-logo {
    width: 160px;
}

.how-to-inline-buttons {
    display: none;
}

.download-phone {
    position: relative;
    display: block;
    justify-items: center;
    align-items: end;
    width: 240px;
}

.phone-image {
    width: 240px;
    height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .45));
}

.download-phone .phone-button {
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 2;
    display: inline-grid;
    width: 100%;
    justify-content: center;
    transform: translateY(-50%);
}

.image-play-button,
.play-now-button {
    position: relative;
    display: inline-grid;
    place-items: center;
    border: 0;
}

.how-to-inline-buttons .image-play-button img,
.download-phone .phone-button img {
    width: 200px;
}

.image-play-button img,
.play-now-button img {
    width: 166px;
}

.image-play-button span,
.play-now-button span {
    position: absolute;
    z-index: 1;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .42);
    pointer-events: none;
}

.download-phone .phone-button span {
    font-size: 16px;
}

.play-now-button span {
    font-size: 19px;
}

.home-games {
    padding: 80px 28px 72px;
    background: #010b49;
    position: relative;
    z-index: 1;
}

.home-games-content {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 16px;
    max-width: 100%;
}

.home-games .title-badge {
    z-index: 3;
    margin-bottom: 0;
    width: min(380px, 94vw);
}

.home-games .title-badge span,
.how-to-section .title-badge span,
.partners-section .title-badge span,
.operators-section .title-badge span {
    font-size: 30px;
}

.games-frame {
    position: relative;
    width: min(960px, 100%);
    margin-top: -72px;
    margin-bottom: -84px;
}

.games-frame-bg {
    width: 100%;
    border-radius: 10px;
}

.games {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    align-content: center;
    padding: 12%;
}

.game-card {
    display: block;
    min-width: 0;
    transition: transform .18s ease;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.play-now-button {
    z-index: 2;
    margin-top: 0;
    max-width: 100%;
}

.play-now-button img {
    width: 240px;
}

.partners-section {
    min-height: 0;
    padding: 80px 28px 56px;
    position: relative;
    z-index: 2;
    background-color: #010b49;
    background-image: url("/assets/frontend/img/mega/operator_bg.ad59d669.png");
    background-size: cover;
    background-position: center;
}

.partners-section .title-badge {
    width: min(380px, 94vw);
    margin-bottom: 18px;
}

.operators-section {
    min-height: 0;
    padding: 56px 28px 48px;
    background-color: #010b49;
    background-image: url("/assets/frontend/img/mega/operator_bg.ad59d669.png");
    background-size: cover;
    background-position: center;
}

.operators-section .title-badge {
    width: min(380px, 94vw);
    margin-bottom: 18px;
}

.operators-shell {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 20px;
}

.partners-section .section-description,
.operators-section .section-description {
    margin: 14px auto 20px;
    font-size: 21px;
}

.section-description {
    width: 90%;
    max-width: 800px;
    margin: 6px auto 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

.partners-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
    padding: 16px 0 8px;
}

.partners-img a:first-child {
    flex: 0 1 580px;
    max-width: 580px;
}

.partners-img a:last-child {
    flex: 0 1 325px;
    max-width: 325px;
}

.partners-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.operator-reels {
    width: 100%;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 18px 0;
    margin-top: 8px;
    -webkit-mask-image: linear-gradient(90deg, transparent 1%, #000, transparent 99%);
    mask-image: linear-gradient(90deg, transparent 1%, #000, transparent 99%);
}

.operator-reels--vertical {
    display: none;
}

.operator-reel {
    display: flex;
    width: max-content;
    gap: 20px;
    margin-bottom: 10px;
    will-change: transform;
}

.operator-reel.to-right {
    animation: reelRight 60s linear infinite;
}

.operator-reel.to-left {
    animation: reelLeft 60s linear infinite;
}

.operator-logo {
    display: grid;
    place-items: center;
    width: 220px;
    height: 70px;
    flex: 0 0 auto;
}

.operator-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-contact {
    min-height: 490px;
    padding: 52px 18px 0;
    background-color: #1a1e79;
    background-image: url("/assets/frontend/img/mega/contact_bg.f9769550.jpg");
    background-size: cover;
    background-position: center;
}

.home-contact-inner {
    width: min(660px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 28px;
}

.contact-lady {
    width: 166px;
    flex: 0 0 auto;
}

.contact-panel {
    display: grid;
    align-content: center;
    justify-items: center;
    padding-bottom: 0;
    transform: translateY(-106px);
}

.contact-panel .title-badge {
    z-index: 2;
    margin-bottom: 0;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: min(450px, 100%);
    margin-top: -40px;
    padding: 54px 22px 22px;
    border: 1px solid aqua;
    box-shadow: 0 0 2px aqua;
}

.qr-card {
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.qr-card img {
    width: min(180px, 100%);
    aspect-ratio: 1;
    padding: 0;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.qr-card h3,
.qr-card .cms-btn:not(.contact-channel-btn) {
    display: none;
}

.contact-channel-btn {
    display: none;
}

.qr-card h3 {
    margin: 0;
    color: var(--cms-gold);
}

.cms-btn {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    font-weight: 900;
    text-transform: uppercase;
}

.cms-btn.secondary {
    color: #1b1203;
    background: linear-gradient(180deg, #ffe17a, var(--cms-gold) 52%, var(--cms-gold-deep));
}

.site-footer {
    padding: 20px;
    color: #fff;
    background: #000;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 20px;
}

.image-banner-link img {
    width: min(1180px, calc(100% - 32px));
    max-height: 360px;
    margin: 0 auto;
    object-fit: cover;
}

.prose,
.custom-html {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    color: var(--cms-text);
    line-height: 1.7;
}

@keyframes reelRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes reelLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes reelUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@keyframes reelDown {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(0);
    }
}

.operator-reels--vertical {
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow: hidden;
    padding: 10px 0;
    margin-top: 8px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.operator-reel-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
}

.operator-reel-vertical.to-up {
    animation: reelUp 50s linear infinite;
}

.operator-reel-vertical.to-down {
    animation: reelDown 50s linear infinite;
}

@media (max-width: 900px) {
    :root {
        --mobile-gutter: 16px;
        --mobile-shell: min(calc(100vw - 32px), 420px);
        --mobile-section-y: 28px;
    }

    .header-shell {
        min-height: 70px;
        display: flex;
        gap: 14px;
    }

    .brand img {
        width: 150px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .language-switcher {
        display: none;
    }

    .hero-slider {
        width: 100%;
    }

    .hero-slide picture,
    .hero-slide img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .hero-slide img {
        object-fit: contain;
        object-position: center top;
    }

    .hero-dots {
        bottom: 14px;
    }

    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 72px;
        z-index: 10001;
        display: none;
        flex-direction: row;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 22px 18px;
        background: rgba(16, 16, 16, .96);
        border: 1px solid var(--cms-line);
        border-radius: 8px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
    }

    .main-nav.is-open {
        display: flex;
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 6px;
        flex: 0 0 auto;
        min-width: 108px;
        padding-right: 18px;
    }

    .mobile-menu-nav a {
        padding: 10px 0;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.35;
        white-space: nowrap;
    }

    .mobile-menu-divider {
        display: block;
        width: 1px;
        align-self: stretch;
        min-height: 100%;
        background: rgba(255, 255, 255, .28);
        flex-shrink: 0;
    }

    .mobile-menu-languages {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
        flex: 1;
        min-width: 0;
        padding-left: 18px;
        align-content: start;
    }

    .mobile-lang-item {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        color: #fff;
    }

    .mobile-lang-flag {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        background: #222;
    }

    .mobile-lang-flag img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-lang-name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .how-to-section,
    .home-games,
    .partners-section,
    .operators-section,
    .home-contact {
        padding-left: var(--mobile-gutter);
        padding-right: var(--mobile-gutter);
        overflow-x: clip;
    }

    .how-to-section {
        padding-top: var(--mobile-section-y);
        padding-bottom: var(--mobile-section-y);
    }

    .how-to-shell,
    .home-games-content,
    .operators-shell,
    .home-contact-inner {
        width: var(--mobile-shell);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .how-to-shell {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .how-to-card {
        width: 100%;
    }

    .how-to-card .title-badge,
    .home-games .title-badge,
    .partners-section .title-badge,
    .operators-section .title-badge,
    .contact-panel .title-badge {
        width: 100%;
    }

    .how-to-section .title-badge span,
    .home-games .title-badge span,
    .partners-section .title-badge span,
    .operators-section .title-badge span,
    .contact-panel .title-badge span {
        font-size: 26px;
        white-space: normal;
        line-height: 1.15;
        max-width: 88%;
    }

    .how-to-copy {
        font-size: 14px;
        margin-top: -40px;
        padding: 52px 16px 18px;
    }

    .how-to-logo {
        width: 120px;
    }

    .how-to-inline-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .how-to-inline-buttons .image-play-button {
        width: 100%;
    }

    .how-to-inline-buttons .image-play-button img {
        width: 100%;
        max-width: none;
    }

    .download-phone {
        display: none;
    }

    .home-games {
        padding-top: var(--mobile-section-y);
        padding-bottom: var(--mobile-section-y);
        padding-left: 8px;
        padding-right: 8px;
    }

    .home-games-content {
        width: 100%;
        max-width: none;
        gap: 12px;
    }

    .home-games .title-badge {
        width: min(var(--mobile-shell), 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .games-frame {
        position: relative;
        width: min(calc(100vw - 16px), 480px);
        margin-top: -32px;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .games-frame-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: fill;
        border-radius: 8px;
        pointer-events: none;
    }

    .games {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        padding: 15% 9% 13%;
        margin: 0;
        inset: unset;
        max-width: none;
        align-self: unset;
        justify-self: unset;
    }

    .game-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .play-now-button {
        width: 100%;
        margin-top: 4px;
    }

    .play-now-button img {
        width: 100%;
        max-width: none;
    }

    .partners-section {
        padding-top: var(--mobile-section-y);
        padding-bottom: var(--mobile-section-y);
    }

    .operators-section {
        padding-top: var(--mobile-section-y);
        padding-bottom: var(--mobile-section-y);
    }

    .operators-shell {
        gap: 14px;
        justify-items: center;
    }

    .partners-section .section-description,
    .operators-section .section-description {
        width: 100%;
        font-size: 14px;
        line-height: 1.55;
        margin: 0 auto 14px;
        padding: 0 4px;
    }

    .partners-img {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 8px 0 4px;
    }

    .partners-img a:first-child,
    .partners-img a:last-child {
        flex: 1 1 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }

    .operator-reels--horizontal {
        display: none;
    }

    .operator-reels--vertical {
        display: grid;
        height: min(360px, 58vw);
        max-height: 360px;
    }

    .operator-reels--vertical .operator-logo {
        width: 100%;
        height: 54px;
        padding: 0 4px;
    }

    .operator-reels--vertical .operator-logo img {
        max-height: 100%;
    }

    .home-contact {
        padding-top: var(--mobile-section-y);
        padding-bottom: calc(var(--mobile-section-y) + 8px);
        min-height: 0;
    }

    .home-contact-inner {
        display: grid;
        grid-template-columns: 38% minmax(0, 1fr);
        align-items: end;
        justify-content: center;
        gap: 12px;
    }

    .contact-lady {
        width: 100%;
        max-width: 136px;
        justify-self: center;
        align-self: end;
    }

    .contact-panel {
        align-self: center;
        min-width: 0;
        transform: none;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .contact-panel .title-badge {
        margin-bottom: 0;
    }

    .qr-grid {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: -24px;
        padding: 34px 0 0;
        gap: 10px;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .qr-card {
        width: 100%;
    }

    .qr-card img,
    .qr-card h3 {
        display: none;
    }

    .qr-card .contact-channel-btn {
        display: inline-flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        text-transform: none;
        font-size: 15px;
        font-weight: 800;
    }

    .qr-card:first-child .contact-channel-btn {
        color: #fff;
        background: linear-gradient(180deg, #6bdc78, #25d366);
    }

    .qr-card:last-child .contact-channel-btn {
        color: #fff;
        background: linear-gradient(180deg, #66bfff, #0088cc);
    }
}

@media (max-width: 640px) {
    .header-shell {
        width: 100%;
        gap: 10px;
    }

    .brand img {
        width: 128px;
    }

    .main-nav {
        top: 68px;
        padding: 20px 16px;
    }

    .mobile-menu-nav {
        min-width: 96px;
        padding-right: 14px;
    }

    .mobile-menu-nav a {
        font-size: 15px;
    }

    .mobile-menu-languages {
        gap: 12px 14px;
        padding-left: 14px;
    }

    .mobile-lang-item {
        font-size: 13px;
    }

    .mobile-lang-flag {
        width: 28px;
        height: 28px;
    }

    .hero-slide img {
        object-fit: contain;
    }

    .games-frame {
        width: min(calc(100vw - 12px), 500px);
    }

    .games {
        padding: 13% 7.5% 11%;
        gap: 9px;
    }

    .play-now-button {
        width: min(calc(100vw - 12px), 500px);
        margin-left: auto;
        margin-right: auto;
    }

    .operator-reels--vertical {
        height: min(320px, 62vw);
    }

    .operator-reels--vertical .operator-logo {
        height: 48px;
    }

    .contact-lady {
        max-width: 120px;
    }

    .qr-card .contact-channel-btn {
        min-height: 44px;
        font-size: 14px;
    }

    .hero-slide picture,
    .hero-slide img {
        min-height: 0;
    }

    .hero-copy {
        left: 18px;
        right: 18px;
        max-width: 340px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .site-footer p {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 12px;
    }
}

.cms-page-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.cms-page-preloader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.cms-preloader-icon--spinner::before {
    content: "";
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #f59e0b;
    border-radius: 50%;
    display: block;
    animation: cms-spin 0.8s linear infinite;
}

.cms-preloader-icon--dots::before {
    content: "•••";
    font-size: 32px;
    letter-spacing: 4px;
    animation: cms-pulse 1s ease-in-out infinite;
}

.cms-preloader-logo {
    max-width: 120px;
    animation: cms-pulse 1.2s ease-in-out infinite;
}

.cms-img--loading {
    opacity: 0.35;
    filter: blur(2px);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.cms-img--loaded {
    opacity: 1;
    filter: none;
}

.cms-topbar {
    text-align: center;
    padding: 8px 16px;
    color: #fff;
    font-size: 14px;
}

.cms-topbar a {
    color: inherit;
    text-decoration: none;
}

.builder-brand-logo-grid,
.builder-video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--builder-columns, 3), minmax(0, 1fr));
    gap: 16px;
}

.builder-brand-logo--grayscale .cms-img {
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.builder-brand-logo--hover .builder-brand-logo-item:hover .cms-img {
    filter: grayscale(0);
    opacity: 1;
}

.builder-video-gallery-trigger {
    position: relative;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    width: 100%;
}

.builder-video-gallery-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
}

.cms-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9000;
}

.cms-popup-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9001;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    max-width: 520px;
    width: calc(100% - 32px);
}

.cms-lightbox-dialog {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: 90vw;
}

.cms-lightbox-dialog img {
    max-width: 100%;
    max-height: 90vh;
}

@keyframes cms-spin {
    to { transform: rotate(360deg); }
}

@keyframes cms-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}
