:root {
    --c-bg: #042522;
    --c-header: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f5f0;
    --c-text-muted: #8ab8ab;
    --c-accent: #1aff9c;
    --c-gold: #f5c842;
    --c-card: #06332c;
    --c-border: #0a4a3f;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .25s cubic-bezier(.4, 0, .2, 1)
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden
}

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

a:hover {
    color: #fff
}

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

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

ul {
    list-style: none
}

.xq7b2 {
    display: none
}

.wp-block-spacer {
    height: 1px
}

.entry-content {
}

.site-wrapper {
    display: grid;
    grid-template-rows:auto 1fr auto;
    min-height: 100vh
}

.x-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%
}

/* ──  ── */
.x-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .6)
}

.x-header__inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.x-header__logo img {
    height: 44px;
    width: auto
}

.x-nav__list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap
}

.x-nav__list a {
    color: var(--c-text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: .04em
}

.x-nav__list a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

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

.x-online {
    font-size: 11px;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 8px;
    white-space: nowrap
}

.x-online__dot {
    width: 7px;
    height: 7px;
    background: #1aff9c;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.85)
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit
}

.btn--login {
    background: var(--c-btn-login);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15)
}

.btn--login:hover {
    background: #025e4d;
    color: #fff;
    box-shadow: 0 0 12px rgba(1, 61, 51, .6)
}

.btn--reg {
    background: var(--c-btn-reg);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(179, 10, 215, .4)
}

.btn--reg:hover {
    background: #9a08bb;
    color: #fff;
    box-shadow: 0 0 20px rgba(179, 10, 215, .55)
}

.btn--reg-pulse {
    animation: reg-pulse 2.4s ease-in-out infinite
}

@keyframes reg-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(179, 10, 215, .5)
    }
    70% {
        box-shadow: 0 0 0 10px rgba(179, 10, 215, 0)
    }
}

.x-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px
}

.x-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition)
}

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

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

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

.x-nav__mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 37, 34, .97);
    z-index: 850;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px
}

.x-nav__mobile.is-open {
    display: flex
}

.x-nav__mobile .x-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.x-nav__mobile .x-nav__list a {
    font-size: 18px;
    padding: 10px 24px
}

.x-nav__mobile .x-header__actions {
    flex-direction: column;
    gap: 12px
}

.x-nav__mobile .btn {
    width: 220px;
    padding: 14px 24px;
    font-size: 15px
}

/* ──  ── */
.x-hero {
    position: relative;
    overflow: hidden;
    background: #021a18;
    min-height: 520px;
    display: flex;
    align-items: center
}

.x-hero__slider {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center
}

.x-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    display: flex;
    align-items: center
}

.x-hero__slide.is-active {
    opacity: 1;
    position: relative
}

.x-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0
}

.x-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 37, 34, .92) 40%, rgba(4, 37, 34, .3) 100%)
}

.x-hero__content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 40px
}

.x-hero__badge {
    display: inline-block;
    background: var(--c-btn-reg);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.x-hero__title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.x-hero__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    line-height: 1.55
}

.x-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn--hero {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
    font-weight: 800
}

.x-hero__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.x-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    transition: all var(--transition);
    cursor: pointer;
    border: none
}

.x-hero__dot.is-active {
    background: #fff;
    width: 24px;
    border-radius: 4px
}

.x-hero__arrows {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10
}

.x-hero__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition)
}

.x-hero__arrow:hover {
    background: var(--c-btn-reg);
    border-color: var(--c-btn-reg)
}

/* ──  ── */
.x-section {
    padding: 64px 0
}

.x-section--alt {
    background: rgba(5, 48, 41, .35)
}

.x-section__title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff
}

.x-section__title span {
    color: var(--c-accent)
}

.x-section__sub {
    color: var(--c-text-muted);
    margin-bottom: 36px;
    font-size: 15px
}

.x-section-head {
    margin-bottom: 36px
}

