:root {
    --c-bg: #030535;
    --c-header: #141F61;
    --c-btn-login: #141D5F;
    --c-btn-signup: #449E66;
    --c-text: #ffffff;
    --c-text-muted: #a0aec0;
    --c-border: #1e2d7a;
    --c-card: #0b1147;
    --c-card2: #0d1550;
    --c-accent: #4fc3f7;
    --c-gold: #f5c518;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4);
    --shadow-glow: 0 0 20px rgba(68, 158, 102, .3);
    --trans: .25s ease
}

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

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

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

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

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

a:hover {
    color: #fff
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700
}

.x7k2m {
    display: none
}

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

.lp4w1 {
    width: 0;
    height: 0;
    overflow: hidden
}

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

.w-section {
    padding: 60px 0
}

.w-grid {
    display: grid;
    gap: 24px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    text-decoration: none;
    letter-spacing: .3px
}

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

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

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

.btn-login:hover {
    background: #1a2878;
    color: #fff
}

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

.btn-signup:hover {
    background: #3a8d57;
    color: #fff;
    box-shadow: var(--shadow-glow)
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--c-btn-signup);
    color: var(--c-btn-signup)
}

.btn-outline:hover {
    background: var(--c-btn-signup);
    color: #fff
}

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

.hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 68px
}

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

.hdr-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.hdr-nav a {
    color: rgba(255, 255, 255, .85);
    font-size: .88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--r-sm);
    transition: background var(--trans), color var(--trans)
}

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

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

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

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #449E66;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(68, 158, 102, .6)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(68, 158, 102, 0)
    }
}

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

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

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

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

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

.hdr-mobile-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 16px 20px;
    z-index: 999
}

.hdr-mobile-menu.is-open {
    display: block
}

.hdr-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.hdr-mobile-nav a {
    padding: 10px 12px;
    border-radius: var(--r-sm);
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    transition: background var(--trans)
}

.hdr-mobile-nav a:hover {
    background: rgba(255, 255, 255, .08)
}

#hero-s9f2 {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center
}

.slider-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden
}

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

.slide.is-active {
    opacity: 1
}

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

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 5, 53, .85) 40%, rgba(3, 5, 53, .2))
}

.slide-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 600px;
    margin-left: calc((100vw - 1200px) / 2 + 20px)
}

.slide-badge {
    display: inline-block;
    background: var(--c-btn-signup);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .5px;
    text-transform: uppercase
}

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

.slide-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 24px;
    max-width: 440px
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

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

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

.s-dot.is-active {
    background: #fff;
    transform: scale(1.3)
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(20, 31, 97, .6);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--trans);
    font-size: 1.1rem
}

.slider-arrow:hover {
    background: rgba(20, 31, 97, .9)
}

.slider-arrow-prev {
    left: 20px
}

.slider-arrow-next {
    right: 20px
}

.block-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px;
    margin-bottom: 0
}

.block-card--alt {
    background: var(--c-card2)
}

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

.sec-sub {
    text-align: center;
    color: var(--c-text-muted);
    margin-bottom: 36px;
    font-size: .95rem
}

#pros-cons-f3h7 {
    background: linear-gradient(180deg, rgba(20, 31, 97, .15) 0%, transparent 100%)
}

.pros-cons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.pros-col, .cons-col {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 28px;
    position: relative;
    overflow: hidden
}

.pros-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #449E66, #34d058)
}

.cons-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e53e3e, #fc8181)
}

.col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700
}

.col-head-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem
}

.pros-icon {
    background: rgba(68, 158, 102, .2);
    color: #449E66
}

.cons-icon {
    background: rgba(229, 62, 62, .2);
    color: #fc8181
}

.pros-list, .cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.5
}

.pros-list li::before {
    content: '✓';
    color: #449E66;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.cons-list li::before {
    content: '✗';
    color: #fc8181;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

#jackpots-k8n1 {
    overflow: hidden
}

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

.jp-card {
    background: linear-gradient(135deg, #0b1147 0%, #141F61 100%);
    border: 1px solid rgba(245, 197, 24, .25);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans)
}

.jp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(245, 197, 24, .15)
}

.jp-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 197, 24, .15) 0%, transparent 70%)
}

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

.jp-name {
    font-size: .85rem;
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px
}

.jp-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
    min-height: 2.2rem
}

.jp-ticker {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px
}

#app-info-x2v5 {
    background: linear-gradient(135deg, rgba(20, 31, 97, .2) 0%, rgba(3, 5, 53, 0) 100%)
}

