:root {
    --c-bg: #16182B;
    --c-header: #1F2137;
    --c-btn-login: #1F2137;
    --c-btn-reg: #00DCF5;
    --c-accent: #00DCF5;
    --c-text: #E8EAF6;
    --c-text-muted: #9BA3C2;
    --c-card: #252844;
    --c-card2: #1E2040;
    --c-border: #2E3257;
    --c-gold: #FFD700;
    --c-green: #00E676;
    --c-red: #FF4757;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .25s ease;
    --font: 'Montserrat', 'Inter', Arial, sans-serif
}

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

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

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh
}

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

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

a:hover {
    opacity: .8
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    outline: none
}

ul {
    list-style: none
}

.x7f2a {
    display: none
}

.wp-block-spacer {
    height: 0;
    display: none
}

.elementor-hidden {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0
}

.b9k3m {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .03em;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 220, 245, .25);
    opacity: 1
}

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

.btn--login {
    background: var(--c-btn-login);
    color: var(--c-text);
    border: 1.5px solid var(--c-border)
}

.btn--login:hover {
    border-color: var(--c-accent);
    box-shadow: 0 0 12px rgba(0, 220, 245, .2)
}

.btn--reg {
    background: var(--c-btn-reg);
    color: #0a0e1f;
    font-weight: 800
}

.btn--reg:hover {
    box-shadow: 0 6px 24px rgba(0, 220, 245, .5);
    transform: translateY(-2px)
}

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

.btn--sm {
    padding: 8px 16px;
    font-size: .8rem
}

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

.s2n8h-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px
}

.s2n8h-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.s2n8h-nav {
    display: flex;
    align-items: center;
    gap: 6px
}

.s2n8h-nav a {
    color: var(--c-text-muted);
    font-size: .875rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition)
}

.s2n8h-nav a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, .07)
}

.s2n8h-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

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

.s2n8h-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, .5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(0, 230, 118, 0)
    }
}

.s2n8h-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100
}

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

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

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

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

.s2n8h-mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 999;
    flex-direction: column;
    gap: 6px;
    padding: 24px 20px;
    overflow-y: auto
}

.s2n8h-mobile-nav.is-open {
    display: flex
}

.s2n8h-mobile-nav a {
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    text-align: center
}

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

.hx91k-slides {
    display: flex;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    height: 100%;
    width: 100%;
    position: relative
}

.hx91k-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px
}

.hx91k-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.hx91k-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 24, 43, .92) 0%, rgba(31, 33, 55, .75) 50%, rgba(0, 220, 245, .08) 100%)
}

.hx91k-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 700px
}

.hx91k-badge {
    display: inline-block;
    background: rgba(0, 220, 245, .15);
    border: 1px solid rgba(0, 220, 245, .35);
    color: var(--c-accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px
}

.hx91k-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hx91k-title span {
    color: var(--c-accent)
}

.hx91k-sub {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

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

.hx91k-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition)
}

.hx91k-dot.active {
    background: var(--c-accent);
    transform: scale(1.3)
}

.hx91k-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(31, 33, 55, .75);
    border: 1.5px solid var(--c-border);
    color: var(--c-text);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background var(--transition), border-color var(--transition)
}

.hx91k-arrow:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #0a0e1f
}

.hx91k-arrow--prev {
    left: 16px
}

.hx91k-arrow--next {
    right: 16px
}

.sec {
    padding: 72px 0
}

.sec-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px
}

.sec-title span {
    color: var(--c-accent)
}

.sec-sub {
    font-size: .95rem;
    color: var(--c-text-muted);
    margin-bottom: 40px;
    max-width: 600px
}

.sec-head {
    margin-bottom: 40px
}

.adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px
}

.adv-card {
    flex: 1 1 220px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), #7c5cfc)
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.adv-icon {
    font-size: 2rem;
    margin-bottom: 14px
}

.adv-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.adv-text {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.trn-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.trn-card {
    flex: 1 1 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column
}

.trn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.trn-card-top {
    background: linear-gradient(135deg, #252844 0%, #1e2040 100%);
    padding: 24px 20px;
    position: relative
}

.trn-card-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 220, 245, .05) 0%, rgba(124, 92, 252, .08) 100%)
}

.trn-badge {
    display: inline-block;
    background: rgba(0, 220, 245, .15);
    border: 1px solid rgba(0, 220, 245, .3);
    color: var(--c-accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1
}

.trn-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
    position: relative;
    z-index: 1
}

.trn-desc {
    font-size: .85rem;
    color: var(--c-text-muted);
    position: relative;
    z-index: 1
}

.trn-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.trn-prize {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.trn-prize-label {
    font-size: .78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em
}

.trn-prize-val {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--c-gold)
}

.trn-timer-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.trn-timer-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em
}