.x-section-head--center {
    text-align: center
}

.x-jackpots__grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.x-jackpot-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.x-jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 255, 156, .06) 0%, transparent 60%);
    pointer-events: none
}

.x-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
}

.x-jackpot-card__icon {
    font-size: 38px;
    margin-bottom: 12px;
    display: block
}

.x-jackpot-card__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    font-weight: 700
}

.x-jackpot-card__amount {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 900;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    transition: all .3s ease
}

.x-jackpot-card__currency {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-top: 4px
}

.x-jackpot-card--mega .x-jackpot-card__amount {
    color: #ff6b35;
    font-size: clamp(28px, 5vw, 42px)
}

.x-jackpot-card--major .x-jackpot-card__amount {
    color: var(--c-gold)
}

.x-jackpot-card--minor .x-jackpot-card__amount {
    color: #a8edca
}

.x-jackpot-card--mini .x-jackpot-card__amount {
    color: var(--c-accent)
}

/* ──  ── */
.x-mirrors__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--c-text-muted)
}

.x-mirrors__meta .dot-live {
    width: 8px;
    height: 8px;
    background: #1aff9c;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s infinite
}

.x-mirrors__meta strong {
    color: var(--c-accent)
}

.x-mirrors__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border)
}

.x-mirrors__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px
}

.x-mirrors__table thead th {
    background: var(--c-header);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    font-weight: 700;
    border-bottom: 1px solid var(--c-border)
}

.x-mirrors__table tbody tr {
    background: var(--c-card);
    transition: background var(--transition)
}

.x-mirrors__table tbody tr:nth-child(even) {
    background: rgba(6, 51, 44, .6)
}

.x-mirrors__table tbody tr:hover {
    background: rgba(26, 255, 156, .06)
}

.x-mirrors__table td {
    padding: 13px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(10, 74, 63, .3);
    vertical-align: middle
}

.x-mirrors__table td:first-child {
    font-weight: 700;
    color: #fff
}

.x-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(26, 255, 156, .12);
    color: var(--c-accent);
    letter-spacing: .04em
}

.x-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    border-radius: 50%
}

.x-mirror-link {
    color: var(--c-accent);
    font-weight: 700;
    padding: 6px 14px;
    border: 1px solid var(--c-accent);
    border-radius: var(--radius-sm);
    font-size: 13px;
    display: inline-block;
    transition: all var(--transition)
}

.x-mirror-link:hover {
    background: var(--c-accent);
    color: #000
}

/* ──  ── */
.x-tournaments__grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px
}

.x-tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.x-tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .45)
}

.x-tournament-card__header {
    background: linear-gradient(135deg, var(--c-header) 0%, #084038 100%);
    padding: 20px 22px;
    position: relative;
    overflow: hidden
}

.x-tournament-card__header::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(179, 10, 215, .2) 0%, transparent 70%);
    border-radius: 50%
}

.x-tournament-card__num {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-text-muted);
    font-weight: 700;
    margin-bottom: 6px
}

.x-tournament-card__name {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2
}

.x-tournament-card__body {
    padding: 22px
}

.x-tournament-card__desc {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 18px;
    line-height: 1.55
}

.x-tournament-card__prize {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px
}

.x-tournament-card__prize-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    font-weight: 700
}

.x-tournament-card__prize-amount {
    font-size: 26px;
    font-weight: 900;
    color: var(--c-gold)
}

.x-timer {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px
}

.x-timer__label {
    font-size: 11px;
    color: var(--c-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-right: 2px
}

.x-timer__unit {
    background: var(--c-header);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 4px 9px;
    text-align: center
}

.x-timer__unit span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums
}

.x-timer__unit em {
    display: block;
    font-size: 9px;
    font-style: normal;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 1px
}

.x-timer__sep {
    color: var(--c-accent);
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    align-self: flex-start;
    margin-top: 4px
}

/* ──  ── */
.x-wheel__wrap {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center
}

