:root {
    --clr-bg: #21293A;
    --clr-header: #1E2534;
    --clr-accent: #00E0FF;
    --clr-btn-reg: #313532;
    --clr-text: #e8ecf0;
    --clr-text-muted: #9aa3b0;
    --clr-border: #2e3a4e;
    --clr-card: #1a2131;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .35);
    --transition: .25s ease
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: opacity var(--transition)
}

a:hover {
    opacity: .8
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit
}

.x4f2a-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.b7k9c-section {
    padding: 60px 0
}

.b7k9c-section + .b7k9c-section {
    padding-top: 0
}

.q9w2e-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -.02em
}

.q9w2e-title span {
    color: var(--clr-accent)
}

.r3t8u-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap
}

.r3t8u-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4)
}

.r3t8u-btn:active {
    transform: translateY(0)
}

.r3t8u-btn--login {
    background: var(--clr-accent);
    color: #0e1520
}

.r3t8u-btn--login:hover {
    filter: brightness(1.1)
}

.r3t8u-btn--reg {
    background: var(--clr-btn-reg);
    color: #fff;
    border: 1px solid #4a5568
}

.r3t8u-btn--reg:hover {
    background: #3d4540
}

.r3t8u-btn--lg {
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: var(--radius)
}

.m5p1q-hdr {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

.m5p1q-hdr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto
}

.m5p1q-hdr__logo {
    flex-shrink: 0
}

.m5p1q-hdr__logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.m5p1q-hdr__nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.m5p1q-hdr__nav a {
    color: var(--clr-text);
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition)
}

.m5p1q-hdr__nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.m5p1q-hdr__right {
    display: flex;
    align-items: center;
    gap: 10px
}

.m5p1q-hdr__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.m5p1q-hdr__online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px #2ecc71;
    animation: k2pulse 2s infinite
}

@keyframes k2pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.m5p1q-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    padding: 4px
}

.m5p1q-burger span {
    display: block;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.m5p1q-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.m5p1q-burger.is-open span:nth-child(2) {
    opacity: 0
}

.m5p1q-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.m5p1q-mob-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    z-index: 999
}

.m5p1q-mob-menu.is-open {
    display: flex
}

.m5p1q-mob-menu a {
    color: var(--clr-text);
    font-size: .9rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.m5p1q-mob-menu a:hover {
    background: rgba(255, 255, 255, .06)
}

.v6h3n-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.v6h3n-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/banner-clubneon.jpg') center/cover no-repeat;
    filter: brightness(.45)
}

.v6h3n-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(21, 28, 42, .9) 40%, rgba(0, 224, 255, .07))
}

.v6h3n-hero__body {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px
}

.v6h3n-hero__tag {
    display: inline-block;
    background: rgba(0, 224, 255, .15);
    border: 1px solid rgba(0, 224, 255, .35);
    color: var(--clr-accent);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px
}

.v6h3n-hero__h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    max-width: 640px;
    margin-bottom: 16px
}

.v6h3n-hero__h1 span {
    color: var(--clr-accent)
}

.v6h3n-hero__desc {
    font-size: 1rem;
    color: #b0bec5;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.8
}

.v6h3n-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.v6h3n-hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.v6h3n-hero__badge strong {
    color: #fff
}

.c8a1s-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition)
}

.c8a1s-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.f2j7k-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.f2j7k-grid--3 > * {
    flex: 1 1 calc(33.333% - 14px)
}

.f2j7k-grid--2 > * {
    flex: 1 1 calc(50% - 10px)
}

.p9r4m-adv__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 224, 255, .12);
    border: 1px solid rgba(0, 224, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px
}

.p9r4m-adv__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.p9r4m-adv__text {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.e5b6z-mirrors__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.e5b6z-mirrors__clock {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 224, 255, .08);
    border: 1px solid rgba(0, 224, 255, .2);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: .82rem;
    color: var(--clr-accent);
    font-weight: 600
}

.e5b6z-mirrors__status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #2ecc71;
    font-weight: 600
}

.e5b6z-mirrors__wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border)
}

.e5b6z-mirrors__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

.e5b6z-mirrors__table th {
    background: #151d2b;
    color: var(--clr-text-muted);
    font-size: .8rem;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--clr-border);
    letter-spacing: .05em;
    text-transform: uppercase
}

.e5b6z-mirrors__table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: .88rem;
    vertical-align: middle
}

