:root {
    --c-bg: #042522;
    --c-header: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f5f0;
    --c-text-muted: #9ecfbe;
    --c-border: #0a4a3a;
    --c-accent: #1aff9c;
    --c-card: #062e27;
    --c-card2: #07392f;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --trans: .25s ease
}

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

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

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

a:hover {
    color: #fff
}

h1, h2, h3, h4 {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.25;
    color: #fff
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem
}

h3 {
    font-size: 1.15rem;
    font-weight: 600
}

p {
    margin-bottom: .75rem
}

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

.b7q1e {
    padding: 60px 0
}

.m3r8t {
    text-align: center;
    margin-bottom: 2.5rem
}

.m3r8t h2 {
    display: inline-block;
    position: relative;
    padding-bottom: .5rem
}

.m3r8t h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--c-btn-reg);
    margin: .5rem auto 0;
    border-radius: 2px
}

button, a.xz4kw, .xz4kw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
    text-decoration: none;
    white-space: nowrap
}

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

.btn-login:hover {
    filter: brightness(1.25);
    transform: translateY(-1px);
    color: #fff
}

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

.btn-reg:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(179, 10, 215, .55);
    color: #fff
}

.btn-bonus {
    background: linear-gradient(135deg, #B30AD7, #7b08a0);
    color: #fff;
    font-size: .9rem;
    padding: 9px 20px
}

.btn-bonus:hover {
    filter: brightness(1.15);
    color: #fff
}

.btn-hero {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 15px 38px;
    font-size: 1.1rem;
    border-radius: var(--radius);
    box-shadow: 0 0 30px rgba(179, 10, 215, .5)
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(179, 10, 215, .75);
    color: #fff
}

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

.q2n8s {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px
}

.r5x1a img {
    height: 54px;
    width: auto
}

.j7m4c {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0
}

.j7m4c li a {
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: color var(--trans)
}

.j7m4c li a:hover {
    color: #fff
}

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

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

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1aff9c;
    box-shadow: 0 0 8px #1aff9c;
    animation: q5e2z 1.8s infinite
}

@keyframes q5e2z {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .35
    }
}

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--trans)
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 48, 41, .97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center
}

.mobile-menu ul li a {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600
}

.mobile-menu .w9b3k {
    flex-direction: column;
    gap: 12px;
    margin-top: 16px
}

.f8h2m {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #000
}

.f8h2m::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 34, .92) 40%, rgba(179, 10, 215, .18) 100%);
    z-index: 1
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    z-index: 0
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px
}

.hero-badge {
    display: inline-block;
    background: rgba(179, 10, 215, .25);
    border: 1px solid rgba(179, 10, 215, .5);
    color: #e2a0f5;
    font-size: .8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .5px;
    margin-bottom: 1.2rem
}

.hero-inner h1 {
    margin-bottom: 1rem
}

.hero-inner p {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 1.8rem;
    max-width: 500px
}

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: .5rem
}

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

.hero-trust svg {
    color: var(--c-accent)
}

.s6d4p {
    background: linear-gradient(180deg, #042522 0%, #062e27 100%)
}

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

.adv-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--trans), box-shadow var(--trans)
}

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

.adv-icon {
    font-size: 2rem;
    line-height: 1
}

.adv-card h3 {
    font-size: 1rem;
    color: #fff
}

.adv-card p {
    font-size: .875rem;
    color: var(--c-text-muted);
    margin: 0
}

.t3g9n {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px
}

.mirror-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.2rem;
    flex-wrap: wrap
}

.mirror-meta .badge-ok {
    background: #0d4d35;
    color: #1aff9c;
    border: 1px solid #1aff9c33;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700
}

.mirror-time {
    font-size: .82rem;
    color: var(--c-text-muted)
}

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

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

thead th {
    background: #032820;
    color: var(--c-text-muted);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--c-border)
}

tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background var(--trans)
}

tbody tr:hover {
    background: #0a4033
}