.x-wheel__canvas-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.x-wheel__canvas-wrap::before {
    content: '▼';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: var(--c-gold);
    z-index: 10;
    filter: drop-shadow(0 0 6px rgba(245, 200, 66, .6))
}

canvas#x-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(179, 10, 215, .3), 0 0 80px rgba(0, 0, 0, .5)
}

.x-wheel__info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.x-wheel__info h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25
}

.x-wheel__info p {
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.6
}

.x-wheel__result {
    background: rgba(26, 255, 156, .1);
    border: 1px solid var(--c-accent);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: none
}

.x-wheel__result.is-win {
    display: block;
    animation: fadeInUp .4s ease
}

.x-wheel__result h4 {
    color: var(--c-accent);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px
}

.x-wheel__result p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 14px
}

.x-wheel__result--lose {
    background: rgba(255, 80, 80, .08);
    border-color: #ff5050;
    display: none
}

.x-wheel__result--lose.is-lose {
    display: block
}

.x-wheel__result--lose h4 {
    color: #ff5050
}

.btn--spin {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
    font-weight: 800;
    background: linear-gradient(135deg, var(--c-btn-reg) 0%, #8a06a3 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all var(--transition)
}

.btn--spin::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition)
}

.btn--spin:hover::before {
    opacity: 1
}

.btn--spin:hover {
    box-shadow: 0 0 24px rgba(179, 10, 215, .55);
    transform: translateY(-2px)
}

.btn--spin:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none
}

.x-wheel__sectors {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.x-wheel__sector-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--c-text-muted)
}

.x-wheel__sector-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0
}

.x-review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px
}

.x-review__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border)
}

.x-review__author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-btn-reg)
}

.x-review__author-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.x-review__author-role {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 2px
}

.x-review__author-link {
    font-size: 12px;
    color: var(--c-accent);
    margin-top: 3px;
    display: inline-block
}

.x-content h1, .x-content h2, .x-content h3, .x-content h4, .x-content h5, .x-content h6 {
    color: #fff;
    margin: 24px 0 12px;
    line-height: 1.3;
    font-weight: 700
}

.x-content h2 {
    font-size: clamp(18px, 3vw, 26px);
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 8px
}

.x-content h3 {
    font-size: clamp(16px, 2.5vw, 21px)
}

.x-content p {
    margin-bottom: 16px;
    color: var(--c-text);
    line-height: 1.7
}

.x-content ul, .x-content ol {
    margin: 16px 0 16px 20px;
    color: var(--c-text);
    line-height: 1.7
}

.x-content ul {
    list-style: disc
}

.x-content ol {
    list-style: decimal
}

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

.x-content a {
    color: var(--c-accent);
    text-decoration: underline
}

.x-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
    text-align: left
}

.x-content table th {
    background: var(--c-header);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border)
}

.x-content table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 14px
}

.x-content blockquote {
    border-left: 3px solid var(--c-btn-reg);
    padding: 12px 18px;
    background: rgba(179, 10, 215, .08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    color: rgba(232, 245, 240, .8);
    font-style: italic
}

.x-content img {
    border-radius: var(--radius-md);
    margin: 16px 0
}

.x-content strong {
    color: #fff;
    font-weight: 700
}

.x-content em {
    color: var(--c-text-muted)
}

/* ──  ── */
.x-faq {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.x-faq__item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition)
}

.x-faq__item.is-open {
    border-color: rgba(26, 255, 156, .3)
}

.x-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    gap: 12px;
    transition: color var(--transition)
}

.x-faq__q:hover {
    color: var(--c-accent)
}

.x-faq__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: all var(--transition);
    color: var(--c-text-muted)
}

.x-faq__item.is-open .x-faq__icon {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #000;
    transform: rotate(45deg)
}

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

.x-faq__a-inner {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7
}

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

/* ──  ── */
.x-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px
}