.app-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: start
}

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

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

.app-table th {
    background: rgba(20, 31, 97, .6);
    color: rgba(255, 255, 255, .7);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 12px 16px;
    text-align: left
}

.app-table td {
    padding: 12px 16px;
    border-top: 1px solid var(--c-border);
    font-size: .9rem;
    color: rgba(255, 255, 255, .9)
}

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

.app-table td:first-child {
    color: var(--c-text-muted);
    white-space: nowrap;
    font-size: .85rem
}

.app-dl-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.app-dl-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px
}

.app-dl-sub {
    font-size: .85rem;
    color: var(--c-text-muted);
    margin-bottom: 20px
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 14px 20px;
    text-decoration: none;
    color: #fff;
    transition: background var(--trans), border-color var(--trans), transform var(--trans)
}

.dl-btn:hover {
    background: rgba(20, 31, 97, .8);
    border-color: rgba(79, 195, 247, .4);
    transform: translateX(4px);
    color: #fff
}

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

.dl-btn-text small {
    display: block;
    font-size: .72rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.dl-btn-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: .85rem;
    color: var(--c-text-muted)
}

.stars {
    color: var(--c-gold);
    letter-spacing: 2px
}

#bonuses-r4t6 {
    background: linear-gradient(180deg, rgba(68, 158, 102, .05) 0%, transparent 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(--r-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(68, 158, 102, .2)
}

.bonus-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(68, 158, 102, .2), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--trans)
}

.bonus-card:hover::after {
    opacity: 1
}

.bonus-badge {
    display: inline-block;
    background: rgba(68, 158, 102, .2);
    color: #449E66;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 14px
}

.bonus-icon {
    font-size: 2.2rem;
    margin-bottom: 12px
}

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

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #449E66;
    margin-bottom: 10px
}

.bonus-desc {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    flex: 1
}

.bonus-terms {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 14px
}

.bonus-cta {
    margin-top: 16px
}

#slot-game-m7c3 {
    background: linear-gradient(135deg, rgba(20, 31, 97, .3) 0%, rgba(3, 5, 53, 0) 100%)
}

.slot-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center
}

.slot-machine {
    background: linear-gradient(145deg, #0a0f3a, #141F61);
    border: 2px solid rgba(245, 197, 24, .3);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: 0 0 40px rgba(20, 31, 97, .5), inset 0 0 40px rgba(0, 0, 0, .3);
    margin-bottom: 24px
}

.slot-reels {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px
}

.reel {
    background: #04082a;
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, .5)
}

.reel.is-spinning {
    animation: spin-reel .1s linear infinite
}

@keyframes spin-reel {
    0% {
        filter: blur(4px) brightness(1.3)
    }
    50% {
        filter: blur(6px) brightness(.8)
    }
    100% {
        filter: blur(4px) brightness(1.3)
    }
}

.slot-spin-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(135deg, #449E66, #2d7a4f);
    border: none;
    border-radius: var(--r-md);
    color: #fff;
    cursor: pointer;
    transition: transform var(--trans), box-shadow var(--trans);
    letter-spacing: .5px
}

.slot-spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(68, 158, 102, .4)
}

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

.slot-result {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 20px
}

.slot-result-win {
    animation: fadeInUp .4s ease
}

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

.slot-win-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-gold);
    text-shadow: 0 0 12px rgba(245, 197, 24, .5)
}

.slot-lose-text {
    font-size: .95rem;
    color: var(--c-text-muted)
}

.slot-credits {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 16px
}

.slot-credits span {
    font-weight: 700;
    color: #fff
}

#review-n5b8 {
    background: rgba(11, 17, 71, .4);
    border-radius: var(--r-lg)
}

.review-header {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 24px;
    align-items: start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-border)
}

.review-rating-block {
    text-align: right
}

.review-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1
}

.review-stars {
    color: var(--c-gold);
    font-size: 1.3rem;
    letter-spacing: 3px
}

.review-votes {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 4px
}

.author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(20, 31, 97, .4);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 16px;
    margin-top: 24px
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-login), #449E66);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0
}

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

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

.author-link {
    font-size: .78rem;
    color: var(--c-accent);
    margin-top: 4px
}

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

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

.review-body h3 {
    font-size: 1.25rem
}

.review-body h4 {
    font-size: 1.1rem
}

.review-body p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: .95rem
}

.review-body ul, .review-body ol {
    margin: 12px 0 18px 20px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    font-size: .95rem
}

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

