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

:root {
    --c-bg: #004534;
    --c-header: #01281D;
    --c-footer: #01281D;
    --c-btn-primary: #F6EBB5;
    --c-btn-text: #01281D;
    --c-btn-secondary: #F6EBB5;
    --c-accent: #F6D860;
    --c-accent2: #3a8c6e;
    --c-text: #e8f5f0;
    --c-text-muted: #9cc4b4;
    --c-border: #1a5c46;
    --c-card: #013527;
    --c-card2: #012820;
    --c-overlay: rgba(0, 0, 0, .55);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .35);
    --transition: 0.22s ease;
    --font-main: 'Roboto', sans-serif;
}

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-main);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    opacity: .8
}

ul {
    list-style: none
}

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

.xb7f2, .xd91a {
    display: none
}

.wp-block-spacer {
    display: block;
    height: 1px
}

.elementor-hidden {
    visibility: hidden;
    position: absolute;
    left: -9999px
}

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

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

/* ===== HEADER ===== */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

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

.hdr-logo {
    flex-shrink: 0
}

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

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

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text);
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition)
}

.hdr-nav a:hover {
    background: var(--c-accent2);
    color: #fff;
    opacity: 1
}

.hdr-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

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

.hdr-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    opacity: 1
}

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

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

.btn-md {
    font-size: .9rem;
    padding: 10px 20px
}

.btn-lg {
    font-size: 1rem;
    padding: 13px 28px
}

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

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

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

.btn-ghost {
    background: rgba(246, 235, 181, .12);
    color: var(--c-btn-primary)
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 890;
    overflow-y: auto;
    padding: 20px 16px 40px;
    flex-direction: column;
    gap: 6px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--c-border);
    transition: background var(--transition)
}

.mobile-menu a:hover {
    background: var(--c-accent2);
    opacity: 1
}

.mobile-menu a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap
}

.mobile-menu-btns .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 520px
}

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

.hero-slide.active {
    opacity: 1;
    z-index: 2
}

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

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 30, 20, .82) 40%, rgba(0, 30, 20, .2) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 580px;
    padding: 48px 24px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(246, 235, 181, .15);
    border: 1px solid rgba(246, 235, 181, .35);
    color: var(--c-btn-primary);
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 40px;
    margin-bottom: 16px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.hero-badge svg {
    width: 14px;
    height: 14px
}

.hero-content h1, .hero-content h2 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hero-content h1 span, .hero-content h2 span {
    color: var(--c-btn-primary)
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 460px
}

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

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

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0
}

.hero-dot.active {
    background: var(--c-btn-primary);
    transform: scale(1.3)
}

/* ===== SECTION ===== */
.section {
    padding: 60px 0
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 8px;
    line-height: 1.2
}

.section-title span {
    color: var(--c-accent)
}

.section-subtitle {
    font-size: .93rem;
    color: var(--c-text-muted);
    margin-bottom: 32px;
    line-height: 1.5
}

.section-head {
    margin-bottom: 32px
}

/* ===== JACKPOT ===== */
.jackpot-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.jackpot-card {
    flex: 1;
    min-width: 200px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 235, 181, .12) 0%, transparent 70%);
    pointer-events: none
}

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

.jackpot-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1
}

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

.jackpot-amount {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--c-accent);
    font-variant-numeric: tabular-nums
}

.jackpot-amount-wrap {
    position: relative;
    display: inline-block
}

.jackpot-live {
    display: inline-block;
    font-size: .68rem;
    background: #4ade80;
    color: #012820;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 6px;
    animation: pulse 2s infinite
}

