:root {
    --c-bg: #1A1B20;
    --c-bg2: #1f2028;
    --c-bg3: #23242d;
    --c-header: #1A1B20;
    --c-footer: #1A1B20;
    --c-primary: #20AA2E;
    --c-primary-h: #1c9428;
    --c-secondary: #262832;
    --c-secondary-h: #2e3040;
    --c-text: #e8eaf0;
    --c-text-muted: #9ba3b8;
    --c-border: #2e3040;
    --c-card: #1f2028;
    --c-card2: #23242d;
    --c-gold: #f5c842;
    --c-red: #e03535;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .35);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .45);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .55);
    --trans: all .25s ease;
    --font: 'Montserrat', sans-serif
}

*, *::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: var(--font);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: var(--c-primary);
    transition: var(--trans)
}

a:hover {
    color: var(--c-primary-h)
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #fff
}

p {
    margin-bottom: 1rem
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem
}

li {
    margin-bottom: .4rem
}

input, textarea, select {
    font-family: var(--font)
}

.xr7k2 {
    display: none
}

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

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

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--trans);
    white-space: nowrap;
    line-height: 1
}

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

.btn-primary:hover {
    background: var(--c-primary-h);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(32, 170, 46, .4)
}

.btn-secondary {
    background: var(--c-secondary);
    color: var(--c-text)
}

.btn-secondary:hover {
    background: var(--c-secondary-h);
    color: #fff;
    transform: translateY(-1px)
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem
}

.btn-hero {
    padding: 18px 44px;
    font-size: 1.15rem;
    border-radius: var(--r-md);
    box-shadow: 0 6px 30px rgba(32, 170, 46, .45)
}

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

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

.hdr-outer {
    background: var(--c-header);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md)
}

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

.hdr-logo {
    flex-shrink: 0
}

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

.hdr-logo a {
    display: block;
    text-decoration: none
}

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

.hdr-nav a {
    color: var(--c-text-muted);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    transition: var(--trans)
}

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

.hdr-right {
    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);
    background: rgba(32, 170, 46, .1);
    border: 1px solid rgba(32, 170, 46, .2);
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap
}

.hdr-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-primary);
    animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: var(--trans)
}

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

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

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

.mob-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 27, 32, .97);
    backdrop-filter: blur(12px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px
}

.mob-nav.open {
    display: flex
}

.mob-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--r-sm);
    transition: var(--trans);
    text-align: center;
    width: 100%;
    max-width: 280px;
    display: block
}

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

.mob-nav .btn {
    width: 100%;
    max-width: 280px;
    margin-top: 4px
}

.hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: url('/reels-banner.jpg') center center/cover no-repeat;
    overflow: hidden
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 27, 32, .92) 0%, rgba(26, 27, 32, .7) 60%, rgba(32, 170, 46, .08) 100%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0
}

.hero-label {
    display: inline-block;
    background: rgba(32, 170, 46, .18);
    border: 1px solid rgba(32, 170, 46, .35);
    color: var(--c-primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px
}

.hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: 24px;
    line-height: 1.6
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px
}

.hero-badges .badge-item {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--c-text);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px
}

.hero-terms {
    font-size: .73rem;
    color: var(--c-text-muted);
    margin-top: 14px;
    opacity: .7
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.hero-stars {
    color: var(--c-gold);
    font-size: 1.1rem;
    letter-spacing: 2px
}

.hero-score {
    font-weight: 700;
    color: #fff;
    font-size: 1rem
}

.section-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 36px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm)
}

.section-block + .section-block {
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--c-border);
    position: relative
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--c-primary);
    border-radius: 2px
}

.section-subtitle {
    color: var(--c-text-muted);
    font-size: .92rem;
    margin-top: -16px;
    margin-bottom: 24px
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-sm)
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px
}

.info-table tr {
    border-bottom: 1px solid var(--c-border);
    transition: background .18s
}

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

.info-table tr:last-child {
    border-bottom: none
}

.info-table td {
    padding: 13px 16px;
    font-size: .9rem;
    line-height: 1.5;
    vertical-align: middle;
    text-align: left
}

.info-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 42%;
    white-space: nowrap
}

.info-table td:last-child {
    color: var(--c-text);
    font-weight: 500
}

.tbl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(32, 170, 46, .12);
    border: 1px solid rgba(32, 170, 46, .25);
    color: var(--c-primary);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px
}

.tbl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
    display: inline-block
}

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

.jackpot-card {
    flex: 1;
    min-width: 220px;
    background: linear-gradient(145deg, #1f2338, #242838);
    border: 1px solid rgba(245, 200, 66, .2);
    border-radius: var(--r-md);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(245, 200, 66, .15), transparent 70%)
}

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

.jackpot-game {
    font-size: .88rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 12px
}

.jackpot-amount {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px
}

.jackpot-currency {
    font-size: .9rem;
    font-weight: 700;
    color: var(--c-gold);
    opacity: .8;
    vertical-align: super;
    font-size: .85rem
}

