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

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

body {
    font-family: 'Rubik', sans-serif;
    background: #000;
    color: #e8e8e8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

a {
    color: #FFD342;
    text-decoration: none;
    transition: color .2s ease
}

a:hover {
    color: #ffe57a
}

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

ul {
    list-style: none
}

:root {
    --c-primary: #00C070;
    --c-secondary: #FFD342;
    --c-bg: #000;
    --c-surface: #0E0E0E;
    --c-surface2: #151515;
    --c-surface3: #1a1a1a;
    --c-border: #2a2a2a;
    --c-text: #e8e8e8;
    --c-text-muted: #8a8a8a;
    --c-white: #fff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .5);
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all .2s ease;
    text-decoration: none;
    white-space: nowrap
}

.btn-primary {
    background: var(--c-primary);
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem
}

.btn-primary:hover {
    background: #00a85e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 192, 112, .35)
}

.btn-secondary {
    background: transparent;
    color: var(--c-secondary);
    border: 2px solid var(--c-secondary);
    padding: 10px 22px;
    font-size: .95rem
}

.btn-secondary:hover {
    background: var(--c-secondary);
    color: #000
}

.btn-sm {
    padding: 9px 20px;
    font-size: .875rem
}

.btn-lg {
    padding: 16px 42px;
    font-size: 1.1rem;
    border-radius: 10px
}

.btn-xl {
    padding: 18px 52px;
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: 700
}

header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .6)
}

.hdr-9f2a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.hdr-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.hdr-logo img {
    height: 40px;
    width: auto
}

.hdr-online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 192, 112, .1);
    border: 1px solid rgba(0, 192, 112, .25);
    border-radius: 20px;
    padding: 4px 10px
}

.hdr-dot.a3k9 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 8px var(--c-primary);
    animation: pulse-dot 2s infinite
}

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

.hdr-online-label {
    font-size: .75rem;
    color: var(--c-primary);
    font-weight: 500
}

.hdr-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center
}

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

.hdr-nav.b7x1 .nav-link {
    color: #ccc;
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all .2s ease
}

.hdr-nav.b7x1 .nav-link:hover {
    color: var(--c-secondary);
    background: rgba(255, 211, 66, .08)
}

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

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

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s ease
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    z-index: 899;
    padding: 20px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all
}

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

.mobile-nav .nav-link {
    display: block;
    color: #ccc;
    font-size: 1rem;
    padding: 10px 14px;
    border-radius: 8px
}

.mobile-nav .nav-link:hover {
    color: var(--c-secondary);
    background: rgba(255, 211, 66, .08)
}

.mobile-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--c-border)
}

.mobile-info-link {
    color: var(--c-text-muted);
    font-size: .8rem
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-win.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .2) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 192, 112, .15);
    border: 1px solid rgba(0, 192, 112, .4);
    color: var(--c-primary);
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .8)
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.6
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.hero-note {
    font-size: .75rem;
    color: #888;
    margin-top: 12px
}

.section-pad {
    padding: 64px 0
}

.section-pad-sm {
    padding: 40px 0
}

.section-heading {
    text-align: center;
    margin-bottom: 40px
}

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

.section-heading p {
    color: var(--c-text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto
}

.section-heading .accent-line {
    display: inline-block;
    width: 48px;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
    margin-top: 12px
}

.block-card {
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px
}

.block-card--lg {
    padding: 36px
}

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

.info-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: .9rem
}

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

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

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

.info-table td {
    padding: 14px 16px;
    vertical-align: top;
    text-align: left
}

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

.info-table td:last-child {
    color: #fff;
    font-weight: 400
}

.info-table .badge-val {
    display: inline-block;
    background: rgba(0, 192, 112, .12);
    color: var(--c-primary);
    border: 1px solid rgba(0, 192, 112, .25);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .8rem;
    font-weight: 600
}

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

.pros-block, .cons-block {
    background: var(--c-surface3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px
}

.pros-block {
    border-top: 3px solid var(--c-primary)
}

.cons-block {
    border-top: 3px solid #e05050
}

.pros-cons-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pros-cons-title .icon-check {
    color: var(--c-primary);
    font-size: 1.1rem
}

.pros-cons-title .icon-x {
    color: #e05050;
    font-size: 1.1rem
}

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

.pros-cons-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--c-text)
}

.pros-cons-item::before {
    content: '';
    display: block;
    flex-shrink: 0;
    margin-top: 5px
}

.pros-item::before {
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2300C070' d='M13.3 4.3a1 1 0 0 1 0 1.4l-5.5 5.5a1 1 0 0 1-1.4 0L3.7 8.5a1 1 0 1 1 1.4-1.4L7 8.9l4.9-4.6a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") center/contain no-repeat
}

.cons-item::before {
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23e05050' d='M12.7 4.7a1 1 0 0 0-1.4 0L8 7.9 4.7 4.7a1 1 0 0 0-1.4 1.4L6.6 9.3 3.3 12.6a1 1 0 0 0 1.4 1.4L8 10.7l3.3 3.3a1 1 0 0 0 1.4-1.4L9.4 9.3l3.3-3.2a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E") center/contain no-repeat
}

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

