:root {
    --clr-bg: #171721;
    --clr-bg2: #1e1e2e;
    --clr-card: #22223a;
    --clr-green: #66BB3B;
    --clr-green-d: #52a02e;
    --clr-text: #e8e8f0;
    --clr-muted: #9999b3;
    --clr-border: #2a2a40;
    --clr-gold: #f5c842;
    --font-main: 'Open Sans', 'Roboto', Arial, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --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: var(--font-main);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: var(--clr-green-d)
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit
}

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

.b9q4r {
    padding: 64px 0
}

.t3n8p {
    text-align: center;
    margin-bottom: 48px
}

.t3n8p h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff
}

.t3n8p p {
    color: var(--clr-muted);
    font-size: 1rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2
}

.btn-login {
    background: var(--clr-bg2);
    color: var(--clr-text);
    border: 1px solid var(--clr-border)
}

.btn-login:hover {
    background: var(--clr-border);
    color: #fff
}

.btn-reg {
    background: var(--clr-green);
    color: #fff
}

.btn-reg:hover {
    background: var(--clr-green-d);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(102, 187, 59, .35)
}

.btn-dl {
    background: var(--clr-card);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
    padding: 10px 18px;
    border-radius: var(--radius-sm)
}

.btn-dl:hover {
    border-color: var(--clr-green);
    color: var(--clr-green)
}

.btn-bonus {
    background: linear-gradient(135deg, var(--clr-green), #8edd60);
    color: #fff;
    font-size: 1rem;
    padding: 13px 32px;
    border-radius: var(--radius-sm)
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(102, 187, 59, .4);
    color: #fff
}

.btn-spin {
    background: linear-gradient(135deg, #f5c842, #f0a500);
    color: #1a1a1a;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1rem;
    transition: all var(--transition)
}

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

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

.btn-get {
    background: var(--clr-green);
    color: #fff;
    padding: 13px 36px;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-sm);
    animation: pulse-green 1.5s infinite
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 187, 59, .5)
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 187, 59, 0)
    }
}

/* ───  ─── */
.l5h0j {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    padding: 12px 0;
    backdrop-filter: blur(12px)
}

.m2w9e {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap
}

.logo-wrap img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1
}

.nav-links a {
    color: var(--clr-muted);
    font-size: .85rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--transition)
}

.nav-links a:hover {
    color: #fff;
    background: var(--clr-card)
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-muted);
    white-space: nowrap;
    margin-left: auto
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: blink 1.4s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

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

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

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

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

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

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

.mob-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-top: 1px solid var(--clr-border)
}

.mob-nav.open {
    display: flex
}

.mob-nav a {
    color: var(--clr-muted);
    padding: 8px 0;
    font-size: .9rem;
    border-radius: 6px;
    transition: color var(--transition)
}

.mob-nav a:hover {
    color: #fff
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    height: 520px;
    background: var(--clr-bg2)
}

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

.slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(23, 23, 33, .85) 40%, rgba(23, 23, 33, .2))
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 560px;
    text-align: center
}

.slide-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.slide-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px
}

.slider-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.s-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: all var(--transition)
}

.s-dot.active {
    background: var(--clr-green);
    transform: scale(1.25)
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2
}

.slider-arrow:hover {
    background: var(--clr-green)
}

.arr-prev {
    left: 16px
}

.arr-next {
    right: 16px
}

.pc-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.pc-col {
    flex: 1 1 300px;
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--clr-border)
}

.pc-col h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--clr-border)
}

.pros-head {
    color: var(--clr-green)
}

.cons-head {
    color: #e05555
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .92rem;
    line-height: 1.5
}

.pc-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    margin-top: 2px
}

.ic-pro {
    background: rgba(102, 187, 59, .15);
    color: var(--clr-green)
}

.ic-con {
    background: rgba(224, 85, 85, .15);
    color: #e05555
}

.tourn-grid {
    display: flex;
    gap: 24px
}

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

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

.tc-img {
    height: 160px;
    overflow: hidden;
    position: relative
}

.tc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.tourn-card:hover .tc-img img {
    transform: scale(1.05)
}

.tc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--clr-green);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px
}

.tc-body {
    padding: 20px
}

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

.tc-desc {
    font-size: .85rem;
    color: var(--clr-muted);
    margin-bottom: 16px;
    line-height: 1.5
}

.tc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.tc-prize {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-gold)
}