.jackpot-ticker {
    font-size: .72rem;
    color: var(--c-primary);
    margin-top: 8px;
    font-weight: 600
}

.jackpot-ticker.up::before {
    content: '▲ '
}

.jackpot-ticker.down {
    color: var(--c-red)
}

.jackpot-ticker.down::before {
    content: '▼ '
}

.app-block-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start
}

.app-info-col {
    flex: 1;
    min-width: 280px
}

.app-btns-col {
    flex: 0 0 auto
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-secondary);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 12px 18px;
    text-decoration: none;
    color: var(--c-text);
    transition: var(--trans);
    font-weight: 600
}

.app-download-btn:hover {
    background: var(--c-secondary-h);
    color: #fff;
    border-color: rgba(255, 255, 255, .15);
    transform: translateX(3px)
}

.app-download-btn .icon {
    font-size: 1.5rem;
    line-height: 1
}

.app-download-btn .text small {
    display: block;
    font-size: .68rem;
    font-weight: 400;
    opacity: .7;
    margin-bottom: 2px
}

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

.app-table tr {
    border-bottom: 1px solid var(--c-border)
}

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

.app-table td {
    padding: 10px 12px;
    font-size: .87rem;
    text-align: left
}

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

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--r-md);
    background: #000
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--r-md)
}

.slot-machine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.slot-reels {
    display: flex;
    gap: 12px;
    background: #141519;
    border: 2px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-md);
    padding: 20px 24px;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, .5)
}

.slot-reel {
    width: 90px;
    height: 90px;
    background: #1c1d24;
    border: 2px solid var(--c-border);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, .4)
}

.slot-reel.spinning .reel-symbol {
    animation: spinSymbol .08s linear infinite
}

@keyframes spinSymbol {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(100%)
    }
}

.reel-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform .15s
}

.slot-spin-btn {
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .05em
}

.slot-result {
    text-align: center;
    padding: 20px 28px;
    border-radius: var(--r-md);
    background: rgba(32, 170, 46, .12);
    border: 2px solid rgba(32, 170, 46, .35);
    display: none;
    animation: fadeIn .4s ease
}

.slot-result.win {
    display: block
}

.slot-result.lose {
    display: block;
    background: rgba(224, 53, 53, .1);
    border-color: rgba(224, 53, 53, .3)
}

.slot-result-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 8px
}

.slot-result-title.lose-title {
    color: var(--c-red)
}

.slot-result p {
    color: var(--c-text-muted);
    margin: 0 0 14px
}

.slot-credit {
    font-size: .8rem;
    color: var(--c-text-muted);
    opacity: .6
}

.slot-line {
    display: flex;
    gap: 8px;
    font-size: .78rem;
    color: var(--c-text-muted);
    text-align: center
}

.slot-line span {
    flex: 1
}

.slot-line span span {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px
}

.review-content {
    line-height: 1.8
}

.review-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.review-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 10px
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 16px 0 8px
}

.review-content p {
    margin-bottom: 1rem;
    color: var(--c-text)
}

.review-content ul, .review-content ol {
    padding-left: 1.6rem;
    margin-bottom: 1rem
}

.review-content li {
    margin-bottom: .5rem;
    color: var(--c-text)
}

.review-content a {
    color: var(--c-primary)
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    display: block
}

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

.review-content table th {
    background: rgba(255, 255, 255, .05);
    font-weight: 700;
    color: #fff
}

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

.review-content em {
    font-style: italic;
    color: var(--c-text-muted)
}

.review-content blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 18px;
    background: rgba(32, 170, 46, .06);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 1.2rem 0;
    color: var(--c-text-muted);
    font-style: italic
}

.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 22px;
    margin-bottom: 28px
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 3px solid var(--c-primary)
}

.author-info-name {
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px
}

.author-info-title {
    font-size: .78rem;
    color: var(--c-primary);
    margin-bottom: 6px;
    font-weight: 600
}

.author-info-bio {
    font-size: .84rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 8px
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.author-link {
    font-size: .78rem;
    color: var(--c-primary);
    text-decoration: none;
    border: 1px solid rgba(32, 170, 46, .3);
    padding: 3px 10px;
    border-radius: 12px;
    transition: var(--trans)
}

.author-link:hover {
    background: rgba(32, 170, 46, .15);
    color: var(--c-primary)
}

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

.faq-item {
    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    overflow: hidden
}

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

.faq-q:hover {
    color: #fff;
    background: rgba(255, 255, 255, .04)
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--c-primary);
    transition: transform .25s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

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

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

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

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 32px
}

.review-card {
    flex: 1;
    min-width: 240px;
    max-width: 380px;
    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 22px;
    transition: var(--trans)
}

.review-card:hover {
    border-color: rgba(32, 170, 46, .3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md)
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--c-secondary);
    border: 2px solid var(--c-border);
    flex-shrink: 0
}

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