/* ===== PAYMENTS ===== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--c-border)
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: .875rem
}

thead th {
    background: var(--c-card2);
    color: var(--c-text-muted);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap
}

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

tbody tr:hover {
    background: rgba(246, 235, 181, .04)
}

tbody td {
    padding: 13px 16px;
    vertical-align: middle;
    color: var(--c-text)
}

.pm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .88rem
}

.pm-icon {
    width: 32px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0
}

.pm-visa {
    background: #1a1f71
}

.pm-mc {
    background: #eb001b
}

.pm-interac {
    background: #ffb600;
    color: #333
}

.pm-mifi {
    background: #0b7ec7
}

.pm-eco {
    background: #009a66
}

.pm-crypto {
    background: #f7931a
}

.pm-bank {
    background: #555
}

.pm-cc {
    background: #2c3e50
}

.pm-ewallet {
    background: #6c3483
}

.badge-fast {
    display: inline-block;
    background: rgba(74, 222, 128, .15);
    color: #4ade80;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px
}

.badge-free {
    display: inline-block;
    background: rgba(246, 235, 181, .15);
    color: var(--c-accent);
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px
}

/* ===== SCREENSHOTS SLIDER ===== */
.screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg)
}

.screenshots-track {
    display: flex;
    gap: 16px;
    transition: transform .45s ease
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 11px);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--c-border);
    position: relative;
    cursor: pointer
}

.screenshot-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease
}

.screenshot-item:hover img {
    transform: scale(1.04)
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: var(--c-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition)
}

.screenshot-overlay svg {
    width: 40px;
    height: 40px;
    color: #fff
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(1, 40, 29, .8);
    border: 1.5px solid var(--c-border);
    color: var(--c-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition)
}

.slider-btn:hover {
    background: var(--c-accent2)
}

.slider-btn svg {
    width: 18px;
    height: 18px
}

.slider-prev {
    left: 10px
}

.slider-next {
    right: 10px
}

/* ===== APP INFO ===== */
.app-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap
}

.app-table-wrap {
    flex: 1;
    min-width: 280px
}

.app-download {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
    color: var(--c-text)
}

.app-download-btn:hover {
    background: var(--c-accent2);
    transform: translateY(-2px);
    opacity: 1
}

.app-download-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--c-btn-primary)
}

.app-dl-text {
    display: flex;
    flex-direction: column
}

.app-dl-sub {
    font-size: .7rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em
}

.app-dl-main {
    font-size: .95rem;
    font-weight: 700
}

/* ===== WHEEL ===== */
.wheel-section-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

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

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 8px var(--c-border), 0 0 40px rgba(246, 235, 181, .18)
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--c-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

.wheel-info {
    flex: 1;
    min-width: 240px;
    max-width: 380px
}

.wheel-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px
}

.wheel-info p {
    color: var(--c-text-muted);
    margin-bottom: 20px;
    line-height: 1.6
}

.wheel-result {
    margin-top: 20px;
    padding: 18px 22px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    display: none;
    animation: fadeInUp .4s ease
}

.wheel-result.win {
    border-color: #4ade80;
    background: rgba(74, 222, 128, .08)
}

.wheel-result.lose {
    border-color: #f87171
}

.wheel-result-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 6px
}

.wheel-result.win .wheel-result-title {
    color: #4ade80
}

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

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

/* ===== REVIEW CONTENT ===== */
.review-content {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px
}

.review-author-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border)
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border)
}

.author-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px
}

.author-meta p {
    font-size: .8rem;
    color: var(--c-text-muted);
    line-height: 1.4
}

.author-meta a {
    color: var(--c-btn-primary);
    font-size: .8rem
}

.review-content-body h2, .review-content-body h3 {
    color: var(--c-text);
    margin: 24px 0 10px;
    font-weight: 800;
    line-height: 1.25
}

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

.review-content-body h3 {
    font-size: 1.1rem;
    color: var(--c-accent)
}

.review-content-body p {
    margin-bottom: 14px;
    line-height: 1.65;
    color: var(--c-text)
}

.review-content-body ul, .review-content-body ol {
    margin: 10px 0 16px 20px;
    line-height: 1.7
}

.review-content-body ul li {
    list-style: disc;
    color: var(--c-text)
}

.review-content-body ol li {
    list-style: decimal;
    color: var(--c-text)
}

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

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

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

.review-content-body table {
    min-width: unset;
    width: 100%
}

.review-content-body thead th, .review-content-body tbody td {
    font-size: .875rem
}

.review-content-body blockquote {
    border-left: 3px solid var(--c-accent);
    padding-left: 16px;
    color: var(--c-text-muted);
    font-style: italic;
    margin: 16px 0
}

