* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: #0e0e16;
    background: #0c0d25;
    line-height: 1.5;
}

/* ====== Header (BEM) ====== */
.slotland__header {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    z-index: 50;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.slotland__header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(12, 13, 37, .9);
    backdrop-filter: saturate(140%) blur(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.slotland-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.slotland-header img {
    height: 40px;
    width: auto;
}

.slotland-header__brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    letter-spacing: .5px;
    color: #fff;
    text-decoration: none;
}

.slotland-header__brand i {
    font-size: 22px
}

.slotland-header__brand span {
    font-size: 18px
}

.slotland-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.slotland-nav__link {
    color: #cfe4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: opacity .2s ease, background .2s ease;
}

.slotland-nav__link:hover {
    background: rgba(255, 255, 255, .08);
    opacity: .95
}

.slotland-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #35e27d;
    color: #041a0e;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

.slotland-header__cta i {
    font-size: 16px
}

/* Burger */
.slotland-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 0;
    cursor: pointer;
}

/* Mobile menu panel */
.slotland-navpanel {
    display: none;
    position: fixed;
    inset: 64px 0 auto 0;
    background: linear-gradient(180deg, #11143a 0%, #0b0c26 100%);
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 14px 18px 28px;
}

.slotland-navpanel--open {
    display: block
}

.slotland-navpanel__grid {
    display: grid;
    gap: 10px;
}

.slotland-navpanel__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e9f2ff;
    text-decoration: none;
    padding: 12px 10px;
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
    font-weight: 700;
}

.slotland-navpanel__link i {
    opacity: .9
}

/* ====== Hero ====== */
.slotland-hero {
    position: relative;
    overflow: hidden;
    padding-top: 84px;
    /* room for sticky header */
    background:
        radial-gradient(1200px 500px at 70% -200px, #7c4dff33 0%, transparent 60%),
        radial-gradient(900px 400px at 10% 0%, #00e5ff22 0%, transparent 60%),
        linear-gradient(180deg, #12143b 0%, #0b0c26 60%, #090a1e 100%);
}

.slotland-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 18px 16px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: center;
}

.slotland-hero__title {
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 2px 0 #0006;
}

.slotland-hero__subtitle {
    margin: 0 0 18px;
    color: #c6d6ff;
    font-weight: 600;
}

.slotland-hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.slotland-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 800;
}

.slotland-hero__btn--primary {
    background: #39f57d;
    color: #04160d
}

.slotland-hero__btn--ghost {
    background: rgba(255, 255, 255, .12);
    color: #eaf3ff
}

.slotland-hero__art {
    position: relative;
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .06);
}

/* ====== Film Strip (infinite) ====== */
.slotland-strip {
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, #07081a 40%, #07081a 100%);
    display: block;
}

.slotland-strip__mask {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slotland-strip__track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 14px;
    align-items: center;
    animation: slotland-marquee 22s linear infinite;
    will-change: transform;
}

.slotland-strip__track:hover {
    animation-play-state: paused
}

@keyframes slotland-marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.slotland-strip__item {
    flex: 0 0 auto;
    width: 220px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .08);
    background: #141742;
}

.slotland-strip__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(110%) contrast(105%);
    transform: scale(1.02);
}

/* small decorative glow ring */
.slotland-strip__glow {
    position: absolute;
    inset: auto auto 10px 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: conic-gradient(#fec84b, #d946ef, #60a5fa, #22d3ee, #fec84b);
    filter: blur(10px);
    opacity: .5;
}

/* ====== Footer spacer just for demo scroll ====== */
.slotland-footerpad {
    height: 800px
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .slotland-hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .slotland-hero__art {
        height: 300px
    }
}

@media (max-width: 820px) {
    .slotland-nav {
        display: none
    }

    .slotland-burger {
        display: flex
    }

    .slotland-hero__title {
        font-size: 34px
    }
}

@media (max-width: 520px) {
    .slotland-hero__title {
        font-size: 28px
    }

    .slotland-strip__item {
        width: 180px;
        height: 130px
    }
}

.bg-loop {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    /* делаем в 2 раза шире */
    height: 100%;
    display: flex;
    animation: scrollBg 40s linear infinite;
}

.bg-loop__track {
    display: flex;
    width: 100%;
    height: 100%;
}

.bg-loop__image {
    flex: 0 0 100%;
    /* каждая картинка на весь экран */
    height: 100%;
    object-fit: cover;
}

/* Анимация бесконечной прокрутки */
@keyframes scrollBg {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Контент поверх */
.content {
    position: relative;
    z-index: 2;
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-size: 2rem;

    text-align: center;
}

.bgloop {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bgloop__rail {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    width: 200%;
    animation: bgloop-move 36s linear infinite;
}

@keyframes bgloop-move {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.bgloop__track {
    display: flex;
    height: 100%;
    width: 50%
}

.bgloop__slide {
    flex: 0 0 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bgloop__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(110%) contrast(106%);
}

.bgloop__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 30, .35) 0%, rgba(8, 10, 30, .45) 55%, rgba(8, 10, 30, .65) 100%);
}

/* ===== Content (hero) ===== */
.slothero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.slothero__wrap {
    max-width: 1100px;
    text-align: center;
    padding: 16px
}

.slothero__title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(36px, 6vw, 92px);
    line-height: 1.02;
    margin-bottom: 14px;
    /* белый «обвод» через тени */
    text-shadow:
        0 3px 0 rgba(0, 0, 0, .25),
        -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
    color: #fff;
}

.slothero__subtitle {
    font-weight: 800;
    font-size: clamp(16px, 2.4vw, 28px);
    color: #eaf2ff;
    opacity: .95;
    margin-bottom: 26px;
    letter-spacing: .4px;
}

