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

:root {
    --c-bg: #042522;
    --c-hdr: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f0ee;
    --c-text-muted: #9bbfb8;
    --c-accent: #B30AD7;
    --c-gold: #f5c542;
    --c-border: #0a4a3d;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: .25s ease
}

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.7;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    opacity: .8
}

.x9f2a {
    display: none
}

.z7b1c {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.k3m8d {
    opacity: 0;
    height: 0;
    overflow: hidden
}

input[type=hidden].wp-nonce-field {
    display: none
}

.wpcf7-response-output {
    display: none
}

.elementor-invisible {
    visibility: hidden
}

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

.c3r7t {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.g5h2j {
    display: grid
}

.f4k9l {
    display: flex;
    align-items: center
}

/*  */
.hdr-a1b2 {
    background: var(--c-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

.hdr-inner-x8 {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1280px;
    margin: 0 auto
}

.hdr-logo-z3 {
    flex-shrink: 0
}

.hdr-logo-z3 img {
    height: 48px;
    width: auto;
    object-fit: contain
}

.hdr-nav-q5 {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center
}

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

.hdr-nav-q5 a:hover {
    background: rgba(179, 10, 215, .15);
    color: #fff;
    opacity: 1
}

.hdr-online-p7 {
    font-size: .75rem;
    color: var(--c-text-muted);
    white-space: nowrap;
    text-align: center
}

.hdr-online-p7 span {
    color: #4eff91;
    font-weight: 700
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
    opacity: 1
}

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

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

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

.btn-reg:hover {
    box-shadow: 0 0 24px rgba(179, 10, 215, .6)
}

.btn-bonus {
    background: linear-gradient(135deg, #B30AD7, #7b05a0);
    color: #fff;
    font-size: .85rem;
    padding: 8px 16px
}

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

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

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

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

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

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

.mob-menu-n9 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-hdr);
    z-index: 999;
    padding: 80px 20px 20px;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto
}

.mob-menu-n9.open {
    display: flex
}

.mob-menu-n9 a {
    color: var(--c-text);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--c-border)
}

.mob-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--c-text);
    font-size: 1.5rem;
    cursor: pointer
}

.hero-b3n5 {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-hdr)
}

.hero-bg-r1 {
    position: absolute;
    inset: 0;
    background-image: url('/better-hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: .45
}

.hero-grad-v6 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 34, .9) 0%, rgba(5, 48, 41, .6) 50%, rgba(179, 10, 215, .15) 100%)
}

.hero-cnt-f8 {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px
}

.hero-cnt-f8 h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hero-cnt-f8 h1 em {
    color: var(--c-accent);
    font-style: normal
}

.hero-cnt-f8 p {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: var(--c-text-muted);
    max-width: 560px;
    margin-bottom: 28px
}

.hero-bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #B30AD7, #7b05a0);
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 8px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    box-shadow: 0 0 24px rgba(179, 10, 215, .5);
    animation: pulse-glow 2s infinite
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 24px rgba(179, 10, 215, .5)
    }
    50% {
        box-shadow: 0 0 40px rgba(179, 10, 215, .8)
    }
}

.hero-btns-d2 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/*  */
.sec-t3g8 {
    padding: 60px 0
}

.sec-title-e5 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 36px;
    position: relative
}

.sec-title-e5::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--c-accent);
    margin: 10px auto 0;
    border-radius: 2px
}

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

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

.jackpot-card-b3 {
    background: linear-gradient(135deg, #053029, #063a30);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.jackpot-card-b3:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(179, 10, 215, .2)
}

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

.jackpot-icon-c4 {
    font-size: 2.4rem;
    margin-bottom: 12px
}

.jackpot-label-d5 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    margin-bottom: 6px
}

.jackpot-amt-e6 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
    animation: counter-tick .1s ease
}

@keyframes counter-tick {
    0% {
        transform: scale(1.04)
    }
    100% {
        transform: scale(1)
    }
}

.video-wrap-f7 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .4)
}

.video-wrap-f7 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

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