.tc-timer {
    font-size: .82rem;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 6px
}

.timer-val {
    background: var(--clr-bg2);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    color: var(--clr-text)
}

/**/
.app-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap
}

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

.app-dl {
    flex: 1 1 280px
}

.app-table-wrap {
    overflow-x: auto
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

.app-table td {
    padding: 12px 16px;
    border: 1px solid var(--clr-border);
    vertical-align: top
}

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

.app-table td:first-child {
    color: var(--clr-muted);
    width: 45%;
    font-weight: 600
}

.dl-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.dl-sub {
    font-size: .9rem;
    color: var(--clr-muted);
    margin-bottom: 24px
}

.dl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: var(--clr-text);
    text-decoration: none;
    transition: all var(--transition)
}

.dl-btn:hover {
    border-color: var(--clr-green);
    color: #fff
}

.dl-btn-icon {
    font-size: 1.5rem
}

.dl-btn-text {
    line-height: 1.2
}

.dl-btn-text small {
    display: block;
    font-size: .7rem;
    color: var(--clr-muted)
}

.dl-btn-text strong {
    font-size: .9rem
}

/* ───  ─── */
.bonus-grid {
    display: flex;
    gap: 24px
}

.bonus-card {
    flex: 1;
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition)
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(102, 187, 59, .12)
}

.bc-ribbon {
    position: absolute;
    top: 16px;
    left: -8px;
    background: var(--clr-green);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 14px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%)
}

.bc-body {
    padding: 28px
}

.bc-icon {
    font-size: 2.5rem;
    margin-bottom: 12px
}

.bc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff
}

.bc-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-green);
    margin-bottom: 10px
}

.bc-desc {
    font-size: .85rem;
    color: var(--clr-muted);
    line-height: 1.5;
    margin-bottom: 20px
}

.bc-terms {
    font-size: .75rem;
    color: rgba(153, 153, 179, .6)
}

.wheel-section {
    background: var(--clr-bg2);
    border-radius: var(--radius);
    padding: 48px 24px;
    text-align: center;
    border: 1px solid var(--clr-border)
}

.wheel-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 28px
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(102, 187, 59, .2)
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-gold);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

.wheel-result {
    margin-top: 24px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.wheel-result-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff
}

.wheel-result-text.win {
    color: var(--clr-green);
    animation: fadeInUp .4s ease
}

.wheel-result-text.lose {
    color: #e05555;
    animation: fadeInUp .4s ease
}

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

/* ───  ─── */
.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.review-card {
    flex: 1 1 260px;
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 24px
}

.rc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

.rc-name {
    font-weight: 600;
    font-size: .9rem;
    color: #fff
}

.rc-date {
    font-size: .75rem;
    color: var(--clr-muted)
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-gold)
}

.rc-text {
    font-size: .88rem;
    color: var(--clr-muted);
    line-height: 1.6
}

.review-form-wrap {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 32px;
    max-width: 560px;
    margin: 0 auto
}

.review-form-wrap h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff
}

.form-field {
    margin-bottom: 18px
}

.form-field label {
    display: block;
    font-size: .85rem;
    color: var(--clr-muted);
    margin-bottom: 6px;
    font-weight: 600
}

.form-field input, .form-field textarea {
    width: 100%;
    background: var(--clr-bg2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--clr-text);
    font-family: inherit;
    font-size: .9rem;
    transition: border-color var(--transition)
}

.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--clr-green)
}

.form-field textarea {
    resize: vertical;
    min-height: 100px
}

.form-success {
    display: none;
    background: rgba(102, 187, 59, .12);
    border: 1px solid var(--clr-green);
    border-radius: var(--radius-sm);
    padding: 16px;
    color: var(--clr-green);
    text-align: center;
    font-weight: 600;
    margin-top: 16px
}

.form-success.show {
    display: block;
    animation: fadeInUp .3s ease
}

/* ───  ─── */
.z9x1k {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px
}

.foot-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

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

.foot-logo img {
    height: 36px;
    margin-bottom: 16px
}

.foot-tagline {
    font-size: .85rem;
    color: var(--clr-muted);
    max-width: 220px;
    line-height: 1.6
}

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

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

.foot-links a {
    font-size: .85rem;
    color: var(--clr-muted);
    transition: color var(--transition)
}

.foot-links a:hover {
    color: #fff
}