.x-footer__grid {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 40px;
    margin-bottom: 36px;
    align-items: start
}

.x-footer__logo img {
    height: 38px;
    width: auto;
    margin-bottom: 14px
}

.x-footer__tagline {
    font-size: 13px;
    color: var(--c-text-muted);
    max-width: 280px;
    line-height: 1.6
}

.x-footer__nav {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 28px
}

.x-footer__nav-col h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    font-weight: 700;
    margin-bottom: 12px
}

.x-footer__nav-col a {
    display: block;
    font-size: 13px;
    color: rgba(232, 245, 240, .6);
    padding: 3px 0;
    transition: color var(--transition)
}

.x-footer__nav-col a:hover {
    color: var(--c-accent)
}

.x-footer__payments {
    margin-bottom: 28px
}

.x-footer__payments h5, .x-footer__providers h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    font-weight: 700;
    margin-bottom: 14px
}

.x-footer__payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.x-payment-logo {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7)
}

.x-footer__providers {
    margin-bottom: 28px
}

.x-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.x-provider-logo {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .03em
}

.x-footer__bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.x-footer__copy {
    font-size: 12px;
    color: rgba(232, 245, 240, .4);
    line-height: 1.6;
    text-align: center
}

.x-footer__legal {
    font-size: 11px;
    color: rgba(232, 245, 240, .3);
    line-height: 1.55;
    text-align: center
}

.x-footer__legal a {
    color: rgba(232, 245, 240, .4)
}

/* ──  ── */
.x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(135deg, #021f1c 0%, var(--c-header) 100%);
    border-top: 1px solid var(--c-btn-reg);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(179, 10, 215, .25)
}

.x-widget__text {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.3
}

.x-widget__text strong {
    color: #fff;
    font-size: 15px;
    display: block
}

.x-widget__bonus {
    background: rgba(179, 10, 215, .15);
    border: 1px solid rgba(179, 10, 215, .3);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-btn-reg);
    white-space: nowrap
}

.x-widget__action {
    display: flex;
    align-items: center;
    gap: 10px
}

.x-widget__close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    line-height: 1;
    transition: all var(--transition);
    flex-shrink: 0
}

.x-widget__close:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff
}

.x-widget.is-hidden {
    display: none
}

body {
    padding-bottom: 68px
}

/* ──  ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.x-fade-in {
    animation: fadeIn .5s ease both
}

.x-slide-up {
    animation: fadeInUp .55s ease both
}

.wp-content-area, .elementor-widget-container, .woocommerce-page .col2-set, .entry-header, .post-thumbnail, .screen-reader-text {
    display: none
}

.wp-block-cover, .wp-block-media-text, .wp-block-button {
}

/* ──  ── */
@media (max-width: 900px) {
    .x-header__inner {
        grid-template-columns:auto 1fr
    }

    .x-nav__list {
        display: none
    }

    .x-burger {
        display: flex
    }

    .x-header__actions .btn--login, .x-header__actions .btn--reg {
        display: inline-flex
    }

    .x-wheel__wrap {
        grid-template-columns:1fr
    }

    .x-wheel__canvas-wrap {
        order: -1
    }

    .x-footer__grid {
        grid-template-columns:1fr
    }

    .x-footer__nav {
        grid-template-columns:repeat(2, 1fr)
    }

    .x-review {
        padding: 24px 20px
    }
}

@media (max-width: 600px) {
    .x-hero__content {
        padding: 40px 20px
    }

    .x-section {
        padding: 44px 0
    }

    .x-footer__nav {
        grid-template-columns:1fr
    }

    .x-tournaments__grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory
    }

    .x-tournament-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0
    }

    .x-widget {
        padding: 8px 12px
    }

    .x-widget__text strong {
        font-size: 13px
    }

    .x-timer {
        flex-wrap: wrap;
        gap: 6px
    }

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

.xc8q2f, .z7mp01, .bq9r4k, .nf3x2a {
    display: none !important
}