.jackpot-card {
    background: var(--c-surface3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease
}

.jackpot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 192, 112, .2)
}

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

.jackpot-game {
    font-size: .8rem;
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.jackpot-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-secondary);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums
}

.jackpot-label {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.jackpot-badge {
    display: inline-block;
    background: rgba(0, 192, 112, .15);
    color: var(--c-primary);
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 8px;
    text-transform: uppercase
}

.video-block {
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden
}

.video-block-header {
    padding: 20px 24px 0
}

.video-block-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 16px
}

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

.wheel-section {
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center
}

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

.wheel-subtitle {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 28px
}

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

.wheel-canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 192, 112, .2)
}

.wheel-arrow {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--c-secondary);
    filter: drop-shadow(0 2px 6px rgba(255, 211, 66, .5))
}

.wheel-spin-btn {
    margin-top: 8px
}

.wheel-result {
    margin-top: 20px;
    padding: 20px 28px;
    background: rgba(0, 192, 112, .1);
    border: 1px solid rgba(0, 192, 112, .3);
    border-radius: var(--radius);
    display: none;
    text-align: center
}

.wheel-result.show {
    display: block;
    animation: fadeInUp .4s ease
}

.wheel-result-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 8px
}

.wheel-result-text {
    color: #e8e8e8;
    margin-bottom: 16px;
    line-height: 1.5
}

.wheel-result-lose {
    background: rgba(224, 80, 80, .1);
    border-color: rgba(224, 80, 80, .3)
}

.wheel-result-lose .wheel-result-title {
    color: #e05050
}

.content-review {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--c-text)
}

.content-review h1, .content-review h2, .content-review h3, .content-review h4 {
    color: #fff;
    margin: 1.6em 0 .7em;
    line-height: 1.3
}

.content-review h2 {
    font-size: 1.4rem;
    font-weight: 700;
    border-left: 3px solid var(--c-primary);
    padding-left: 12px
}

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

.content-review h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-secondary)
}

.content-review p {
    margin-bottom: 1em
}

.content-review ul, .content-review ol {
    margin: 0 0 1em 1.5em;
    padding: 0
}

.content-review ul {
    list-style: disc
}

.content-review ol {
    list-style: decimal
}

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

.content-review a {
    color: var(--c-secondary);
    text-decoration: underline
}

.content-review a:hover {
    color: #ffe57a
}

.content-review strong, .content-review b {
    color: #fff;
    font-weight: 600
}

.content-review em, .content-review i {
    color: #ccc;
    font-style: italic
}

.content-review blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    background: rgba(0, 192, 112, .07);
    border-radius: 0 8px 8px 0;
    margin: 1.2em 0;
    font-style: italic;
    color: #ccc
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .9rem;
    overflow-x: auto;
    display: block
}

.content-review table th {
    background: var(--c-surface);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-weight: 600
}

.content-review table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text)
}

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

.content-review img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1em 0
}

.content-review hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 2em 0
}

.content-review code {
    background: var(--c-surface3);
    color: var(--c-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .88em;
    font-family: monospace
}

.content-review pre {
    background: var(--c-surface3);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.2em 0
}

.content-review pre code {
    background: none;
    padding: 0
}

.author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px
}

.author-avatar {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--c-primary)
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info {
    flex: 1
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-title {
    font-size: .85rem;
    color: var(--c-primary);
    font-weight: 500;
    margin-bottom: 10px
}

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

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 211, 66, .1);
    border: 1px solid rgba(255, 211, 66, .25);
    color: var(--c-secondary);
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all .2s ease
}

.author-link:hover {
    background: var(--c-secondary);
    color: #000
}

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Rubik', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    transition: background .2s ease
}

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

.faq-question.active {
    color: var(--c-secondary)
}

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform .3s ease;
    color: var(--c-text-muted)
}

.faq-question.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--c-secondary)
}

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

.faq-answer.open {
    max-height: 400px;
    padding: 0 20px 18px
}

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

.widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: var(--c-surface);
    border-top: 2px solid var(--c-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .6)
}

.widget-text {
    flex: 1
}

.widget-bonus-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-primary);
    margin-bottom: 2px
}

.widget-bonus-val {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

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

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

body.widget-closed .widget-bar {
    display: none
}

body {
    padding-bottom: 70px
}

body.widget-closed {
    padding-bottom: 0
}

footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: 50px 0 0
}