.slothero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 999px;
    font-weight: 900;
    font-size: clamp(18px, 3vw, 38px);
    text-decoration: none;
    color: #043014;
    background:
        radial-gradient(120% 180% at 50% -20%, #c1ffb8 0%, #70ff9b 28%, #39e06e 52%, #14b84c 78%, #08953a 100%);
    box-shadow:
        inset 0 6px 10px rgba(255, 255, 255, .35),
        inset 0 -10px 16px rgba(0, 0, 0, .25),
        0 10px 26px rgba(0, 0, 0, .45);
    border: 2px solid #0aa34a;
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.slothero__cta i {
    font-size: .85em
}

.slothero__cta:hover {
    transform: translateY(-2px);
    filter: saturate(115%)
}

.slothero__cta:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .45), inset 0 -8px 12px rgba(0, 0, 0, .28)
}

/* small helpers */
.slothero__row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.slothero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #e9f6ff;
    font-weight: 700;
    font-size: 14px
}

.slothero__badge i {
    opacity: .95
}

.slotread_x9 {
    position: relative;
    background: linear-gradient(180deg, #e9f8ff 0%, #eefaff 100%);
    border-top: 6px solid #e247bb;
}

.slotread_x9__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 18px 60px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 52px;
    align-items: center;

}

/* Media (left) */
.slotread_x9__media {
    position: relative;
    min-height: 380px;
}

.slotread_x9__img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

/* coins (Font Awesome) */
.slotread_x9__coin {
    position: absolute;
    right: 70px;
    top: 33px;
    font-size: 64px;
    color: #f8c22b;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .25));
}

.slotread_x9__coin--b {
    right: auto;
    left: 10px;
    top: 28%;
    transform: rotate(-12deg);
    color: #ffd85e
}

/* Content (right) */
.slotread_x9__content {
    padding: 10px 0
}

.slotread_x9__title {
    margin: 0 0 14px;
    text-transform: uppercase;
    color: #dd51b8;
    ;
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: clamp(28px, 5vw, 66px);
}

.slotread_x9__lead {
    margin: 0 0 16px;
    font-size: clamp(16px, 2.2vw, 20px);
    color: #121520;
}

.slotread_x9__p {
    margin: 0 0 14px;
    color: #1e2430;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .slotread_x9__wrap {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .slotread_x9__media {
        order: 1
    }

    .slotread_x9__content {
        order: 2
    }

    .slotread_x9__img {
        min-height: 280px
    }
}

@media (max-width: 560px) {
    .slotread_x9__wrap {
        padding: 28px 14px 40px
    }

    .slotread_x9__coin {
        font-size: 34px;
        top: -10px;
        right: -8px
    }

    .slotread_x9__coin--b {
        left: -6px
    }
}

.whyx7 {
    position: relative;
    background: linear-gradient(180deg, #e9f8ff 0%, #eefaff 100%);
    padding: 58px 0 70px;
}

.whyx7__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

.whyx7__title {
    text-align: center;
    margin: 0 0 62px;
    color: #dd51b8;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: clamp(26px, 4.6vw, 48px);
    text-shadow: 0 1px 0 #fff;
}

/* grid */
.whyx7__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

/* card */
.whyx7-card {
    background: #ffffff4f;
    border-radius: 18px;
    padding: 68px 18px 22px;
    text-align: center;
    position: relative;
    box-shadow:
        0 10px 24px rgba(93, 106, 140, .12),
        inset 0 0 0 1px rgba(20, 26, 60, .06);
    transition: transform .15s ease, box-shadow .15s ease;
}

.whyx7-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(70, 80, 120, .16), inset 0 0 0 1px rgba(20, 26, 60, .08);
}

/* icon badge */
.whyx7-card__icon {
    position: absolute;
    left: 50%;
    top: -26px;
    transform: translateX(-50%);
    width: 84px;
    height: 84px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 120% at 20% 10%, #ffffff 0%, #f7f0ff 40%, #e3d7ff 100%);
    box-shadow: 0 10px 18px rgba(64, 26, 160, .18), inset 0 0 0 1px rgba(60, 30, 130, .08);
}

.whyx7-card__icon i {
    font-size: 40px;
    color: #6a2cf1;
    text-shadow: 0 1px 0 #fff;
}

/* text */
.whyx7-card__h {
    margin: 0 0 8px;
    color: #31117f;
    font-weight: 900;
    letter-spacing: .6px;
    font-size: clamp(16px, 2.2vw, 20px);
}

.whyx7-card__p {
    margin: 0;
    color: #2d3a53;
    font-weight: 700;
    opacity: .9;
    font-size: clamp(13px, 1.9vw, 18px);
}

/* responsive */
@media (max-width: 1120px) {
    .whyx7__grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 720px) {
    .whyx7__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px
    }

    .whyx7 {
        padding: 48px 0 56px
    }

    .whyx7-card {
        padding: 60px 14px 18px
    }

    .whyx7-card__icon {
        width: 76px;
        height: 76px
    }

    .whyx7-card__icon i {
        font-size: 34px
    }
}

@media (max-width: 440px) {
    .whyx7__grid {
        grid-template-columns: 1fr
    }
}

.socialdeck_v7 {
    position: relative;
    background: linear-gradient(180deg, #997fc5 0%, #433954 55%, #120b1e 100%);
    color: #fff;
    padding: 54px 0 70px;
    overflow: hidden;
}

.socialdeck_v7__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

/* ===== Head ===== */
.socialdeck_v7__head {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: end;
    margin-bottom: 26px
}

.socialdeck_v7__title {
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: clamp(28px, 5.2vw, 64px);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .25);
}

.socialdeck_v7__copy p {
    margin: 0;
    font-size: clamp(15px, 2vw, 20px);
    line-height: 1.6;
    color: #e8dcff;
}