.pay-logos, .prov-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px
}

.pay-logo, .prov-logo {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-muted)
}

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

.legal-text {
    font-size: .75rem;
    color: rgba(153, 153, 179, .55);
    line-height: 1.6;
    max-width: 680px
}

.copyright {
    font-size: .78rem;
    color: rgba(153, 153, 179, .5)
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(153, 153, 179, .4);
    font-size: .65rem;
    font-weight: 700;
    color: var(--clr-muted);
    flex-shrink: 0
}

/* ───  ─── */
.w8f3t {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #0f0f1a, var(--clr-bg));
    border-top: 1px solid var(--clr-green);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.wd-text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.wd-title {
    font-size: .85rem;
    color: #fff;
    font-weight: 700
}

.wd-bonus {
    font-size: .78rem;
    color: var(--clr-green)
}

.wd-close {
    background: none;
    border: none;
    color: var(--clr-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
    line-height: 1
}

.wd-close:hover {
    color: #fff
}

.wd-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-green);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition)
}

.wd-link:hover {
    background: var(--clr-green-d);
    color: #fff;
    transform: translateY(-1px)
}

.content-body h2, .content-body h3, .content-body h4 {
    color: #fff;
    margin: 1.5em 0 .6em;
    line-height: 1.3
}

.content-body h2 {
    font-size: 1.5rem
}

.content-body h3 {
    font-size: 1.2rem
}

.content-body p {
    margin-bottom: 1em;
    color: var(--clr-muted)
}

.content-body ul, .content-body ol {
    margin: 0 0 1em 1.5em;
    color: var(--clr-muted)
}

.content-body li {
    margin-bottom: .4em
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    text-align: left
}

.content-body table th, .content-body table td {
    border: 1px solid var(--clr-border);
    padding: 10px 14px;
    font-size: .9rem
}

.content-body table th {
    background: var(--clr-card);
    color: var(--clr-text);
    font-weight: 700
}

.content-body table td {
    color: var(--clr-muted)
}

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

.content-body a {
    color: var(--clr-green);
    text-decoration: underline
}

.content-body blockquote {
    border-left: 3px solid var(--clr-green);
    padding: 12px 20px;
    margin: 1.2em 0;
    background: var(--clr-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-muted);
    font-style: italic
}

.content-body strong, .content-body b {
    color: var(--clr-text)
}

.sec-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-green), transparent);
    border-radius: 2px;
    margin: 12px auto 0
}

/* ───  ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

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

/* ───  ─── */
.swiper-outer {
    position: relative
}

.swiper-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px
}

.swiper-track::-webkit-scrollbar {
    display: none
}

.swiper-track > * {
    scroll-snap-align: start;
    flex-shrink: 0
}


.q2p7z {
    display: none
}

.r4m1n {
    visibility: hidden
}

.v6b8c, .k0l3s {
    pointer-events: none
}

.wp-block-separator {
    border: 0;
    border-top: 1px solid var(--clr-border)
}

.wp-site-blocks {
    padding: 0
}

.has-global-padding {
    padding-inline: 0
}

.wpcf7-not-valid-tip {
    color: #e05555;
    font-size: .8rem
}

.entry-content {
    line-height: 1.7
}

.site-title {
    font-weight: 700
}

@media (max-width: 900px) {
    .tourn-grid {
        flex-direction: column
    }

    .bonus-grid {
        flex-direction: column
    }

    .app-wrap {
        flex-direction: column
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-wrap {
        height: 380px
    }

    .slide-content h1 {
        font-size: 1.4rem
    }

    .b9q4r {
        padding: 40px 0
    }

    .reviews-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 4px
    }

    .review-card {
        min-width: 280px;
        scroll-snap-align: start
    }

    .tourn-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none
    }

    .tourn-card {
        min-width: 280px;
        scroll-snap-align: start
    }

    .bonus-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none
    }

    .bonus-card {
        min-width: 260px;
        scroll-snap-align: start
    }

    .foot-grid {
        gap: 24px
    }

    .w8f3t {
        flex-wrap: wrap;
        gap: 8px
    }
}

@media (max-width: 480px) {
    .x7k2m {
        padding: 0 14px
    }

    .hdr-btns .btn-login {
        display: none
    }

    .wheel-section {
        padding: 32px 16px
    }

    #wheel-canvas {
        max-width: 280px
    }
}