.ftr-top.c4m2 {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.ftr-brand {
    flex: 0 0 220px
}

.ftr-logo img {
    height: 36px;
    width: auto;
    margin-bottom: 10px
}

.ftr-tagline {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.ftr-nav-cols {
    display: flex;
    gap: 40px;
    flex: 1;
    flex-wrap: wrap
}

.ftr-nav-col {
}

.ftr-nav-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    margin-bottom: 12px
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ftr-nav-list a {
    font-size: .875rem;
    color: #888;
    transition: color .2s ease
}

.ftr-nav-list a:hover {
    color: var(--c-secondary)
}

.ftr-payments.d8n1, .ftr-providers.e5v3 {
    margin-bottom: 24px
}

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

.ftr-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.ftr-badge {
    display: inline-block;
    background: var(--c-surface3);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    color: #bbb;
    font-weight: 500
}

.ftr-badge--provider {
    border-color: rgba(0, 192, 112, .2);
    color: var(--c-primary)
}

.ftr-bottom {
    border-top: 1px solid var(--c-border);
    padding: 24px 0;
    margin-top: 4px
}

.ftr-legal {
    margin-bottom: 16px
}

.ftr-legal-text {
    font-size: .75rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px
}

.ftr-legal-text a {
    color: #888
}

.ftr-legal-text a:hover {
    color: var(--c-secondary)
}

.ftr-copyright {
    font-size: .75rem;
    color: #555;
    text-align: center
}

.bg-alt {
    background: var(--c-surface)
}

.bonus-highlight-box {
    background: linear-gradient(135deg, rgba(0, 192, 112, .12) 0%, rgba(0, 192, 112, .05) 100%);
    border: 1px solid rgba(0, 192, 112, .3);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    margin-bottom: 24px
}

.bonus-highlight-box .big-bonus {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-secondary);
    display: block;
    margin-bottom: 6px
}

.bonus-highlight-box .bonus-desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 18px
}

.bonus-highlight-box .bonus-note {
    font-size: .78rem;
    color: #777;
    margin-top: 10px
}

.rating-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin: 6px 0
}

.star {
    width: 18px;
    height: 18px;
    color: var(--c-secondary);
    fill: currentColor
}

.star.empty {
    color: #333
}

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

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fade-in-up {
    animation: fadeInUp .5s ease both
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.text-center {
    text-align: center
}

.mt-0 {
    margin-top: 0
}

.mt-1 {
    margin-top: 8px
}

.mt-2 {
    margin-top: 16px
}

.mt-3 {
    margin-top: 24px
}

.mt-4 {
    margin-top: 32px
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: 8px
}

.mb-2 {
    margin-bottom: 16px
}

.mb-3 {
    margin-bottom: 24px
}

.mb-4 {
    margin-bottom: 32px
}

.breadcrumb-nav {
    padding: 14px 0;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 4px
}

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

.breadcrumb-list a {
    color: var(--c-text-muted)
}

.breadcrumb-list a:hover {
    color: var(--c-secondary)
}

.breadcrumb-sep {
    color: #555
}

.breadcrumb-current {
    color: #ccc;
    font-weight: 500
}

.page-content-wrap {
    padding: 48px 0 64px
}

.page-content-inner {
    max-width: 800px;
    margin: 0 auto
}

.page-content-inner h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.page-content-inner h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 1.8em 0 .7em;
    border-left: 3px solid var(--c-primary);
    padding-left: 12px
}

.page-content-inner h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 1.4em 0 .6em
}

.page-content-inner p {
    color: var(--c-text);
    margin-bottom: 1em;
    line-height: 1.7
}

.page-content-inner ul, .page-content-inner ol {
    margin: 0 0 1em 1.5em;
    color: var(--c-text);
    line-height: 1.7
}

.page-content-inner ul {
    list-style: disc
}

.page-content-inner ol {
    list-style: decimal
}

.page-content-inner li {
    margin-bottom: .4em
}

.page-content-inner a {
    color: var(--c-secondary);
    text-decoration: underline
}

.page-content-inner strong {
    color: #fff;
    font-weight: 600
}

.page-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .9rem
}

.page-content-inner table th {
    background: var(--c-surface);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-weight: 600
}

.page-content-inner table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text)
}

.x9k2-hidden {
    display: none;
    visibility: hidden
}

.y7p1-placeholder {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: -9999px
}

.elementor-hidden-mobile {
    display: none
}

.wp-block-spacer-alt {
    clear: both;
    height: 0;
    overflow: hidden
}

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

    .burger-btn {
        display: flex
    }

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

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

@media (max-width: 720px) {
    .hdr-9f2a {
        padding: 10px 16px
    }

    .hdr-logo img {
        height: 34px
    }

    .hdr-online-counter {
        display: none
    }

    .hdr-actions {
        gap: 6px
    }

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

    .hero-content {
        padding: 60px 16px
    }

    .hero-title {
        font-size: 1.8rem
    }

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

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

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-links {
        justify-content: center
    }

    .section-pad {
        padding: 44px 0
    }

    .widget-bar {
        flex-wrap: wrap
    }

    .ftr-top.c4m2 {
        flex-direction: column
    }

    .ftr-nav-cols {
        gap: 24px
    }

    .wheel-canvas-wrap {
        width: 260px;
        height: 260px
    }

    #wheelCanvas {
        width: 260px;
        height: 260px
    }
}

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

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start
    }

    .bonus-highlight-box .big-bonus {
        font-size: 1.8rem
    }
}