/* ===== Grid ===== */
.socialdeck_v7__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== Card ===== */
.socialcard_v7 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    box-shadow: 0 16px 34px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .08);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.socialcard_v7--focus {
    background: linear-gradient(180deg, rgba(131, 88, 255, .25), rgba(255, 255, 255, .02));
    box-shadow: 0 22px 44px rgb(203 187 245 / 35%), inset 0 0 0 1px rgba(255, 255, 255, .1);
}

/* media zone */
.socialcard_v7__media {
    position: absolute;
    inset: 0 0 46%;
    /* leave room for content block at bottom */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    pointer-events: none;
}

.socialcard_v7__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(112%) contrast(104%);
    opacity: .9;
}

.socialcard_v7__badge {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 18px;
}

/* body */
.socialcard_v7__body {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .0) 0%, rgba(0, 0, 0, .25) 70%, rgba(0, 0, 0, .35) 100%);
    padding: 18px 18px 20px;

}

.socialcard_v7__eyebrow {
    margin: 0 0 2px;
    text-transform: uppercase;
    opacity: .85;
    font-weight: 800;
    letter-spacing: .8px
}

.socialcard_v7__num {
    margin: 0 0 4px;
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: clamp(34px, 6.2vw, 82px);
    line-height: 1;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.socialcard_v7__sub {
    margin: 0 0 12px;
    color: #f3eaff;
    font-weight: 700;
    opacity: .95;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.4;
}

.socialcard_v7__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    color: #0a1b36;
    background: linear-gradient(180deg, #51c9ff 0%, #1194ff 100%);
    box-shadow: inset 0 6px 10px rgba(255, 255, 255, .35), inset 0 -10px 16px rgba(0, 0, 0, .25), 0 10px 26px rgba(0, 0, 0, .35);
    border: 2px solid rgba(255, 255, 255, .32);
}

.socialcard_v7__btn:hover {
    filter: saturate(115%);
    transform: translateY(-1px)
}

.socialcard_v7__btn i {
    font-size: 16px
}

/* ===== Responsive ===== */
@media (max-width: 1060px) {
    .socialdeck_v7__head {
        grid-template-columns: 1fr
    }
}

@media (max-width: 980px) {
    .socialdeck_v7__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 620px) {
    .socialdeck_v7__grid {
        grid-template-columns: 1fr
    }

    .socialcard_v7__media {
        inset: 0 0 52%
    }
}

.reviewsDeck_a9 {
    position: relative;
    background: linear-gradient(180deg, #997fc5 100%, #433954 55%, #120b1e 0%);
    color: #fff;
    padding: 38px 0 86px;
    overflow: hidden
}

.reviewsDeck_a9__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

.reviewsDeck_a9__title {
    margin: 0 0 18px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: clamp(26px, 5.4vw, 58px);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .25)
}

/* декоративные FA-иконки */
.reviewsDeck_a9__deco {
    position: absolute;
    opacity: .35;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35))
}

.reviewsDeck_a9__deco--smile {
    left: 24px;
    top: 120px;
    font-size: 56px;
    color: #ffd166
}

.reviewsDeck_a9__deco--heart {
    left: 8px;
    bottom: 140px;
    font-size: 72px;
    color: #ff4d7d
}

.reviewsDeck_a9__deco--play {
    right: 24px;
    top: 160px;
    font-size: 70px;
    color: #ff9bd6
}

.reviewsDeck_a9__deco--hash {
    right: 32px;
    bottom: 170px;
    font-size: 52px;
    color: #67e8f9
}

/* Swiper area */
.revslider_r6 {
    padding: 14px 2px 56px
}

.revslider_r6 .swiper-wrapper {
    align-items: stretch
}

.revslider_r6 .swiper-slide {
    height: auto;
    display: flex
}

/* Card */
.revcard_a9 {
    /* background: rgba(150, 108, 240, .24);
    border-radius: 18px; */
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 16px 34px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .12) */
}

.revcard_a9__avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 16px
}

.revcard_a9__avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .35), inset 0 0 0 4px rgba(255, 255, 255, .18)
}

.revcard_a9__text {
    color: #f1eaff;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: .2px;
    font-size: clamp(14px, 2.1vw, 18px);
    margin: 0 0 14px
}

.revcard_a9__name {
    margin: 0;
    font-weight: 900;
    color: #fff;
    opacity: .95
}

/* Nav buttons */
.reviewsDeck_a9__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px
}

.reviewsDeck_a9__btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .45);
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease
}

.reviewsDeck_a9__btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .12);
    border-color: #fff
}

/* Responsive slides per view */
@media (min-width: 1100px) {
    .revslider_r6 .swiper {
        overflow: visible
    }
}

@media (max-width: 980px) {
    .reviewsDeck_a9__deco--smile {
        left: 10px;
        top: auto;
        bottom: 140px
    }

    .reviewsDeck_a9__deco--play {
        right: 12px;
        top: 120px
    }

}