@media (max-width: 768px) {
    .hero-wrap {
        height: 520px;
        border-radius: 0;
    }

    .slide-item img {
        height: 250px;
        object-fit: cover;
        object-position: center top;
    }

    .slide-overlay {
        background: linear-gradient(
                to bottom,
                rgba(23, 23, 33, .15) 0%,
                rgba(23, 23, 33, .35) 45%,
                rgba(23, 23, 33, .98) 100%
        );
    }

    .slide-content {
        top: auto;
        left: 16px;
        right: 16px;
        bottom: 70px;
        width: auto;
        max-width: none;
        transform: none;
        text-align: left;
    }

    .slide-content h1 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 16px;
        display: block;
        max-height: none;
        overflow: visible;
    }

    .slide-content .btn-bonus {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
        padding: 12px 18px;
    }

    .slider-arrow {
        display: none;
    }

    .slider-nav {
        bottom: 28px;
    }
}

@media (max-width: 480px) {
    .hero-wrap {
        height: 500px;
    }

    .slide-item img {
        height: 235px;
    }

    .slide-content h1 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 12px;
    }
}

.ra-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #111;
}

.ra-hero__bg {
    position: absolute;
    inset: 0;
}

.ra-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ra-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, .2) 0%,
            rgba(0, 0, 0, .55) 45%,
            rgba(11, 11, 18, .98) 100%
    );
}

.ra-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 60px;
}

.ra-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 187, 59, .15);
    border: 1px solid rgba(102, 187, 59, .3);
    color: #66BB3B;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.ra-hero__title {
    color: #fff;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    max-width: 700px;
    margin-bottom: 18px;
}

.ra-hero__text {
    max-width: 560px;
    color: rgba(255, 255, 255, .8);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ra-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    background: #66BB3B;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

.ra-hero__stats {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.ra-stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 130px;
}

.ra-stat strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
}

.ra-stat span {
    color: #aaa;
    font-size: 12px;
}

@media (max-width: 768px) {

    .ra-hero {
        min-height: 540px;
    }

    .ra-hero__content {
        padding: 260px 16px 30px;
    }

    .ra-hero__title {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .ra-hero__text {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .ra-hero__btn {
        width: 100%;
    }

    .ra-hero__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 20px;
    }

    .ra-stat {
        min-width: auto;
        text-align: center;
        padding: 12px 8px;
    }

    .ra-stat strong {
        font-size: 15px;
    }

    .ra-stat span {
        font-size: 11px;
    }
}

.hyvsdx {
    max-width: 1100px;
    margin: 40px auto;
    padding: 32px;
    background: #14141d;
    border: 1px solid #2b2b3f;
    border-radius: 18px;
    overflow: hidden;
}

.hyvsdx h1 {
    font-size: 38px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.hyvsdx h2 {
    font-size: 28px;
    line-height: 1.3;
    color: #fff;
    margin: 40px 0 18px;
}

.hyvsdx h3 {
    font-size: 22px;
    line-height: 1.3;
    color: #fff;
    margin: 30px 0 14px;
}

.hyvsdx p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8c7;
    margin-bottom: 18px;
}

.hyvsdx ul,
.hyvsdx ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.hyvsdx li {
    color: #b8b8c7;
    line-height: 1.8;
    margin-bottom: 8px;
}

.hyvsdx a {
    color: #66BB3B;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hyvsdx img,
.hyvsdx iframe,
.hyvsdx table {
    max-width: 100%;
}

.hyvsdx table {
    display: block;
    overflow-x: auto;
}

.hyvsdx blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #66BB3B;
    background: rgba(102, 187, 59, .08);
    border-radius: 0 10px 10px 0;
    color: #d6d6de;
}

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

.hyvsdx * {
    max-width: 100%;
}

@media (max-width: 768px) {

    .hyvsdx {
        margin: 24px auto;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .hyvsdx h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .hyvsdx h2 {
        font-size: 22px;
        margin: 30px 0 14px;
    }

    .hyvsdx h3 {
        font-size: 18px;
    }

    .hyvsdx p,
    .hyvsdx li {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

    .hyvsdx {
        padding: 16px 14px;
    }

    .hyvsdx h1 {
        font-size: 24px;
    }

    .hyvsdx h2 {
        font-size: 20px;
    }

    .hyvsdx p,
    .hyvsdx li {
        font-size: 13px;
    }
}