.e5b6z-mirrors__table tr:last-child td {
    border-bottom: none
}

.e5b6z-mirrors__table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.e5b6z-mirrors__table .mir-url {
    color: var(--clr-accent);
    font-weight: 600
}

.e5b6z-mirrors__table .mir-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #2ecc71;
    font-size: .82rem;
    font-weight: 600
}

.e5b6z-mirrors__table .mir-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71
}

.e5b6z-mirrors__table .mir-speed {
    color: #f39c12;
    font-weight: 600
}

.n1l0p-bonus__wrap {
    position: relative
}

.n1l0p-bonus__grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.n1l0p-bonus__grid > * {
    flex: 1 1 calc(33.333% - 14px)
}

.n1l0p-bonus__card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden
}

.n1l0p-bonus__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), #6c5ce7)
}

.n1l0p-bonus__label {
    font-size: .75rem;
    color: var(--clr-accent);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.n1l0p-bonus__amount {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1
}

.n1l0p-bonus__name {
    font-size: .95rem;
    font-weight: 600;
    color: var(--clr-text)
}

.n1l0p-bonus__desc {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    flex: 1
}

.n1l0p-bonus__cond {
    font-size: .75rem;
    color: var(--clr-text-muted);
    border-top: 1px solid var(--clr-border);
    padding-top: 12px
}

.g7d4f-games__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.g7d4f-games__grid > * {
    flex: 1 1 calc(16.666% - 14px);
    min-width: 160px
}

.g7d4f-game-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px 16px;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.g7d4f-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .5)
}

.g7d4f-game-card__logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a2a3a, #253347);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0
}

.g7d4f-game-card__name {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3
}

.g7d4f-game-card__provider {
    font-size: .72rem;
    color: var(--clr-text-muted);
    margin-top: -6px
}

.g7d4f-game-card__btn {
    width: 100%;
    padding: 8px 0;
    background: rgba(0, 224, 255, .1);
    border: 1px solid rgba(0, 224, 255, .25);
    color: var(--clr-accent);
    font-size: .78rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.g7d4f-game-card__btn:hover {
    background: rgba(0, 224, 255, .2)
}

.w8q5r-wheel {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center
}

.w8q5r-wheel__canvas-wrap {
    position: relative;
    flex-shrink: 0
}

.w8q5r-wheel__canvas-wrap::after {
    content: '▼';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: var(--clr-accent);
    filter: drop-shadow(0 0 6px var(--clr-accent))
}

#d3r7t-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 224, 255, .2), 0 0 0 4px rgba(0, 224, 255, .15);
    display: block
}

.w8q5r-wheel__info {
    flex: 1;
    min-width: 260px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.w8q5r-wheel__tagline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.w8q5r-wheel__tagline span {
    color: var(--clr-accent)
}

.w8q5r-wheel__desc {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.w8q5r-wheel__result {
    background: rgba(0, 224, 255, .08);
    border: 1px solid rgba(0, 224, 255, .25);
    border-radius: var(--radius);
    padding: 20px;
    display: none;
    animation: s2fade .4s ease
}

.w8q5r-wheel__result.is-visible {
    display: block
}

.w8q5r-wheel__result--win {
    background: rgba(46, 204, 113, .08);
    border-color: rgba(46, 204, 113, .3)
}

.w8q5r-wheel__result-text {
    font-size: .95rem;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.5
}

.w8q5r-wheel__result--win .w8q5r-wheel__result-text {
    color: #2ecc71
}

@keyframes s2fade {
    from {
        opacity: 0;
        transform: translateY(8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.k4v9n-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.k4v9n-faq__item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.k4v9n-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: transparent;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition)
}

.k4v9n-faq__q:hover {
    background: rgba(255, 255, 255, .04)
}

.k4v9n-faq__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--clr-accent);
    transition: transform .3s
}

.k4v9n-faq__item.is-open .k4v9n-faq__icon {
    transform: rotate(45deg);
    background: rgba(0, 224, 255, .1);
    border-color: rgba(0, 224, 255, .4)
}

.k4v9n-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease
}

.k4v9n-faq__item.is-open .k4v9n-faq__a {
    max-height: 400px
}

.k4v9n-faq__a-inner {
    padding: 0 20px 18px;
    font-size: .87rem;
    color: var(--clr-text-muted);
    line-height: 1.75
}

.z2x8c-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px
}