.gamepromo_z8 {
    position: relative;
    background: linear-gradient(180deg, #997fc5 100%, #433954 55%, #120b1e 0%);
    padding: 74px 0 72px;
}

.gamepromo_z8__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

.gamepromo_z8__slider {
    padding-bottom: 56px
}

.gamepromo_z8 .swiper-slide {
    height: auto;
    display: flex
}

/* ===== CARD ===== */
.gamecard_z8 {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(180deg, #9778ee 0%, #1d1725 100%);
    /* box-shadow: 0 24px 48px rgba(45, 18, 120, .35), inset 0 0 0 1px rgba(255, 255, 255, .14); */
    min-height: 360px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.gamecard_z8::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 20% 20%, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(100% 70% at 80% 80%, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

/* Art (большой персонаж, выступает сверху) */
.gamecard_z8__art {
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.gamecard_z8__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    /* filter: saturate(112%) contrast(104%); */
}

/* Малый логотип справа */
.gamecard_z8__badge {
    position: absolute;
    right: -18px;
    top: 34px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .35);
    overflow: hidden;
    z-index: 2;
}

.gamecard_z8__badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body */
.gamecard_z8__body {
    position: relative;
    z-index: 3;
    padding: 28px;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 20px;
    color: #fff;
    max-width: 720px
}

.gamecard_z8__name {
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #fff;
    font-size: clamp(22px, 3.6vw, 44px);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .25)
}

.gamecard_z8__desc {
    margin: 0 0 18px;
    font-weight: 700;
    color: #f3eaff;
    opacity: .95;
    line-height: 1.6;
    font-size: clamp(14px, 2.2vw, 18px)
}


.gamecard_z8__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 900;
    color: #043014;
    background: radial-gradient(120% 180% at 50% -20%, #c1ffb8 0%, #70ff9b 28%, #39e06e 52%, #14b84c 78%, #08953a 100%);
    border: 2px solid #0aa34a;
    box-shadow: inset 0 6px 10px rgba(255, 255, 255, .35), inset 0 -10px 16px rgba(0, 0, 0, .25), 0 10px 26px rgba(0, 0, 0, .35);
    transition: transform .15s ease, filter .15s ease
}

.gamecard_z8__cta:hover {
    transform: translateY(-2px);
    filter: saturate(112%)
}

/* NAV */
.gamepromo_z8__nav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 6px
}

.gamepromo_z8__btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: transparent;
    color: #e1dfe6;
    border: 2px solid #e4e2ec;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease
}

.gamepromo_z8__btn:hover {
    background: #5c2ee911;
    transform: translateY(-1px)
}

/* Swiper spacing & breakpoints */
#gamesSliderZ8 .swiper-wrapper {
    align-items: stretch
}

@media (min-width: 768px) {
    #gamesSliderZ8 {
        --space: 28px
    }
}

@media (max-width: 820px) {
 

    .gamecard_z8__badge {
        right: -10px;
        top: 24px;
        width: 120px;
        height: 120px
    }
}

.faqdeck_m7 {
    background: linear-gradient(180deg, #997fc5 100%, #433954 55%, #120b1e 0%);
    position: relative;
    z-index: 1;
}

.faqdeck_m7__wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 18px 64px
}

.faqdeck_m7__title {
    margin: 0 0 18px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: #ecebec;
    font-size: clamp(24px, 5.2vw, 52px)
}

/* list + items */
.faqdeck_m7__list {
    background: #fff;
    border-radius: 16px
}

.faqdeck_m7__item {
    position: relative
}

.faqdeck_m7__line {
    display: block;
    height: 1px;
    background: #e8e6f5;
    position: relative;
    margin: 0 0 0 72px
}

/* head */
.faqdeck_m7__head {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: grid;
    grid-template-columns: 56px 1fr 32px;
    gap: 12px;
    align-items: center;
    padding: 18px 8px 18px 20px;
    margin-left: 0
}

.faqdeck_m7__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f4edff 100%);
    color: #6a2cf1;
    box-shadow: 0 8px 18px rgba(106, 44, 241, .12), inset 0 0 0 1px rgba(106, 44, 241, .12)
}

.faqdeck_m7__icon i {
    font-size: 22px
}

.faqdeck_m7__q {
    text-align: left;
    font-weight: 900;
    letter-spacing: .4px;
    color: #2a2355;
    font-size: clamp(16px, 2.6vw, 24px)
}

.faqdeck_m7__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a2cf1
}

.faqdeck_m7__toggle i {
    transition: transform .2s ease
}

/* body */
.faqdeck_m7__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease;
    margin-left: 72px;
    padding-right: 8px;
}

.faqdeck_m7__a {
    margin: 0 0 16px;
    color: #3a3f5a;
    font-weight: 700;
    line-height: 1.6;
    font-size: clamp(14px, 2.1vw, 18px)
}

/* open state */
.faqdeck_m7__item--open .faqdeck_m7__body {
    max-height: 300px
}

.faqdeck_m7__item--open .faqdeck_m7__toggle i {
    transform: rotate(180deg)
}

/* responsive spacing */
@media (max-width:560px) {
    .faqdeck_m7__line {
        margin-left: 64px
    }

    .faqdeck_m7__head {
        grid-template-columns: 48px 1fr 28px
    }

    .faqdeck_m7__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px
    }
}

.footdeck_c11 {
    background: linear-gradient(180deg, #4b139a 0%, #3a0d7a 100%);
    color: #efe8ff;
    position: relative;
    z-index: 5;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    padding: 36px 0 52px
}

.footdeck_c11__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

.footdeck_c11__brand {
    display: flex;
    justify-content: center;
    margin-bottom: 18px
}

.footdeck_c11__logo {
    height: 58px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35));
}

.footdeck_c11__nav {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 26px
}

.footdeck_c11__link {
    color: #f1e9ff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .6px;
    padding: 8px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    opacity: .95
}

.footdeck_c11__link:hover {
    background: rgba(255, 255, 255, .08)
}

.footdeck_c11__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px
}

.footdeck_c11__social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footdeck_c11__label {
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    opacity: .9
}

.footdeck_c11__soc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .45);
    opacity: .95
}

.footdeck_c11__soc:hover {
    background: rgba(255, 255, 255, .12)
}

.footdeck_c11__soc i {
    font-size: 16px
}

.footdeck_c11__stores {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.footdeck_c11__store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #091822;

    font-weight: 900;

}

.footdeck_c11__store i {
    font-size: 18px
}

.footdeck_c11__rule {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, #ff49d6, #6a2cf1, #5de5ff);
    opacity: .35;
    margin: 16px 0 20px
}