.review-date {
    font-size: .74rem;
    color: var(--c-text-muted)
}

.review-stars {
    color: var(--c-gold);
    font-size: .95rem;
    letter-spacing: 1px;
    margin-bottom: 10px
}

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

.form-block {
    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 28px;
    max-width: 520px
}

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

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

.form-label {
    display: block;
    font-size: .83rem;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 7px;
    letter-spacing: .04em
}

.form-input, .form-textarea {
    width: 100%;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    color: var(--c-text);
    font-family: var(--font);
    font-size: .92rem;
    transition: var(--trans);
    outline: none
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(32, 170, 46, .12)
}

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

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(155, 163, 184, .45)
}

.form-success {
    display: none;
    background: rgba(32, 170, 46, .12);
    border: 1.5px solid rgba(32, 170, 46, .3);
    border-radius: var(--r-sm);
    padding: 16px 18px;
    color: var(--c-primary);
    font-weight: 600;
    font-size: .9rem;
    margin-top: 14px;
    animation: fadeIn .4s ease
}

.form-success.show {
    display: block
}

.footer-outer {
    background: var(--c-footer);
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: auto;
    padding: 48px 0 24px
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 36px
}

.footer-col-logo {
    flex: 0 0 auto;
    max-width: 240px
}

.footer-logo {
    margin-bottom: 14px
}

.footer-logo img {
    height: 38px
}

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

.footer-col {
    flex: 1;
    min-width: 140px
}

.footer-col-title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 14px
}

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

.footer-links a {
    color: var(--c-text-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: var(--trans)
}

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

.footer-payments {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-payments-label, .footer-providers-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 12px
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px
}

.footer-logo-badge {
    background: var(--c-secondary);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 6px 14px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--c-text-muted);
    transition: var(--trans)
}

.footer-logo-badge:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .2)
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between
}

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

.footer-legal {
    font-size: .75rem;
    color: rgba(155, 163, 184, .55);
    line-height: 1.6;
    margin-top: 12px
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(155, 163, 184, .3);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 800;
    color: var(--c-text-muted);
    flex-shrink: 0
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(90deg, #141a15, #1a2c1b);
    border-top: 2px solid rgba(32, 170, 46, .4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .5)
}

.sticky-cta-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

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

.sticky-bonus-text strong {
    color: var(--c-gold);
    font-weight: 800
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
    padding: 12px 28px;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: var(--trans);
    white-space: nowrap
}

.sticky-btn:hover {
    background: var(--c-primary-h);
    color: #fff;
    transform: scale(1.03)
}

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

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

.sticky-terms {
    font-size: .68rem;
    color: rgba(155, 163, 184, .45)
}

body.has-widget {
    padding-bottom: 64px
}

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

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

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

.main-sections {
    padding: 32px 0 60px
}

.main-sections > .container > * + * {
    margin-top: 0
}

.n6b4c-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px
}

.prov-chip {
    background: var(--c-secondary);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 12px;
    white-space: nowrap;
    transition: var(--trans)
}

.prov-chip:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .2)
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0
}

.wp-post-image {
    border-radius: var(--r-sm)
}

.entry-meta {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 12px
}

.entry-footer {
    display: none
}

.screen-reader-text {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    overflow: hidden
}

.tag-cloud-link {
    display: inline-block;
    background: var(--c-secondary);
    color: var(--c-text-muted);
    font-size: .75rem;
    padding: 3px 10px;
    border-radius: 12px;
    margin: 2px;
    text-decoration: none;
    transition: var(--trans)
}

.tag-cloud-link:hover {
    color: #fff
}

.section-cols {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.section-col-50 {
    flex: 1;
    min-width: 260px
}

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

    .burger {
        display: flex
    }

    .hdr-inner {
        height: 60px
    }

    .mob-nav {
        top: 60px
    }

    .hero-section {
        min-height: 420px
    }

    .hero-inner {
        padding: 40px 0
    }

    .jackpot-grid {
        flex-direction: column
    }

    .app-block-inner {
        flex-direction: column
    }

    .footer-inner {
        gap: 24px
    }

    .section-block {
        padding: 24px
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.75rem
    }

    .hero-badges {
        gap: 6px
    }

    .hero-badges .badge-item {
        font-size: .72rem;
        padding: 4px 10px
    }

    .btn-hero {
        padding: 14px 28px;
        font-size: 1rem
    }

    .reviews-grid {
        flex-direction: column
    }

    .review-card {
        min-width: 0;
        max-width: 100%
    }

    .author-box {
        flex-direction: column
    }

    .slot-reel {
        width: 72px;
        height: 72px;
        font-size: 2.4rem
    }

    .slot-reels {
        gap: 8px;
        padding: 14px 16px
    }

    .sticky-widget {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px
    }

    .jackpot-card {
        min-width: 0
    }

    .section-block {
        padding: 18px
    }
}