.z2x8c-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
    align-items: flex-start
}

.z2x8c-footer__brand {
    flex: 0 0 200px
}

.z2x8c-footer__brand img {
    height: 36px;
    margin-bottom: 12px;
    opacity: .9
}

.z2x8c-footer__brand p {
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.z2x8c-footer__col {
    flex: 1;
    min-width: 140px
}

.z2x8c-footer__col-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.z2x8c-footer__col a {
    display: block;
    color: var(--clr-text-muted);
    font-size: .82rem;
    margin-bottom: 8px;
    transition: color var(--transition)
}

.z2x8c-footer__col a:hover {
    color: #fff
}

.z2x8c-footer__pay {
    margin-bottom: 32px
}

.z2x8c-footer__pay-title, .z2x8c-footer__prov-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.z2x8c-footer__pay-list, .z2x8c-footer__prov-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.z2x8c-footer__pay-item, .z2x8c-footer__prov-item {
    background: #151d2b;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-text-muted)
}

.z2x8c-footer__bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between
}

.z2x8c-footer__copy {
    font-size: .75rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.z2x8c-footer__legal {
    font-size: .72rem;
    color: #5a6577;
    line-height: 1.6;
    max-width: 680px
}

.h1u3t-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(90deg, #1a2634, #1e3040);
    border-top: 1px solid rgba(0, 224, 255, .2);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.h1u3t-widget.is-shown {
    transform: translateY(0)
}

.h1u3t-widget__text {
    font-size: .85rem;
    color: #e0f0ff;
    font-weight: 500
}

.h1u3t-widget__text strong {
    color: var(--clr-accent)
}

.h1u3t-widget__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-accent);
    color: #0e1520;
    font-weight: 700;
    font-size: .88rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: filter var(--transition), transform var(--transition);
    white-space: nowrap
}

.h1u3t-widget__btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px)
}

.h1u3t-widget__close {
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: color var(--transition)
}

.h1u3t-widget__close:hover {
    color: #fff
}

.j9o6l-slider-wrap {
    overflow: hidden
}

.j9o6l-slider {
    display: flex;
    gap: 16px;
    transition: transform .35s ease
}

.content-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 10px
}

.content-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 16px 0 8px
}

.content-body p {
    margin-bottom: 14px;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.8
}

.content-body ul, .content-body ol {
    margin: 0 0 14px 20px;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.8
}

.content-body li {
    margin-bottom: 6px
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: .85rem
}

.content-body table th {
    background: #151d2b;
    color: var(--clr-text-muted);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border)
}

.content-body table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted)
}

.content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.content-body a {
    color: var(--clr-accent)
}

.content-body strong {
    color: #fff;
    font-weight: 600
}

.content-body blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 16px;
    background: rgba(0, 224, 255, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 14px 0;
    font-style: italic;
    color: var(--clr-text-muted)
}

.y5a2b-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px
}

.y5a2b-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), #6c5ce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0e1520;
    flex-shrink: 0
}

.y5a2b-author__info {
    flex: 1
}

.y5a2b-author__name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.y5a2b-author__role {
    font-size: .78rem;
    color: var(--clr-accent)
}

.y5a2b-author__bio {
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
    line-height: 1.55
}

.y5a2b-author__link {
    font-size: .78rem;
    color: var(--clr-accent)
}

.l6p8k-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin: 48px 0
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.u7m3z-hidden {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.t9k1x-placeholder {
    color: transparent;
    font-size: 0;
    user-select: none
}

.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

@media (max-width: 1100px) {
    .f2j7k-grid--3 > * {
        flex: 1 1 calc(50% - 10px)
    }

    .g7d4f-games__grid > * {
        flex: 1 1 calc(33.333% - 12px)
    }
}

@media (max-width: 768px) {
    .m5p1q-hdr__nav {
        display: none
    }

    .m5p1q-burger {
        display: flex
    }

    .m5p1q-hdr__online {
        display: none
    }

    .v6h3n-hero {
        min-height: 420px
    }

    .b7k9c-section {
        padding: 40px 0
    }

    .f2j7k-grid--3 > *, .f2j7k-grid--2 > * {
        flex: 1 1 100%
    }

    .n1l0p-bonus__grid > * {
        flex: 0 0 80vw;
        min-width: 80vw
    }

    .n1l0p-bonus__wrap {
        overflow: hidden
    }

    .g7d4f-games__grid > * {
        flex: 0 0 44vw;
        min-width: 160px
    }

    .g7d4f-games__grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory
    }

    .g7d4f-game-card {
        scroll-snap-align: start
    }

    .w8q5r-wheel {
        flex-direction: column
    }

    .z2x8c-footer__top {
        flex-direction: column;
        gap: 24px
    }

    .z2x8c-footer__bottom {
        flex-direction: column;
        text-align: center
    }

    .h1u3t-widget {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 14px
    }

    .h1u3t-widget__text {
        display: none
    }

    #d3r7t-canvas {
        width: 260px !important;
        height: 260px !important
    }
}