.footdeck_c11__legalnav {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 18px
}

.footdeck_c11__lgl {
    color: #f1e9ff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 13px;
    opacity: .92
}

.footdeck_c11__lgl:hover {
    text-decoration: underline
}

.footdeck_c11__disc {
    font-weight: 800;
    color: #f4efff;
    opacity: .92
}

.footdeck_c11__disc p {
    margin: 0 0 12px;
    line-height: 1.55;
    font-size: 13px;
    letter-spacing: .2px
}

.footdeck_c11__addr {
    margin-top: 12px;
    display: grid;
    gap: 6px;
    font-style: normal;
    color: #e9defd;
    opacity: .95
}

.footdeck_c11__addr-mail {
    color: #fff;
    text-decoration: none
}

.footdeck_c11__addr-mail:hover {
    text-decoration: underline
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
    .footdeck_c11__legalnav {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 620px) {
    .footdeck_c11__row {
        flex-direction: column;
        align-items: flex-start
    }

    .footdeck_c11__stores {
        width: 100%
    }

    .footdeck_c11__nav {
        gap: 18px
    }

    .footdeck_c11__legalnav {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 400px) {
    .footdeck_c11__legalnav {
        grid-template-columns: 1fr
    }
}

span.footdeck_c11__addr-line {
    text-align: center;
}

.footdeck_c11__disc h2 {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.footdeck_c11__disc h2 img {
    height: 50px;
    width: auto;
}

.aboutBlock_v1 {
    padding: 52px 16px;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
}

.aboutBlock_v1__inner {
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2e9df9 0%, #2f4162 40%, #2b61c9 100%);
    border-radius: 22px;
    padding: 26px 26px;
    display: flex;
    gap: 28px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(12, 16, 26, .45);
    overflow: hidden;
}

/* media (left) */
.aboutBlock_v1__media {
    flex: 0 0 320px;
    position: relative;
    min-height: 220px
}

.aboutBlock_v1__hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, .18);
    -webkit-filter: brightness(.98) saturate(1.06);
    filter: brightness(.98) saturate(1.06);
}

.aboutBlock_v1__logo {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 96px;
    height: 96px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
    border: 5px solid rgba(255, 255, 255, .06);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .06));
    object-fit: cover;
}

/* content (right) */
.aboutBlock_v1__content {
    flex: 1;
    color: #fff;
    padding: 6px 10px
}

.aboutBlock_v1__title {
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.5px;
    margin: 6px 0 14px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "Oswald", "Segoe UI", Arial, sans-serif;
    text-shadow: 0 6px 24px rgba(0, 0, 0, .35)
}

.aboutBlock_v1__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .95);
    max-width: 680px;
    margin-bottom: 18px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .22)
}

/* button */
.aboutBlock_v1__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 40px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .28);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(43, 86, 230, .14);
    transition: all .18s ease;
    backdrop-filter: blur(4px);
}

.aboutBlock_v1__btn i {
    font-size: 16px
}

.aboutBlock_v1__btnIcon {
    opacity: 0.9;
    font-size: 13px
}

.aboutBlock_v1__btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .66);
    background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}

/* small screens: stack */
@media (max-width:880px) {
    .aboutBlock_v1__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        gap: 18px
    }

    .aboutBlock_v1__media {
        flex: 0 0 auto;
        min-height: 180px
    }

    .aboutBlock_v1__content {
        text-align: left
    }

    .aboutBlock_v1__title {
        font-size: 28px
    }

    .aboutBlock_v1__text {
        font-size: 14px
    }
}

/* very small */
@media (max-width:420px) {
    .aboutBlock_v1__inner {
        padding: 12px;
        border-radius: 14px
    }

    .aboutBlock_v1__logo {
        width: 76px;
        height: 76px;
        border-radius: 12px;
        left: 10px;
        top: 10px
    }

    .aboutBlock_v1__title {
        font-size: 20px
    }

    .aboutBlock_v1__btn {
        padding: 10px 14px;
        font-size: 14px
    }
}

.gamepromo_z8__grid {
    display: grid;
    gap: 55px;
    grid-template-columns: 1fr 1fr 1fr;
}

iframe {
    height: 90vh;
    width: 100%;
    border: 0;
}

.hot-topics_a3k9 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 16px;
}

.hot-topics_a3k9__title {
    text-align: center;
    font-size: 36px;
    margin: 8px 0 28px;
    font-weight: 600;
    color: #111;
}

.hot-topics_a3k9__list {
    display: grid;
    gap: 18px;
}

.hot-topics_a3k9__item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(20, 20, 20, 0.06);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
}

.hot-topics_a3k9__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
}

/* Left accent "pill" image */
.hot-topics_a3k9__accent {
    width: 46px;
    min-width: 46px;
    height: 72px;
    display: block;
    object-fit: cover;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-right: 18px;
    margin-left: 18px;
}