.bonus-card-h2 {
    background: linear-gradient(160deg, #053029, #031e18);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bonus-card-h2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(179, 10, 215, .25)
}

.bonus-card-h2 .b-icon {
    font-size: 2.6rem
}

.bonus-card-h2 .b-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.bonus-card-h2 .b-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--c-accent)
}

.bonus-card-h2 .b-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.slots-grid-i3 {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 16px
}

.slot-card-j4 {
    background: #053029;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 16px 10px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition)
}

.slot-card-j4:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(179, 10, 215, .3)
}

.slot-card-j4 img {
    border-radius: var(--radius-sm);
    margin: 0 auto 10px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover
}

.slot-card-j4 .s-name {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff
}

.slot-card-j4 .btn {
    width: 100%;
    font-size: .75rem;
    padding: 7px 6px;
    background: var(--c-btn-login);
    color: #fff
}

.slot-card-j4 .btn:hover {
    background: var(--c-btn-reg)
}

/*  */
.wheel-wrap-k5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.wheel-canvas-l6 {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(179, 10, 215, .4);
    display: block;
    max-width: 340px;
    width: 100%
}

.wheel-btn-m7 {
    min-width: 200px
}

.wheel-result-n8 {
    display: none;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #053029, #0a4a3d);
    border: 1px solid var(--c-accent);
    border-radius: var(--radius);
    max-width: 400px;
    width: 100%;
    animation: fadeIn .5s ease
}

.wheel-result-n8.show {
    display: block
}

.wheel-result-n8 .wr-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 8px
}

.wheel-result-n8 .wr-bonus {
    font-size: 1.1rem;
    color: var(--c-text);
    margin-bottom: 16px
}

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

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

.review-wrap-o9 {
    background: #053029;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    line-height: 1.85
}

.review-meta-p1 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border)
}

.review-meta-p1 img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-accent)
}

.review-meta-p1 .rm-name {
    font-weight: 700;
    font-size: .95rem;
    color: #fff
}

.review-meta-p1 .rm-role {
    font-size: .78rem;
    color: var(--c-text-muted)
}

.review-body-q2 h2, .review-body-q2 h3, .review-body-q2 h4 {
    color: #fff;
    margin: 24px 0 10px;
    font-weight: 700;
    line-height: 1.3
}

.review-body-q2 h2 {
    font-size: 1.35rem
}

.review-body-q2 h3 {
    font-size: 1.15rem
}

.review-body-q2 p {
    margin-bottom: 14px;
    color: var(--c-text)
}

.review-body-q2 ul, .review-body-q2 ol {
    margin: 0 0 14px 24px
}

.review-body-q2 li {
    margin-bottom: 6px
}

.review-body-q2 a {
    color: var(--c-accent);
    text-decoration: underline
}

.review-body-q2 strong, .review-body-q2 b {
    color: #fff
}

.review-body-q2 table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px auto;
    overflow-x: auto;
    display: block
}

.review-body-q2 table th, .review-body-q2 table td {
    border: 1px solid var(--c-border);
    padding: 10px 14px;
    text-align: left;
    font-size: .88rem
}

.review-body-q2 table th {
    background: #031e18;
    color: #fff;
    font-weight: 700
}

.review-body-q2 table tr:hover {
    background: rgba(255, 255, 255, .03)
}

.review-body-q2 blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(179, 10, 215, .08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--c-text-muted)
}

.review-body-q2 img {
    border-radius: var(--radius-sm);
    margin: 16px auto
}

.review-body-q2 code {
    background: rgba(255, 255, 255, .08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: .85em
}

.review-body-q2 pre {
    background: rgba(255, 255, 255, .05);
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 14px
}

/*  */
.faq-list-r3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto
}

.faq-item-s4 {
    background: #053029;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-question-t5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    user-select: none;
    gap: 12px;
    transition: background var(--transition)
}

.faq-question-t5:hover {
    background: rgba(255, 255, 255, .04)
}

.faq-question-t5 .fq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(179, 10, 215, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .3s;
    font-size: .85rem
}