@media (max-width: 480px) {
    .v6h3n-hero__h1 {
        font-size: 1.5rem
    }

    .g7d4f-games__grid > * {
        flex: 0 0 60vw
    }

    .n1l0p-bonus__grid > * {
        flex: 0 0 88vw
    }

    .w8q5r-wheel__info {
        min-width: unset
    }
}

@media (max-width: 768px) {
    .b7k9c-section {
        padding: 42px 0;
    }

    .x4f2a-wrap {
        padding: 0 14px;
    }

    .q9w2e-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 24px;
        text-align: center;
    }

    [data-slider] {
        overflow: visible;
    }

    .g7d4f-games__grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        margin-right: -14px;
        padding-right: 14px;
        -webkit-overflow-scrolling: touch;
    }

    .g7d4f-games__grid::-webkit-scrollbar {
        display: none;
    }

    .g7d4f-games__grid > * {
        flex: 0 0 180px;
        min-width: 180px;
        max-width: 180px;
        scroll-snap-align: start;
    }

    .g7d4f-game-card {
        padding: 16px 12px 14px;
        border-radius: 14px;
        gap: 10px;
    }

    .g7d4f-game-card__logo {
        width: 62px;
        height: 62px;
        font-size: 1.7rem;
        border-radius: 10px;
    }

    .g7d4f-game-card__name {
        font-size: .82rem;
        line-height: 1.35;
        min-height: 38px;
    }

    .g7d4f-game-card__provider {
        font-size: .72rem;
    }

    .g7d4f-game-card__btn {
        min-height: 38px;
        font-size: .78rem;
        border-radius: 8px;
    }

    [data-slider] > div:last-child {
        margin-top: 18px !important;
    }

    [data-slider-prev],
    [data-slider-next] {
        min-width: 42px;
        min-height: 42px;
        padding: 0 !important;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .b7k9c-section {
        padding: 34px 0;
    }

    .x4f2a-wrap {
        padding: 0 10px;
    }

    .q9w2e-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .g7d4f-games__grid {
        gap: 10px;
        margin-right: -10px;
        padding-right: 10px;
    }

    .g7d4f-games__grid > * {
        flex: 0 0 155px;
        min-width: 155px;
        max-width: 155px;
    }

    .g7d4f-game-card {
        padding: 14px 10px 12px;
        border-radius: 12px;
        gap: 8px;
    }

    .g7d4f-game-card__logo {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .g7d4f-game-card__name {
        font-size: .76rem;
        min-height: 34px;
    }

    .g7d4f-game-card__provider {
        font-size: .68rem;
    }

    .g7d4f-game-card__btn {
        min-height: 34px;
        font-size: .74rem;
    }

    [data-slider-prev],
    [data-slider-next] {
        min-width: 38px;
        min-height: 38px;
        font-size: .9rem;
    }
}

@media (max-width: 768px) {
    .b7k9c-section,
    .x4f2a-wrap,
    [data-slider] {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .g7d4f-games__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .g7d4f-games__grid > * {
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: none;
    }

    .g7d4f-game-card {
        width: 100%;
        padding: 16px 10px 14px;
    }

    .g7d4f-game-card__logo {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }

    .g7d4f-game-card__name {
        font-size: .78rem;
        min-height: auto;
    }

    .g7d4f-game-card__btn {
        width: 100%;
        min-height: 36px;
        font-size: .74rem;
    }

    [data-slider] > div:last-child {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .g7d4f-games__grid {
        gap: 10px;
    }

    .g7d4f-game-card {
        padding: 14px 8px 12px;
        border-radius: 12px;
    }

    .g7d4f-game-card__logo {
        width: 52px;
        height: 52px;
    }

    .g7d4f-game-card__name {
        font-size: .72rem;
    }
}