.trn-timer {
    display: flex;
    gap: 8px
}

.trn-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, .25);
    border-radius: 6px;
    padding: 6px 10px;
    min-width: 44px
}

.trn-timer-num {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    color: var(--c-accent)
}

.trn-timer-unit {
    font-size: .6rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    margin-top: 2px
}

.trn-cta {
    margin-top: auto
}

.app-wrap {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap
}

.app-info {
    flex: 1 1 340px
}

.app-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--c-border)
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 340px
}

.app-table th, .app-table td {
    text-align: left;
    padding: 13px 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem
}

.app-table th {
    background: rgba(0, 220, 245, .07);
    color: var(--c-accent);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.app-table tr:last-child td {
    border-bottom: 0
}

.app-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.app-table td:first-child {
    color: var(--c-text-muted)
}

.app-table td:last-child {
    font-weight: 600
}

.app-dl {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.app-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 18px;
    font-size: .85rem;
    font-weight: 600;
    transition: border-color var(--transition), transform var(--transition)
}

.app-dl-btn:hover {
    border-color: var(--c-accent);
    transform: translateY(-2px);
    color: var(--c-text)
}

.app-dl-btn-icon {
    font-size: 1.3rem;
    flex-shrink: 0
}

.app-dl-btn-text small {
    display: block;
    font-size: .65rem;
    color: var(--c-text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .05em
}

.app-img-side {
    flex: 1 1 280px;
    display: flex;
    align-items: center;
    justify-content: center
}

.app-mockup {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 220, 245, .18))
}

.bon-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

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

.bon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.bon-card-head {
    padding: 22px 20px 18px;
    position: relative;
    background: linear-gradient(135deg, #252844, #1a1c3a)
}

.bon-card-head::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 220, 245, .07)
}

.bon-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--c-accent), #7c5cfc);
    color: #0a0e1f;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px
}

.bon-amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1.1;
    margin-bottom: 4px
}

.bon-title {
    font-size: .95rem;
    font-weight: 700
}

.bon-card-body {
    padding: 18px 20px
}

.bon-desc {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.bon-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px
}

.bon-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--c-text-muted)
}

.bon-feature::before {
    content: '✓';
    color: var(--c-green);
    font-weight: 700;
    flex-shrink: 0
}

.wheel-sec {
    background: linear-gradient(135deg, rgba(31, 33, 55, .8) 0%, rgba(22, 24, 43, .95) 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 48px 24px
}

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

.wheel-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

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

#wf-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 220, 245, .2), 0 0 80px rgba(0, 0, 0, .5)
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 26px solid var(--c-accent);
    filter: drop-shadow(0 0 6px rgba(0, 220, 245, .8))
}

.wheel-cta {
    text-align: center;
    max-width: 340px
}

.wheel-cta-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px
}

.wheel-cta-sub {
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 24px;
    line-height: 1.65
}

.wheel-result {
    margin-top: 18px;
    padding: 18px 24px;
    background: rgba(0, 220, 245, .08);
    border: 1.5px solid rgba(0, 220, 245, .3);
    border-radius: var(--radius);
    text-align: center;
    display: none
}

.wheel-result.show {
    display: block;
    animation: fadeIn .45s ease
}

.wheel-result-win {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 10px
}

.wheel-result-lose {
    font-size: 1rem;
    color: var(--c-text-muted)
}

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

.rev-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px 32px
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--c-border)
}

.rev-author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-accent)
}

.rev-author-info {
}

.rev-author-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px
}

.rev-author-role {
    font-size: .82rem;
    color: var(--c-text-muted)
}

.rev-author-link {
    font-size: .8rem;
    color: var(--c-accent)
}

.rev-content h2, .rev-content h3, .rev-content h4 {
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--c-text)
}

.rev-content h2 {
    font-size: 1.4rem
}

.rev-content h3 {
    font-size: 1.15rem
}

.rev-content p {
    margin-bottom: 14px;
    font-size: .95rem;
    line-height: 1.75;
    color: var(--c-text-muted)
}

.rev-content p:last-child {
    margin-bottom: 0
}

.rev-content ul, .rev-content ol {
    margin: 12px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.rev-content li {
    font-size: .92rem;
    color: var(--c-text-muted);
    line-height: 1.65
}

.rev-content ul li {
    list-style: disc
}

.rev-content ol li {
    list-style: decimal
}

.rev-content a {
    color: var(--c-accent)
}

.rev-content strong, .rev-content b {
    color: var(--c-text);
    font-weight: 700
}

.rev-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--c-border)
}

.rev-content table th {
    background: rgba(0, 220, 245, .08);
    color: var(--c-accent);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 10px 14px;
    text-align: left
}

.rev-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: .88rem;
    color: var(--c-text-muted);
    text-align: left
}

.rev-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 18px;
    background: rgba(0, 220, 245, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--c-text-muted)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

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