.faq-item-s4.open .fq-icon {
    transform: rotate(180deg);
    background: var(--c-accent)
}

.faq-answer-u6 {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease
}

.faq-item-s4.open .faq-answer-u6 {
    max-height: 400px;
    padding: 0 22px 18px
}

.faq-answer-u6 p {
    color: var(--c-text-muted);
    font-size: .9rem;
    line-height: 1.7
}

.faq-answer-u6 a {
    color: var(--c-accent);
    text-decoration: underline
}

.ftr-b4c9 {
    background: var(--c-hdr);
    padding: 48px 0 24px;
    margin-top: 60px;
    border-top: 1px solid var(--c-border)
}

.ftr-grid-d1 {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 32px
}

.ftr-logo-e2 img {
    height: 44px;
    width: auto;
    margin-bottom: 14px
}

.ftr-logo-e2 p {
    font-size: .8rem;
    color: var(--c-text-muted);
    max-width: 260px;
    line-height: 1.6
}

.ftr-nav-f3 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px
}

.ftr-nav-f3 a {
    color: var(--c-text-muted);
    font-size: .82rem;
    transition: color var(--transition)
}

.ftr-nav-f3 a:hover {
    color: #fff;
    opacity: 1
}

.ftr-info-g4 {
    font-size: .78rem;
    color: var(--c-text-muted);
    text-align: right
}

.ftr-providers-h5 {
    margin-bottom: 24px
}

.ftr-providers-h5 .fp-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    margin-bottom: 10px
}

.ftr-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.ftr-logo-pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    transition: background var(--transition)
}

.ftr-logo-pill:hover {
    background: rgba(255, 255, 255, .12)
}

.ftr-legal-i6 {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    font-size: .75rem;
    color: var(--c-text-muted);
    text-align: center;
    line-height: 1.7
}

.ftr-legal-i6 a {
    color: var(--c-text-muted);
    text-decoration: underline
}

/*  */
.widget-j7k8 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, #053029, #0a4a3d);
    border-top: 2px solid var(--c-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4);
    transform: translateY(100%);
    animation: slideUp .6s .8s ease forwards
}

@keyframes slideUp {
    to {
        transform: translateY(0)
    }
}

.widget-text-l9 {
    display: flex;
    flex-direction: column
}

.widget-text-l9 strong {
    color: #fff;
    font-size: .9rem
}

.widget-text-l9 span {
    color: var(--c-gold);
    font-size: .8rem
}

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

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

.slider-outer-n2 {
    position: relative;
    overflow: hidden
}

.slider-track-o3 {
    display: flex;
    transition: transform .4s ease;
    gap: 16px
}

.slider-track-o3 > * {
    flex-shrink: 0
}

.slider-controls-p4 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.slider-dot-q5 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background .3s
}

.slider-dot-q5.active {
    background: var(--c-accent)
}

.slider-arrow-r6 {
    display: none
}

.reveal-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal-anim.visible {
    opacity: 1;
    transform: none
}

.wp-site-url {
    display: none
}

.wp-home-url {
    display: none
}

.entry-content {
    display: none
}

.post-thumbnail {
    display: none
}

.yoast-seo-meta {
    display: none
}

/*  */
@media (max-width: 1024px) {
    .hdr-inner-x8 {
        grid-template-columns:auto 1fr auto
    }

    .hdr-nav-q5 {
        display: none
    }

    .slots-grid-i3 {
        grid-template-columns:repeat(3, 1fr)
    }

    .ftr-grid-d1 {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto auto
    }
}