/* ===== RATINGS ===== */
.reviews-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.review-card {
    flex: 1;
    min-width: 240px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: transform var(--transition)
}

.review-card:hover {
    transform: translateY(-3px)
}

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

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

.review-name {
    font-weight: 700;
    font-size: .93rem
}

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

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: #F6D860;
    color: #F6D860
}

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

/* ===== FORM ===== */
.review-form {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    max-width: 540px
}

.review-form h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px
}

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

.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.form-control {
    width: 100%;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: .9rem;
    padding: 11px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none
}

.form-control:focus {
    border-color: var(--c-accent2);
    box-shadow: 0 0 0 3px rgba(58, 140, 110, .2)
}

.form-control::placeholder {
    color: var(--c-text-muted)
}

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

.form-msg {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    display: none
}

.form-msg.success {
    background: rgba(74, 222, 128, .12);
    border: 1px solid #4ade80;
    color: #4ade80
}

.form-msg.error {
    background: rgba(248, 113, 113, .1);
    border: 1px solid #f87171;
    color: #f87171
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden
}

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

.faq-q:hover {
    background: rgba(246, 235, 181, .05)
}

.faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s;
    color: var(--c-accent)
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg)
}

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

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 16px
}

.faq-a-inner {
    padding: 0 20px;
    font-size: .88rem;
    color: var(--c-text-muted);
    line-height: 1.65
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--c-footer);
    margin-top: auto;
    border-top: 1.5px solid var(--c-border)
}

.footer-main {
    padding: 48px 0 32px
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

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

.footer-col-wide {
    flex: 2;
    min-width: 260px
}

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

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-bottom: 14px
}

.footer-flag {
    font-size: 1.3rem
}

.footer-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 320px
}

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

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

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

.footer-links a:hover {
    color: var(--c-text);
    opacity: 1
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px
}

.footer-logo-badge {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

.footer-logo-badge svg {
    width: 14px;
    height: 14px
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition)
}

.footer-social a:hover {
    background: var(--c-accent2);
    color: #fff;
    opacity: 1
}

.footer-social svg {
    width: 16px;
    height: 16px
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 20px 0
}

.footer-bottom-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between
}

.footer-legal {
    font-size: .74rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    flex: 1;
    min-width: 260px
}

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

.footer-legal a:hover {
    color: var(--c-text);
    opacity: 1
}

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

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid var(--c-text-muted);
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    color: var(--c-text-muted);
    flex-shrink: 0
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, var(--c-card2) 0%, var(--c-card) 100%);
    border-top: 2px solid var(--c-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4)
}

.sticky-bonus-text {
    display: flex;
    flex-direction: column
}

.sticky-bonus-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

.sticky-bonus-value {
    font-size: 1rem;
    font-weight: 900;
    color: var(--c-accent)
}

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

.promo-code {
    font-family: monospace;
    background: var(--c-bg);
    border: 1.5px dashed var(--c-accent);
    color: var(--c-accent);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .05em;
    user-select: all;
    cursor: pointer
}

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

.sticky-close svg {
    width: 18px;
    height: 18px
}

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

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

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

.anim-delay-1 {
    animation-delay: .1s
}

.anim-delay-2 {
    animation-delay: .2s
}

.anim-delay-3 {
    animation-delay: .3s
}

.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0 auto
}

.info-content {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin: 40px 0
}

.info-content h1 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--c-text)
}

.info-content h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 22px 0 10px;
    color: var(--c-text)
}

.info-content p {
    margin-bottom: 14px;
    line-height: 1.65;
    color: var(--c-text)
}

.info-content ul {
    margin: 10px 0 16px 20px
}

.info-content ul li {
    list-style: disc;
    color: var(--c-text);
    margin-bottom: 5px;
    line-height: 1.6
}

.info-content a {
    color: var(--c-btn-primary);
    text-decoration: underline
}

.xb7f2 {
    display: none
}

.xd91a {
    display: none
}

.xf3c1 {
    display: none
}

.wp-block-group {
}

.wp-block-columns {
}

.wp-block-column {
}

.elementor-element {
}

.elementor-widget-container {
}

.c8e2a {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    pointer-events: none
}

.e7b31 {
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute
}

.f2d84 {
    display: none !important
}