.review-body ul li::marker {
    color: #449E66
}

.review-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    border-radius: var(--r-md);
    overflow: hidden
}

.review-body th {
    background: rgba(20, 31, 97, .7);
    color: rgba(255, 255, 255, .8);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 12px 16px;
    text-align: left
}

.review-body td {
    padding: 11px 16px;
    border-top: 1px solid var(--c-border);
    color: rgba(255, 255, 255, .88);
    font-size: .9rem
}

.review-body a {
    color: var(--c-accent)
}

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

.review-body em {
    color: rgba(255, 255, 255, .75)
}

.review-body blockquote {
    border-left: 3px solid #449E66;
    padding: 12px 20px;
    background: rgba(68, 158, 102, .08);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 18px 0;
    font-style: italic;
    color: rgba(255, 255, 255, .8)
}

.review-content-placeholder {
    color: var(--c-text-muted);
    font-style: italic;
    padding: 24px;
    text-align: center;
    border: 1px dashed var(--c-border);
    border-radius: var(--r-md)
}

#faq-j1w9 {
    background: linear-gradient(180deg, rgba(20, 31, 97, .1) 0%, transparent 100%)
}

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

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

.faq-item.is-open {
    border-color: rgba(68, 158, 102, .4)
}

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

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

.faq-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(68, 158, 102, .15);
    color: #449E66;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    transition: transform var(--trans), background var(--trans)
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(68, 158, 102, .3)
}

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

.faq-a-inner {
    padding: 0 22px 18px;
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    line-height: 1.75
}

.faq-item.is-open .faq-a {
    max-height: 400px
}

#ftr-h6k2 {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0
}

.ftr-grid {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--c-border)
}

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

.ftr-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.65
}

.ftr-col-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 14px
}

.ftr-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ftr-links li a {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: color var(--trans)
}

.ftr-links li a:hover {
    color: #fff
}

.ftr-bottom {
    padding: 28px 0
}

.ftr-providers-title, .ftr-payments-title {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
    font-weight: 600
}

.ftr-providers, .ftr-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px
}

.ftr-chip {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .6);
    transition: background var(--trans)
}

.ftr-chip:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.ftr-legal {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.ftr-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 10px
}

#widget-b9e4 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0d1045, var(--c-header));
    border-top: 2px solid #449E66;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

#widget-b9e4.is-visible {
    transform: translateY(0)
}

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

.widget-main {
    font-size: .95rem;
    font-weight: 700;
    color: #fff
}

.widget-bonus {
    font-size: .82rem;
    color: #449E66;
    font-weight: 600
}

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

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    transition: color var(--trans)
}

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

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

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

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

.obs-anim.in-view {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 1024px) {
    .slide-content {
        margin-left: 20px
    }

    .pros-cons-grid {
        grid-template-columns:1fr
    }

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

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

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

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

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

    .hdr-burger {
        display: flex
    }

    .hdr-inner {
        grid-template-columns:auto 1fr auto
    }

    .slider-wrap {
        height: 420px
    }

    .slide-content {
        margin-left: 20px
    }

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

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

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

    .bonus-slider-wrap {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        display: flex;
        gap: 20px;
        padding-bottom: 16px
    }

    .bonus-slider-wrap .bonus-card {
        min-width: 280px;
        scroll-snap-align: start
    }

    .block-card {
        padding: 20px
    }

    .slot-machine {
        padding: 20px
    }

    .slot-reels {
        gap: 8px
    }

    .reel {
        height: 80px;
        font-size: 2.2rem
    }
}

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

    .hdr-actions {
        gap: 6px
    }

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

    .btn-lg {
        padding: 12px 22px;
        font-size: .9rem
    }

    .slide-title {
        font-size: 1.6rem
    }

    .review-header {
        grid-template-columns:1fr
    }

    .review-rating-block {
        text-align: left
    }

    #widget-b9e4 {
        flex-direction: column;
        text-align: center;
        padding: 16px
    }

    .widget-cta {
        width: 100%;
        justify-content: center
    }
}

.wp-block-cover {
    position: relative
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2em
}

.elementor-widget {
    position: relative
}

.entry-content {
    padding: 0
}

.post-type-page {
    margin: 0
}

.bonus-card::after {
    pointer-events: none;
}

.bonus-card {
    position: relative;
}

.bonus-cta {
    position: relative;
    z-index: 3;
}

.bonus-cta .btn {
    position: relative;
    z-index: 4;
    pointer-events: auto;
}