/* Content area */
.hot-topics_a3k9__head {
    flex: 1;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.hot-topics_a3k9__label {
    font-size: 16px;
    font-weight: 500;
    color: #1b1b1b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hot-topics_a3k9__chev {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .25s ease;
    color: #666;
    font-size: 14px;
}

/* Hidden content */
.hot-topics_a3k9__body {
    width: 100%;
    padding: 0 18px 18px 100px;
    /* keep left space in line with accent */
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    display: none;
    line-height: 1.5;
}

/* Open state styles */
.hot-topics_a3k9__item.is-open {
    border-radius: 14px;
}

.hot-topics_a3k9__item.is-open .hot-topics_a3k9__body {
    display: block;
}

.hot-topics_a3k9__item.is-open .hot-topics_a3k9__chev {
    transform: rotate(180deg);
    color: #444;
}

/* small screens */
@media (max-width: 720px) {
    .hot-topics_a3k9__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .hot-topics_a3k9__item {
        flex-direction: row;
    }

    .hot-topics_a3k9__accent {
        width: 40px;
        height: 60px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .hot-topics_a3k9__body {
        padding-left: 72px;
    }
}

/* Tiny touch target for chevron */
.hot-topics_a3k9__chev:active {
    transform: scale(.98);
}

.faqblock_z7x {
    max-width: 980px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 8px 18px;
    box-sizing: border-box;
}

.faqblock_z7x__title {
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 44px;
    letter-spacing: 2px;
    margin: 6px 0 34px;
    color: #3b1a7a;
    /* deep purple */
    font-weight: 600;
}

.faqblock_z7x__list {
    display: grid;
    gap: 0px;
}

.faqblock_z7x__item {
    display: grid;
    grid-template-columns: 52px 1fr 44px;
    align-items: center;
    background: transparent;
    border-radius: 6px;
    overflow: visible;
    position: relative;
    padding: 8px 4px;
}

/* left bulb icon area */
.faqblock_z7x__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-left: 6px;
}

.faqblock_z7x__icon i {
    font-size: 20px;
    color: #6f1fa3;
    /* purple bulb base */
    transform: translateY(0);
}

/* question line */
.faqblock_z7x__head {
    padding: 6px 12px;
    min-width: 0;
}

.faqblock_z7x__question {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    cursor: pointer;
    color: #2b254a;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* chevron */
.faqblock_z7x__chev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: #4b2a7a;
    font-size: 16px;
    margin-right: 6px;
    transition: transform .22s ease;
}

/* separator line under each item */
.faqblock_z7x__sep {
    grid-column: 1 / -1;
    height: 1px;
    background: linear-gradient(90deg, #4b2a7a 0%, #4b2a7a 10%, rgba(75, 42, 122, 0.06) 100%);
    margin-top: 12px;
    margin-left: 72px;
    /* leave space for icon */
}

/* answer area (hidden by default) */
.faqblock_z7x__answer {
    grid-column: 2 / -1;
    padding: 12px 12px 6px 12px;
    color: #4b3b6b;
    font-size: 15px;
    line-height: 1.4;
    display: none;
}

/* open state */
.faqblock_z7x__item.is-open .faqblock_z7x__answer {
    display: block;
}

.faqblock_z7x__item.is-open .faqblock_z7x__chev {
    transform: rotate(180deg);
}


/* put content above pseudo line */
.faqblock_z7x__head,
.faqblock_z7x__icon,
.faqblock_z7x__chev {
    z-index: 2;
    background: transparent;
}

/* mobile adjustments */
@media (max-width: 720px) {
    .faqblock_z7x__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .faqblock_z7x__item {
        grid-template-columns: 46px 1fr 42px;
    }

    .faqblock_z7x__icon {
        width: 46px;
        height: 46px;
    }

    .faqblock_z7x__item::before {
        left: 64px;
    }

    .faqblock_z7x__question {
        font-size: 16px;
    }

    .faqblock_z7x__answer {
        font-size: 14px;
        padding-right: 8px;
    }
}

.cs_m4t {
    max-width: 880px;
    margin: 0 auto;
    padding: 32px 16px
}

.cs_m4t__card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    padding: 28px 24px
}

.cs_m4t__head {
    text-align: center;
    margin-bottom: 18px
}

.cs_m4t__ttl {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 700
}

.cs_m4t__sub {
    font-size: 15px;
    color: #555;
    margin: 0
}

/* tiny logo */
.cs_m4t__logo {
    display: block;
    margin: 0 auto 10px;
    width: 64px;
    height: 64px
}

/* radios */
.cs_m4t__switch {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin: 14px 0 22px
}

.cs_m4t__radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    cursor: pointer;
    color: #333
}

.cs_m4t__radio input {
    accent-color: #6a1fa3;
    width: 16px;
    height: 16px;
    cursor: pointer
}

/* form */
.cs_m4t__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px
}

.cs_m4t__field {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7)
}

.cs_m4t__input,
.cs_m4t__area {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 15px;
    color: #111;
    font-family: inherit
}

.cs_m4t__area {
    min-height: 120px;
    resize: vertical
}

/* file */
.cs_m4t__file {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px dashed rgba(0, 0, 0, .1);
    border-radius: 16px;
    padding: 12px 14px;
    background: #fff
}

.cs_m4t__file i {
    color: #6a1fa3
}

.cs_m4t__file small {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 6px
}

.cs_m4t__fileInput {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

/* help link + button */
.cs_m4t__help {
    text-align: center;
    margin-top: 8px
}

.cs_m4t__help a {
    color: #6a1fa3;
    text-decoration: none;
    font-weight: 600
}

.cs_m4t__btn {
    display: block;
    margin: 18px auto 0;
    border: 0;
    background: #5b1696;
    color: #fff;
    border-radius: 28px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(91, 22, 150, .2)
}

.cs_m4t__btn:active {
    transform: translateY(1px)
}

/* contacts block */
.cs_m4t__contacts {
    margin-top: 24px;
    background: #faf8ff;
    border: 1px solid rgba(106, 31, 163, .12);
    border-radius: 12px;
    padding: 18px
}

.cs_m4t__contactsTitle {
    font-weight: 700;
    margin: 0 0 10px;
    color: #3b1a7a
}

.cs_m4t__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.cs_m4t__row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 10px 12px
}

.cs_m4t__row i {
    color: #6a1fa3;
    width: 20px;
    text-align: center;
    margin-top: 2px
}

.cs_m4t__row a {
    color: #3b1a7a;
    text-decoration: none
}

.cs_m4t__miniSep {
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #6a1fa3, rgba(106, 31, 163, .25));
    border-radius: 6px;
    opacity: .25;
    margin-top: 8px
}