.dc1q8r {
    color: transparent;
    font-size: 0
}

.wp-embed-responsive, .wp-has-aspect-ratio {
}

.elementor-hidden, .elementor-visibility-hidden {
    visibility: hidden;
    display: none
}


@media (max-width: 900px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .x-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .x-header {
        position: sticky;
        top: 0;
        z-index: 3000;
    }

    .x-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
        gap: 8px;
    }

    .x-header__logo {
        flex: 0 0 auto;
    }

    .x-header__logo img {
        height: 34px;
        max-width: 110px;
        object-fit: contain;
    }

    .x-nav {
        display: none !important;
    }

    .x-header__actions {
        gap: 7px;
        margin-left: auto;
    }

    .x-online {
        display: none !important;
    }

    .x-header__actions .btn--login {
        padding: 7px 12px;
        font-size: .78rem;
    }

    .x-burger {
        display: flex !important;
        flex-shrink: 0;
    }

    .x-nav__mobile {
        position: fixed;
        inset: 0;
        z-index: 2999;
        padding: 80px 18px 28px;
        background: rgba(4, 37, 34, .98);
        overflow-y: auto;
    }

    .x-nav__mobile.is-open {
        display: flex;
    }

    .x-nav__mobile .x-nav__list {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

    .x-nav__mobile .x-nav__list a {
        width: 100%;
        padding: 13px 14px;
        text-align: center;
        border: 1px solid var(--c-border);
        border-radius: 10px;
        background: rgba(255, 255, 255, .03);
    }

    .x-section {
        padding: 40px 0;
    }

    .x-section-head {
        margin-bottom: 22px;
        text-align: center;
    }

    .x-section__title {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .x-section__sub {
        font-size: .88rem;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .x-jackpots__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .x-jackpot-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .x-jackpot-card__icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .x-jackpot-card__amount,
    .x-jackpot-card--mega .x-jackpot-card__amount {
        font-size: 1.45rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .x-mirrors__meta {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        font-size: .78rem;
    }

    .x-mirrors__wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .x-mirrors__table {
        min-width: 560px;
    }

    .x-mirrors__table th,
    .x-mirrors__table td {
        padding: 10px;
        font-size: .78rem;
        white-space: nowrap;
    }

    .x-tournaments__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }

    .x-tournament-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        border-radius: 16px;
    }

    .x-tournament-card__header {
        padding: 18px 16px;
    }

    .x-tournament-card__name {
        font-size: 1.05rem;
    }

    .x-tournament-card__body {
        padding: 18px 14px;
    }

    .x-tournament-card__desc {
        font-size: .84rem;
        line-height: 1.6;
    }

    .x-tournament-card__prize {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .x-tournament-card__prize-amount {
        font-size: 1.25rem;
    }

    .x-timer {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        width: 100%;
        gap: 5px;
        align-items: center;
    }

    .x-timer__label {
        grid-column: 1 / -1;
        text-align: center;
        margin: 0 0 4px;
    }

    .x-timer__unit {
        min-width: 0;
        padding: 8px 4px;
    }

    .x-timer__unit span {
        font-size: .95rem;
    }

    .x-timer__unit em {
        font-size: .52rem;
    }

    .x-timer__sep {
        margin: 0;
        align-self: center;
        font-size: .9rem;
    }

    .x-wheel__wrap {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .x-wheel__canvas-wrap {
        order: -1;
    }

    canvas#x-wheel-canvas {
        width: 250px !important;
        height: 250px !important;
        max-width: 100%;
    }

    .x-wheel__info {
        text-align: center;
        align-items: center;
    }

    .x-wheel__info h3 {
        font-size: 1.2rem;
    }

    .x-wheel__info p {
        font-size: .88rem;
    }

    .x-wheel__sectors {
        width: 100%;
        align-items: flex-start;
    }

    .btn--spin {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .x-review {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .x-content,
    .x-content p,
    .x-content li {
        font-size: .9rem;
        line-height: 1.7;
    }

    .x-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .x-content a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .x-faq__q {
        padding: 14px;
        font-size: .88rem;
        line-height: 1.4;
    }

    .x-faq__a-inner {
        padding: 0 14px 14px;
        font-size: .84rem;
    }

    .x-footer {
        padding: 36px 0 24px;
    }

    .x-footer__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .x-footer__logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .x-footer__tagline {
        max-width: 100%;
        margin: 0 auto;
    }

    .x-footer__nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .x-footer__payment-logos,
    .x-provider-logos {
        justify-content: center;
        gap: 8px;
    }

    .x-payment-logo,
    .x-provider-logo {
        font-size: .7rem;
        padding: 6px 10px;
    }

    .x-footer__copy,
    .x-footer__legal {
        font-size: .72rem;
    }

    .x-widget {
        padding: 8px 40px 8px 10px;
        gap: 8px;
        align-items: center;
    }

    .x-widget__text strong {
        font-size: .78rem;
    }

    .x-widget__text span {
        font-size: .68rem;
    }

    .x-widget__bonus {
        display: none;
    }

    .x-widget__action .btn {
        padding: 8px 10px !important;
        font-size: .72rem !important;
    }

    .x-widget__close {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 420px) {
    .x-header__actions .btn--login {
        display: none !important;
    }

    .x-header__logo img {
        max-width: 92px;
        height: 30px;
    }

    .x-section__title {
        font-size: 1.2rem;
    }

    .x-timer {
        gap: 4px;
    }

    .x-timer__unit span {
        font-size: .84rem;
    }

    .x-timer__unit em {
        font-size: .48rem;
    }

    canvas#x-wheel-canvas {
        width: 220px !important;
        height: 220px !important;
    }
}

@media (max-width: 900px) {
    html,
    body,
    .site-wrapper,
    main,
    #x-main,
    .x-section,
    .x-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .x-section,
    .x-section--alt,
    .x-container,
    .x-jackpots__grid,
    .x-tournaments__grid,
    .x-wheel__wrap,
    .x-review,
    .x-faq,
    .x-footer,
    .x-footer .x-container,
    .x-footer__grid,
    .x-footer__nav,
    .x-footer__payments,
    .x-footer__providers,
    .x-footer__bottom {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .x-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .x-section {
        padding: 38px 0 !important;
    }

    .x-jackpots__grid,
    .x-tournaments__grid,
    .x-wheel__wrap,
    .x-footer__grid,
    .x-footer__nav {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .x-jackpot-card,
    .x-tournament-card,
    .x-review,
    .x-faq__item {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .x-mirrors__wrap,
    .x-content table {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
    }

    .x-mirrors__table {
        min-width: 560px !important;
    }

    .x-widget {
        max-width: 100vw !important;
        overflow: visible !important;
    }
}

@media (max-width: 768px) {

    .x-header {
        position: sticky;
        top: 0;
        z-index: 9999;
        backdrop-filter: blur(12px);
    }

    .x-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 14px;
        min-height: 64px;
    }

    .x-header__logo {
        flex-shrink: 0;
    }

    .x-header__logo img {
        width: auto;
        max-width: 110px;
        height: 34px;
        object-fit: contain;
    }

    .x-nav {
        display: none !important;
    }

    .x-header__actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .x-online {
        display: none !important;
    }

    .x-header__actions .btn--login {
        padding: 9px 14px;
        font-size: .8rem;
        min-height: 38px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .x-burger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 10px;
        background: rgba(255, 255, 255, .04);
        flex-shrink: 0;
    }

    .x-burger span {
        width: 18px;
        height: 2px;
        margin: 0 auto;
        border-radius: 10px;
    }

    .x-nav__mobile {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        padding: 20px 16px;
        background: #042522;
        overflow-y: auto;
        z-index: 9998;
        display: none;
    }

    .x-nav__mobile.active {
        display: block;
    }

    .x-nav__mobile .x-nav__list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .x-nav__mobile .x-nav__list li {
        width: 100%;
    }

    .x-nav__mobile .x-nav__list a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        padding: 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        text-decoration: none;
        font-size: .9rem;
    }

    .x-nav__mobile .x-header__actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 20px !important;
        width: 100%;
    }

    .x-nav__mobile .btn {
        width: 100% !important;
        min-height: 48px;
        padding: 12px !important;
        font-size: .9rem !important;
        justify-content: center !important;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {

    .x-header__inner {
        padding: 8px 10px;
    }

    .x-header__logo img {
        max-width: 95px;
        height: 30px;
    }

    .x-header__actions .btn--login {
        font-size: .75rem;
        padding: 8px 12px;
    }

    .x-burger {
        width: 38px;
        height: 38px;
    }

    .x-nav__mobile {
        top: 56px;
        height: calc(100vh - 56px);
    }
}

.sbx-hero {
    position: relative;
    width: 100%;
    background: #031d1a;
    overflow: hidden;
}

.sbx-hero__slider {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
}

.sbx-hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 620px;
    padding: 80px 16px;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(90deg, rgba(4, 37, 34, .94), rgba(4, 37, 34, .62), rgba(4, 37, 34, .2)), var(--sbx-bg);
    background-size: cover;
    background-position: center;
    transition: opacity .55s ease, visibility .55s ease;
}

.sbx-hero__slide--active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.sbx-hero__content {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.sbx-hero__content > * {
    max-width: 620px;
}

.sbx-hero__badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 16px;
    border-radius: 999px;
    background: #B30AD7;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.sbx-hero__title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .55);
}

.sbx-hero__text {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.12rem;
    line-height: 1.65;
}

.sbx-hero__text strong {
    color: #fff;
}

.sbx-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sbx-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 30px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    white-space: normal;
    text-align: center;
}

.sbx-hero__btn--primary {
    background: #B30AD7;
    color: #fff;
    box-shadow: 0 0 0 rgba(179, 10, 215, .5);
    animation: sbxPulse 2.4s infinite;
}

.sbx-hero__btn--secondary {
    background: #013D33;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
}

.sbx-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.sbx-hero__arrow--prev {
    left: 20px;
}

.sbx-hero__arrow--next {
    right: 20px;
}

.sbx-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.sbx-hero__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
}

.sbx-hero__dot--active {
    width: 34px;
    background: #fff;
}

@keyframes sbxPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(179, 10, 215, .5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(179, 10, 215, 0);
    }
}

@media (max-width: 768px) {
    .sbx-hero__slider {
        min-height: auto;
    }

    .sbx-hero__slide {
        position: relative;
        display: none;
        min-height: auto;
        padding: 56px 14px 82px;
        background-image: linear-gradient(180deg, rgba(4, 37, 34, .72), rgba(4, 37, 34, .94)), var(--sbx-bg);
    }

    .sbx-hero__slide--active {
        display: flex;
    }

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

    .sbx-hero__content > * {
        max-width: 100%;
    }

    .sbx-hero__badge {
        margin-left: auto;
        margin-right: auto;
        font-size: .68rem;
        line-height: 1.25;
        padding: 6px 12px;
    }

    .sbx-hero__title {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .sbx-hero__text {
        font-size: .92rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .sbx-hero__buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sbx-hero__btn {
        width: 100%;
        min-height: 50px;
        padding: 13px 16px;
        font-size: .92rem;
    }

    .sbx-hero__arrow {
        display: none;
    }

    .sbx-hero__dots {
        bottom: 24px;
    }
}

@media (max-width: 420px) {
    .sbx-hero__slide {
        padding: 46px 12px 76px;
    }

    .sbx-hero__title {
        font-size: 1.45rem;
    }

    .sbx-hero__text {
        font-size: .86rem;
    }
}