.b9c47, .d1e56 {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

/* =====  ===== */
@media (max-width: 1024px) {
    .screenshot-item {
        flex: 0 0 calc(50% - 8px)
    }

    .app-download {
        flex: 0 0 100%
    }
}

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

    .burger {
        display: flex
    }

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

    .screenshot-item {
        flex: 0 0 calc(100% - 0px)
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px
    }

    .jackpot-grid {
        gap: 12px
    }

    .jackpot-card {
        min-width: 150px
    }

    .review-form {
        padding: 22px 18px
    }

    .reviews-grid {
        flex-direction: column
    }

    .review-form {
        max-width: 100%
    }

    .sticky-widget {
        flex-direction: row;
        justify-content: space-between
    }

    .section {
        padding: 40px 0
    }

    .reviews-grid .review-card {
        min-width: 100%
    }

    .wheel-wrap {
        width: 240px;
        height: 240px
    }

    .info-content {
        padding: 24px 18px
    }

    .review-content {
        padding: 22px 18px
    }
}

@media (max-width: 480px) {
    .hdr-inner {
        height: 60px
    }

    .hdr-logo img {
        height: 36px
    }

    .hero {
        min-height: 380px
    }

    .hero-slider {
        min-height: 380px
    }

    .hero-content h1, .hero-content h2 {
        font-size: 1.5rem
    }

    .jackpot-card {
        flex: 0 0 calc(50% - 8px)
    }
}

.vdsd {
    width: 100%;
    max-width: 1120px;
    margin: 40px auto;
    padding: 34px 38px;
    background: linear-gradient(180deg, var(--c-card), var(--c-card2));
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.vdsd p {
    margin: 0 0 16px;
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.75;
}

.vdsd h2 {
    margin: 34px 0 14px;
    color: #fff;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.vdsd h3 {
    margin: 24px 0 12px;
    color: var(--c-accent);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.vdsd a {
    color: var(--c-btn-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vdsd ul,
.vdsd ol {
    margin: 18px 0 22px 22px;
    display: grid;
    gap: 8px;
}

.vdsd ul li {
    list-style: disc;
}

.vdsd ol li {
    list-style: decimal;
}

.vdsd li {
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.65;
}

.vdsd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(246, 235, 181, .08);
    border-left: 4px solid var(--c-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.vdsd table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    font-size: 15px;
}

.vdsd table th {
    background: var(--c-card2);
    color: var(--c-accent);
    padding: 14px 16px;
    text-align: left;
    font-weight: 800;
    border-bottom: 1px solid var(--c-border);
    white-space: nowrap;
}

.vdsd table td {
    padding: 14px 16px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
}

.vdsd table tr:last-child td {
    border-bottom: 0;
}

.vdsd table tr:hover td {
    background: rgba(246, 235, 181, .05);
}

.vdsd > table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
}

.vdsd > table::-webkit-scrollbar {
    height: 7px;
}

.vdsd > table::-webkit-scrollbar-track {
    background: var(--c-card2);
}

.vdsd > table::-webkit-scrollbar-thumb {
    background: var(--c-accent);
    border-radius: 999px;
}

@media (max-width: 768px) {
    .vdsd {
        margin: 28px auto;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .vdsd p,
    .vdsd li {
        font-size: 15px;
        line-height: 1.7;
    }

    .vdsd h2 {
        font-size: 23px;
        margin-top: 30px;
    }

    .vdsd h3 {
        font-size: 19px;
    }

    .vdsd ul,
    .vdsd ol {
        margin-left: 18px;
    }

    .vdsd blockquote {
        padding: 16px;
        font-size: 15px;
    }

    .vdsd table {
        min-width: 680px;
        font-size: 14px;
    }

    .vdsd table th,
    .vdsd table td {
        padding: 12px 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .vdsd {
        margin: 22px auto;
        padding: 20px 14px;
        border-radius: 16px;
    }

    .vdsd p,
    .vdsd li {
        font-size: 14px;
    }

    .vdsd h2 {
        font-size: 21px;
    }

    .vdsd h3 {
        font-size: 18px;
    }

    .vdsd table {
        min-width: 620px;
        font-size: 13px;
    }
}