tbody td {
    padding: 12px 16px;
    font-size: .9rem;
    vertical-align: middle
}

.status-ok {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1aff9c;
    font-size: .82rem;
    font-weight: 700
}

.status-ok::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1aff9c;
    display: block
}

.mirror-link {
    color: var(--c-accent);
    font-weight: 600
}

.mirror-link:hover {
    color: #fff
}

.r2k7w {
    background: var(--c-card2)
}

.win-list {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px
}

.win-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: grid;
    grid-template-columns:32px 1fr auto;
    align-items: center;
    gap: 12px;
    transition: transform var(--trans)
}

.win-item:hover {
    transform: translateX(4px)
}

.win-rank {
    font-size: .8rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-align: center
}

.win-rank.gold {
    color: #ffd700
}

.win-rank.silver {
    color: #c0c0c0
}

.win-rank.bronze {
    color: #cd7f32
}

.win-nick {
    font-size: .9rem;
    font-weight: 600;
    color: #fff
}

.win-game {
    font-size: .78rem;
    color: var(--c-text-muted)
}

.win-amount {
    font-size: .95rem;
    font-weight: 700;
    color: #1aff9c;
    white-space: nowrap
}

.a8s3l {
    background: linear-gradient(180deg, #053029 0%, #042522 100%)
}

.bonus-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans)
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(179, 10, 215, .12);
    pointer-events: none
}

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

.bonus-tag {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--c-btn-reg);
    text-transform: uppercase
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1
}

.bonus-amount span {
    font-size: .95rem;
    font-weight: 400;
    color: var(--c-text-muted);
    display: block;
    margin-top: 2px
}

.bonus-card p {
    font-size: .875rem;
    color: var(--c-text-muted);
    margin: 0
}

.bonus-slider-wrap {
    position: relative
}

.bonus-slider-inner {
    display: flex;
    gap: 20px;
    transition: transform .35s ease
}

.slider-nav {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 16px
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--c-text-muted);
    background: transparent;
    cursor: pointer;
    transition: all var(--trans)
}

.slider-dot.active {
    background: var(--c-btn-reg);
    border-color: var(--c-btn-reg)
}

.wheel-section {
    background: var(--c-card2);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid var(--c-border)
}

.wheel-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(179, 10, 215, .35)
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5))
}

.wheel-btn {
    background: var(--c-btn-reg);
    color: #fff;
    padding: 14px 40px;
    font-size: 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    box-shadow: 0 0 20px rgba(179, 10, 215, .4)
}

.wheel-btn:hover:not(:disabled) {
    filter: brightness(1.2);
    transform: translateY(-2px)
}

.wheel-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.wheel-result {
    display: none;
    background: #0d4d35;
    border: 1px solid #1aff9c44;
    border-radius: var(--radius-sm);
    padding: 18px 28px;
    text-align: center;
    animation: fadeUp .4s ease
}

.wheel-result.lose {
    background: #3d1212;
    border-color: #ff444444
}

.wheel-result h3 {
    margin-bottom: 6px
}

.wheel-result p {
    font-size: .9rem;
    color: var(--c-text-muted);
    margin: 0
}

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

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

.content-block h1, .content-block h2, .content-block h3 {
    margin-bottom: .75rem;
    margin-top: 1.25rem
}

.content-block h1:first-child, .content-block h2:first-child, .content-block h3:first-child {
    margin-top: 0
}

.content-block p {
    color: var(--c-text-muted);
    font-size: .95rem
}

.content-block ul, .content-block ol {
    padding-left: 1.5rem;
    margin-bottom: .75rem;
    color: var(--c-text-muted);
    font-size: .95rem
}

.content-block li {
    margin-bottom: .4rem
}

.content-block table {
    min-width: auto;
    width: 100%
}

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

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #032820;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 20px;
    border: 1px solid var(--c-border)
}

.author-ava {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-btn-reg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #fff
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem
}

.author-desc {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin: 2px 0 0
}

.reviews-wrap {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px
}

.review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.review-head {
    display: flex;
    align-items: center;
    gap: 14px
}