@media (max-width:720px) {
    .cs_m4t__card {
        padding: 20px 16px
    }

    .cs_m4t__ttl {
        font-size: 28px
    }

    .cs_m4t__grid {
        grid-template-columns: 1fr
    }
}

.cs_m4t {
    max-width: 880px;
    margin: 0 auto;
    padding: 32px 16px
}

.cs_m4t__card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    padding: 28px 24px
}

.cs_m4t__head {
    text-align: center;
    margin-bottom: 18px
}

.cs_m4t__ttl {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 700
}

.cs_m4t__sub {
    font-size: 15px;
    color: #555;
    margin: 0
}

/* tiny logo */
.cs_m4t__logo {
    display: block;
    margin: 0 auto 10px;
    width: 64px;
    height: 64px
}

/* radios */
.cs_m4t__switch {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin: 14px 0 22px
}

.cs_m4t__radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    cursor: pointer;
    color: #333
}

.cs_m4t__radio input {
    accent-color: #6a1fa3;
    width: 16px;
    height: 16px;
    cursor: pointer
}

/* form */
.cs_m4t__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px
}

.cs_m4t__field {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7)
}

.cs_m4t__input,
.cs_m4t__area {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 15px;
    color: #111;
    font-family: inherit
}

.cs_m4t__area {
    min-height: 120px;
    resize: vertical
}

/* file */
.cs_m4t__file {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px dashed rgba(0, 0, 0, .1);
    border-radius: 16px;
    padding: 12px 14px;
    background: #fff
}

.cs_m4t__file i {
    color: #6a1fa3
}

.cs_m4t__file small {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 6px
}

.cs_m4t__fileInput {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

/* help link + button */
.cs_m4t__help {
    text-align: center;
    margin-top: 8px
}

.cs_m4t__help a {
    color: #6a1fa3;
    text-decoration: none;
    font-weight: 600
}

.cs_m4t__btn {
    display: block;
    margin: 18px auto 0;
    border: 0;
    background: #5b1696;
    color: #fff;
    border-radius: 28px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(91, 22, 150, .2)
}

.cs_m4t__btn:active {
    transform: translateY(1px)
}

/* contacts block */
.cs_m4t__contacts {
    margin-top: 24px;
    background: #faf8ff;
    border: 1px solid rgba(106, 31, 163, .12);
    border-radius: 12px;
    padding: 18px
}

.cs_m4t__contactsTitle {
    font-weight: 700;
    margin: 0 0 10px;
    color: #3b1a7a
}

.cs_m4t__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.cs_m4t__row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 10px 12px
}

.cs_m4t__row i {
    color: #6a1fa3;
    width: 20px;
    text-align: center;
    margin-top: 2px
}

.cs_m4t__row a {
    color: #3b1a7a;
    text-decoration: none
}

.cs_m4t__miniSep {
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #6a1fa3, rgba(106, 31, 163, .25));
    border-radius: 6px;
    opacity: .25;
    margin-top: 8px
}

@media (max-width:720px) {
    .cs_m4t__card {
        padding: 20px 16px
    }

    .cs_m4t__ttl {
        font-size: 28px
    }

    .cs_m4t__grid {
        grid-template-columns: 1fr
    }
}

.terms_k7r {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px 60px;
    box-sizing: border-box
}

/* header banner */
.terms_k7r__banner {
    background: #f44336;
    color: #fff;
    padding: 44px 18px;
    border-bottom: 6px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    border-radius: 6px 6px 0 0
}

.terms_k7r__logo {
    display: inline-block;
    margin-bottom: 8px
}

.terms_k7r__logo img {
    height: 48px;
    display: block
}

.terms_k7r__title {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 34px;
    margin: 6px 0 10px;
    letter-spacing: 1px
}

.terms_k7r__subtitle {
    font-size: 13px;
    opacity: .95;
    margin: 0
}

/* language links row */
.terms_k7r__langs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 14px 0 22px;
    font-size: 13px
}

.terms_k7r__langs a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px
}

.terms_k7r__langs a:hover {
    text-decoration: underline
}

/* card container */
.terms_k7r__card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    margin-top: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03)
}

.terms_k7r__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.terms_k7r__h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #2b2b2b;
    margin: 0
}

.terms_k7r__meta {
    font-size: 13px;
    color: #666
}

/* layout: two columns */
.terms_k7r__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 26px;
    margin-top: 18px
}

.terms_k7r__content {
    font-size: 15px;
    color: #2e2e2e;
    line-height: 1.55
}

.terms_k7r__content p {
    margin: 0 0 12px
}

.terms_k7r__content h2 {
    font-family: Montserrat, sans-serif;
    margin: 18px 0 10px;
    font-size: 18px;
    color: #2b2b2b
}

/* right sidebar (summary / quick links) */
.terms_k7r__sidebar {
    background: #fbf8ff;
    border: 1px solid rgba(106, 31, 163, 0.06);
    padding: 16px;
    border-radius: 10px
}

.terms_k7r__toc {
    list-style: none;
    padding: 0;
    margin: 0
}

.terms_k7r__toc li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
    font-size: 14px
}

.terms_k7r__toc li a {
    color: #5b1696;
    text-decoration: none
}

/* footer small */
.terms_k7r__foot {
    margin-top: 26px;
    font-size: 13px;
    color: #666
}

/* small logo/brand at top-left inside card */
.terms_k7r__brand {
    display: flex;
    gap: 10px;
    align-items: center
}

.terms_k7r__brand img {
    height: 34px
}

/* responsive */
@media (max-width:980px) {
    .terms_k7r__layout {
        grid-template-columns: 1fr 300px
    }
}