@media (max-width: 768px) {
    .hdr-inner-x8 {
        grid-template-columns:auto 1fr auto auto;
        padding: 10px 16px
    }

    .hdr-online-p7 {
        display: none
    }

    .burger-m4 {
        display: flex
    }

    .bonuses-track-g1 {
        display: flex
    }

    .slots-grid-i3 {
        display: flex
    }

    .widget-j7k8 {
        padding: 10px 14px
    }

    .widget-text-l9 strong {
        font-size: .8rem
    }

    .hero-cnt-f8 {
        padding: 40px 16px
    }

    .ftr-grid-d1 {
        grid-template-columns:1fr
    }

    .ftr-info-g4 {
        text-align: left
    }

    .review-wrap-o9 {
        padding: 22px 16px
    }

    .sec-t3g8 {
        padding: 40px 0
    }

    .bonuses-track-g1 {
        gap: 12px
    }

    .jackpot-grid-a7 {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 480px) {
    .hdr-btns-w2 .btn-login {
        display: none
    }

    .jackpot-grid-a7 {
        grid-template-columns:1fr
    }
}

#slots,
#bonuses {
    padding: 64px 0;
    overflow: hidden;
}

#slots .sec-title-e5,
#bonuses .sec-title-e5 {
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 34px;
}

#slots .slider-outer-n2,
#bonuses .slider-outer-n2 {
    overflow: visible;
}

.slots-grid-i3 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.slot-card-j4 {
    background: linear-gradient(180deg, #07362f, #031f1a);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.slot-card-j4 img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.slot-card-j4 .s-name {
    min-height: 36px;
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.25;
}

.slot-card-j4 .btn {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #013D33;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
}

.bonuses-track-g1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bonus-card-h2 {
    min-height: 100%;
    padding: 28px 24px;
    background: linear-gradient(180deg, #07362f, #031f1a);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card-h2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(179, 10, 215, .18), transparent 45%);
    pointer-events: none;
}

.bonus-card-h2 .b-icon,
.bonus-card-h2 .b-title,
.bonus-card-h2 .b-amount,
.bonus-card-h2 .b-desc,
.bonus-card-h2 .btn {
    position: relative;
    z-index: 1;
}

.bonus-card-h2 .b-icon {
    font-size: 2.5rem;
}

.bonus-card-h2 .b-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}

.bonus-card-h2 .b-amount {
    color: #B30AD7;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.25;
}

.bonus-card-h2 .b-desc {
    color: #9bbfb8;
    font-size: .9rem;
    line-height: 1.6;
}

.bonus-card-h2 .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .slots-grid-i3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonuses-track-g1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #slots,
    #bonuses {
        padding: 44px 0;
    }

    #slots .sec-title-e5,
    #bonuses .sec-title-e5 {
        font-size: 1.35rem;
        margin-bottom: 22px;
    }

    #slots .slider-outer-n2,
    #bonuses .slider-outer-n2 {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 14px 8px;
    }

    #slots .slider-outer-n2::-webkit-scrollbar,
    #bonuses .slider-outer-n2::-webkit-scrollbar {
        display: none;
    }

    .slots-grid-i3,
    .bonuses-track-g1 {
        display: flex;
        gap: 14px;
        width: max-content;
        min-width: 100%;
        scroll-snap-type: x mandatory;
    }

    .slot-card-j4 {
        width: 150px;
        min-width: 150px;
        padding: 12px;
        scroll-snap-align: start;
    }

    .bonus-card-h2 {
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        padding: 22px 18px;
        scroll-snap-align: start;
    }

    .bonus-card-h2 .b-amount {
        font-size: 1.25rem;
    }

    .bonus-card-h2 .b-desc {
        font-size: .86rem;
    }

    .slot-card-j4 .btn,
    .bonus-card-h2 .btn {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #slots,
    #bonuses {
        padding: 36px 0;
    }

    #slots .slider-outer-n2,
    #bonuses .slider-outer-n2 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .slot-card-j4 {
        width: 138px;
        min-width: 138px;
    }

    .slot-card-j4 .s-name {
        font-size: .8rem;
    }

    .bonus-card-h2 {
        width: calc(100vw - 34px);
        min-width: calc(100vw - 34px);
        max-width: calc(100vw - 34px);
        padding: 20px 16px;
    }

    .bonus-card-h2 .b-title {
        font-size: .98rem;
    }

    .bonus-card-h2 .b-amount {
        font-size: 1.12rem;
    }

    .bonus-card-h2 .b-icon {
        font-size: 2.1rem;
    }
}