.review-ava {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #013D33, #B30AD7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0
}

.review-name {
    font-weight: 700;
    color: #fff;
    font-size: .9rem
}

.review-stars {
    display: flex;
    gap: 2px
}

.review-stars svg {
    color: #ffd700
}

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

.review-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 540px
}

.review-form h3 {
    margin-bottom: 1.2rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.form-field label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-text-muted)
}

.form-field input, .form-field textarea {
    background: #032820;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: #fff;
    font-size: .9rem;
    font-family: inherit;
    transition: border-color var(--trans);
    outline: none
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--c-btn-reg)
}

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

.form-success {
    display: none;
    background: #0d4d35;
    border: 1px solid #1aff9c44;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: .9rem;
    color: #1aff9c;
    margin-top: 12px
}

.v2x8r {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 40px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns:200px 1fr;
    gap: 40px;
    margin-bottom: 32px
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 12px
}

.footer-desc {
    font-size: .8rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.footer-cols {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.footer-col h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 7px
}

.footer-col ul li a {
    font-size: .85rem;
    color: var(--c-text-muted)
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px
}

.badge-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-text-muted)
}

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

.footer-legal {
    font-size: .75rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

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

.widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #053029, #07392f);
    border-top: 2px solid var(--c-btn-reg);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(179, 10, 215, .25)
}

.widget-text {
    font-size: .9rem;
    color: #fff;
    font-weight: 600
}

.widget-text span {
    color: #ffd700
}

.widget-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.widget-close {
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 2px 6px
}

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

body {
    padding-bottom: 72px
}

.e9q1z {
    display: none
}

.n4w2x {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--c-btn-login), var(--c-btn-reg), var(--c-btn-login));
    background-size: 200% auto;
    animation: y7p3k 3s linear infinite
}

@keyframes y7p3k {
    0% {
        background-position: 0% center
    }
    100% {
        background-position: 200% center
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: none
}

@media (max-width: 900px) {
    .bonus-grid {
        grid-template-columns:1fr
    }

    .footer-grid {
        grid-template-columns:1fr
    }

    .footer-cols {
        grid-template-columns:repeat(2, 1fr)
    }
}

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

    .burger-btn {
        display: flex
    }

    .q2n8s {
        grid-template-columns:auto auto auto
    }

    .f8h2m {
        min-height: 420px
    }

    .win-list {
        grid-template-columns:1fr
    }

    .slider-nav {
        display: flex
    }

    .bonus-grid {
        display: none
    }

    .bonus-slider-wrap .bonus-slider-inner {
        overflow: hidden
    }

    .bonus-slider-wrap {
        display: block
    }

    .bonus-slider-inner .bonus-card {
        min-width: calc(100vw - 60px)
    }

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

@media (max-width: 480px) {
    .hero-inner h1 {
        font-size: 1.4rem
    }

    .footer-cols {
        grid-template-columns:1fr
    }

    .q2n8s {
        padding: 10px 14px
    }

    .widget-bar {
        flex-wrap: wrap;
        padding: 10px 14px
    }
}

.wp-content, .elementor-widget, .woocommerce, .post-meta {
    display: none !important
}

.i1b4d, .p7t3s, .q8x2r, .m5k9l, .v3n6w {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    visibility: hidden
}

@media (max-width: 768px) {
    .w9b3k .btn-reg {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        display: none;
    }

    .bonus-slider-wrap {
        display: block !important;
    }

    .bonus-slider-inner {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bonus-slider-inner::-webkit-scrollbar {
        display: none;
    }

    .bonus-slider-inner .bonus-card {
        min-width: calc(100vw - 48px);
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .bonus-slider-wrap {
        display: none !important;
    }

    .bonus-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 16px;
    }

    .bonus-card .xz4kw {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .bonus-amount {
        font-size: 1.25rem;
        line-height: 1.25;
    }

    .bonus-card p {
        font-size: .86rem;
        line-height: 1.55;
    }
}