@media (max-width:760px) {
    .terms_k7r__banner {
        padding: 28px 12px
    }

    .terms_k7r__title {
        font-size: 26px
    }

    .terms_k7r__layout {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .terms_k7r__sidebar {
        order: 2
    }

    .terms_k7r__card {
        padding: 18px
    }
}

.terms_k7r__banner {
    background: #f44336;
    color: #fff;
    padding: 44px 18px;
    border-bottom: 6px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    border-radius: 6px 6px 0 0
}

.terms_k7r__logo {
    display: inline-block;
    margin-bottom: 8px
}

.terms_k7r__logo img {
    height: 48px;
    display: block
}

.terms_k7r__title {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 34px;
    margin: 6px 0 10px;
    letter-spacing: 1px
}

.terms_k7r__subtitle {
    font-size: 13px;
    opacity: .95;
    margin: 0
}

/* language links row */
.terms_k7r__langs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 14px 0 22px;
    font-size: 13px
}

.terms_k7r__langs a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px
}

.terms_k7r__langs a:hover {
    text-decoration: underline
}

/* card container */
.terms_k7r__card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    margin-top: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03)
}

.terms_k7r__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.terms_k7r__h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #2b2b2b;
    margin: 0
}

.terms_k7r__meta {
    font-size: 13px;
    color: #666
}

/* layout: two columns */
.terms_k7r__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 26px;
    margin-top: 18px
}

.terms_k7r__content {
    font-size: 15px;
    color: #2e2e2e;
    line-height: 1.55
}

.terms_k7r__content p {
    margin: 0 0 12px
}

.terms_k7r__content h2 {
    font-family: Montserrat, sans-serif;
    margin: 18px 0 10px;
    font-size: 18px;
    color: #2b2b2b
}

/* right sidebar (summary / quick links) */
.terms_k7r__sidebar {
    background: #fbf8ff;
    border: 1px solid rgba(106, 31, 163, 0.06);
    padding: 16px;
    border-radius: 10px
}

.terms_k7r__toc {
    list-style: none;
    padding: 0;
    margin: 0
}

.terms_k7r__toc li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
    font-size: 14px
}

.terms_k7r__toc li a {
    color: #5b1696;
    text-decoration: none
}

/* footer small */
.terms_k7r__foot {
    margin-top: 26px;
    font-size: 13px;
    color: #666
}

/* small logo/brand at top-left inside card */
.terms_k7r__brand {
    display: flex;
    gap: 10px;
    align-items: center
}

.terms_k7r__brand img {
    height: 34px
}

/* responsive */
@media (max-width:980px) {
    .terms_k7r__layout {
        grid-template-columns: 1fr 300px
    }
}

@media (max-width:760px) {
    .terms_k7r__banner {
        padding: 28px 12px
    }

    .terms_k7r__title {
        font-size: 26px
    }

    .terms_k7r__layout {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .terms_k7r__sidebar {
        order: 2
    }

    .terms_k7r__card {
        padding: 18px
    }
}

.page_container_q1z {
    max-width: 1100px;
    margin: 20px auto;
    padding: 18px
}

/* ===========================
   Age modal (BEM with static suffix)
   =========================== */
.agegate_q1z__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 12, 12, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1100;
}

.agegate_q1z__panel {
    width: 92%;
    max-width: 520px;
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    box-shadow: 0 18px 48px rgba(10, 10, 10, 0.28);
    text-align: center;
}

.agegate_q1z__logo {
    width: 76px;
    height: 76px;
    margin: 0 auto 10px;
    display: block;
    border-radius: 12px;
    object-fit: cover
}

.agegate_q1z__title {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 700;
    color: #2b2b2b;
    font-size: 22px;
    margin: 6px 0
}

.agegate_q1z__text {
    font-size: 15px;
    color: #444;
    margin: 8px 0 18px
}

.agegate_q1z__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.agegate_q1z__btn {
    padding: 12px 18px;
    border-radius: 28px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px
}

.agegate_q1z__btn--yes {
    background: #5b1696;
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 22, 150, 0.18)
}

.agegate_q1z__btn--no {
    background: #f4f4f6;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.06)
}

.agegate_q1z__note {
    font-size: 12px;
    color: #888;
    margin-top: 12px
}

/* ===========================
   Cookie banner (bottom)
   =========================== */
   .cookiebar_q1z {
    position: fixed;
    left: 16px;
    right: 16px;
    max-width: 300px;
    bottom: 18px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex
;
    gap: 12px;
    align-items: center;
    box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
    z-index: 1050;
    flex-wrap: wrap;
}

.cookiebar_q1z__icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #faf6ff)
}

.cookiebar_q1z__content {
    flex: 1
}

.cookiebar_q1z__title {
    font-weight: 700;
    color: #2b254a;
    margin: 0 0 4px;
    font-size: 14px
}

.cookiebar_q1z__desc {
    font-size: 13px;
    color: #555;
    margin: 0
}

.cookiebar_q1z__controls {
    display: flex;
    gap: 10px;
    align-items: center
}

.cookiebar_q1z__accept {
    background: #5b1696;
    color: #fff;
    border: 0;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700
}

.cookiebar_q1z__decline {
    background: transparent;
    border: 1px solid rgba(90, 20, 150, 0.12);
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    color: #5b1696;
    font-weight: 700
}

/* small screens */
@media (max-width:680px) {
    .agegate_q1z__panel {
        padding: 18px 14px
    }

    .agegate_q1z__title {
        font-size: 20px
    }

    .cookiebar_q1z {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px
    }

    .cookiebar_q1z__controls {
        width: 100%;
        justify-content: space-between;
        margin-top: 8px
    }
}
@media screen and (max-width: 768px) {
    .gamepromo_z8__grid

 {
    display: grid
;
    gap: 55px;
    grid-template-columns: 1fr;
}
}