.faq-item.open {
    border-color: rgba(0, 220, 245, .4)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: .95rem;
    user-select: none
}

.faq-q-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 220, 245, .1);
    border: 1.5px solid rgba(0, 220, 245, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--c-accent);
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition)
}

.faq-item.open .faq-q-icon {
    transform: rotate(45deg);
    background: rgba(0, 220, 245, .2)
}

.faq-a {
    display: none;
    padding: 0 22px 20px;
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.7
}

.faq-item.open .faq-a {
    display: block;
    animation: fadeIn .25s ease
}

.ft-main {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 56px 0 0
}

.ft-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--c-border)
}

.ft-col {
    flex: 1 1 200px
}

.ft-logo img {
    height: 40px;
    object-fit: contain;
    margin-bottom: 14px
}

.ft-about {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    max-width: 280px
}

.ft-col-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-accent);
    margin-bottom: 14px
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ft-links a {
    font-size: .87rem;
    color: var(--c-text-muted);
    transition: color var(--transition)
}

.ft-links a:hover {
    color: var(--c-text)
}

.ft-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.ft-pay-item {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--c-text-muted)
}

.ft-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.ft-prov-item {
    background: rgba(0, 220, 245, .07);
    border: 1px solid rgba(0, 220, 245, .2);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--c-accent)
}

.ft-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.ft-copy {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.ft-legal {
    font-size: .75rem;
    color: rgba(155, 163, 194, .5);
    max-width: 600px;
    line-height: 1.6;
    text-align: right
}

.wgt-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(90deg, var(--c-header) 0%, #252844 100%);
    border-top: 1.5px solid rgba(0, 220, 245, .3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.wgt-text {
    font-size: .85rem;
    color: var(--c-text-muted)
}

.wgt-text strong {
    color: var(--c-accent)
}

.wgt-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    line-height: 1
}

.wgt-close:hover {
    color: var(--c-text)
}

.sep {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 0
}

.slide-wrap {
    overflow: hidden
}

.slide-track {
    display: flex;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.slide-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 18px
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition)
}

.slide-dot.active {
    background: var(--c-accent);
    transform: scale(1.3)
}

@media (max-width: 960px) {
    .s2n8h-nav {
        display: none
    }

    .s2n8h-burger {
        display: flex
    }
}

@media (max-width: 640px) {
    .sec {
        padding: 48px 0
    }

    .adv-card {
        flex: 1 1 160px
    }

    .trn-grid, .bon-grid {
        flex-wrap: nowrap;
        overflow: hidden
    }

    .trn-card, .bon-card {
        flex: 0 0 85vw;
        max-width: 340px
    }

    .app-wrap {
        flex-direction: column
    }

    .wheel-wrap {
        flex-direction: column;
        gap: 28px
    }

    .ft-grid {
        flex-direction: column;
        gap: 24px
    }

    .ft-legal {
        text-align: left
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .rev-block {
        padding: 22px 16px
    }

    .wgt-bar {
        flex-wrap: wrap;
        gap: 8px
    }

    .wgt-text {
        font-size: .78rem
    }
}

@media (max-width: 420px) {
    .hx91k-title {
        font-size: 1.6rem
    }

    .trn-card, .bon-card {
        flex: 0 0 92vw
    }
}

.wp-emoji-settings {
    display: none
}

.wpe-check-is-mobile {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap
}

.elementor-widget-wrap {
    contain: layout style
}

.elementor-element {
    --flex-direction: row;
    --flex-wrap: wrap
}

.e-con {
    --container-widget-width: 100%
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0, 220, 245, .3)
    }
    50% {
        box-shadow: 0 0 22px rgba(0, 220, 245, .6)
    }
}

.anim-slide-up {
    animation: slideUp .5s ease both
}

.btn--reg {
    animation: glow 2.5s ease-in-out infinite
}

@media (max-width: 640px) {
    #bonuses .slide-wrap,
    #tournaments .slide-wrap {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
    }

    #bonuses .slide-track,
    #tournaments .slide-track,
    #bonuses .bon-grid,
    #tournaments .trn-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        overflow: visible !important;
        transform: none !important;
        transition: none !important;
        width: max-content !important;
    }

    #bonuses .bon-card,
    #tournaments .trn-card {
        flex: 0 0 86vw !important;
        width: 86vw !important;
        max-width: 340px !important;
        min-width: 0 !important;
        scroll-snap-align: start;
    }

    #bonuses .slide-nav,
    #tournaments .slide-nav {
        display: none !important;
    }

    #bonuses .slide-wrap::-webkit-scrollbar,
    #tournaments .slide-wrap::-webkit-scrollbar {
        display: none;
    }

    #bonuses .slide-wrap,
    #tournaments .slide-wrap {
        scrollbar-width: none;
    }
}