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

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: #ff8c33
}

ul {
    list-style: none
}

:root {
    --clr-bg: #0d0d0d;
    --clr-header: #141414;
    --clr-surface: #1a1a1a;
    --clr-surface2: #222;
    --clr-border: #2a2a2a;
    --clr-orange: #ff6b00;
    --clr-orange-h: #ff8c33;
    --clr-green: #22c55e;
    --clr-green-h: #1aab50;
    --clr-text: #e8e8e8;
    --clr-muted: #999;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .5);
    --tr: .25s ease;
}

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

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

.xq7r-hidden {
    display: none !important
}

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

.xq7r-placeholder {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
    white-space: nowrap;
    text-decoration: none !important
}

.btn:hover {
    transform: translateY(-2px)
}

.btn--orange {
    background: var(--clr-orange);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 107, 0, .35)
}

.btn--orange:hover {
    background: var(--clr-orange-h);
    box-shadow: 0 6px 24px rgba(255, 107, 0, .5);
    color: #fff
}

.btn--green {
    background: var(--clr-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, .35)
}

.btn--green:hover {
    background: var(--clr-green-h);
    box-shadow: 0 6px 24px rgba(34, 197, 94, .5);
    color: #fff
}

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

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

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem
}

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

.btn--icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0
}

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .6)
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo {
    flex-shrink: 0
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text);
    font-size: .85rem;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background var(--tr), color var(--tr)
}

.header-nav a:hover {
    background: var(--clr-surface2);
    color: var(--clr-orange)
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    opacity: .8
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    flex-shrink: 0
}

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-muted);
    margin-left: 8px;
    flex-shrink: 0
}

.header-online .dot {
    width: 8px;
    height: 8px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: pulse 1.8s infinite
}

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

/* Lang dropdown */
.lang-drop {
    position: relative;
    flex-shrink: 0
}

.lang-drop-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 10px;
    color: var(--clr-text);
    font-size: .82rem;
    cursor: pointer;
    transition: background var(--tr)
}

.lang-drop-btn:hover {
    background: #2a2a2a
}

.lang-flag {
    font-size: 1rem
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    min-width: 140px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--tr), transform var(--tr);
    z-index: 100
}

.lang-drop.open .lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--clr-text);
    font-size: .84rem;
    transition: background var(--tr)
}

.lang-menu a:hover {
    background: var(--clr-surface2)
}

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

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

.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)
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 40%, #2a1200 100%);
    z-index: 0
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
    mix-blend-mode: luminosity
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 13, .95) 0%, rgba(13, 13, 13, .5) 60%, transparent 100%);
    z-index: 1
}

.hero-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden
}

.hero-slides {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.hero-slide {
    min-width: 100%;
    padding: 60px 16px
}

.hero-slide-inner {
    max-width: 1200px;
    margin: 0 auto
}

.hero-tag {
    display: inline-block;
    background: var(--clr-orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px
}

.hero h1, .hero-h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px
}

.hero h1 span, .hero-h1 span {
    color: var(--clr-orange)
}

.hero-desc {
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
    color: #ccc;
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.7
}

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

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

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: background var(--tr), transform var(--tr)
}

.hero-dot.active {
    background: var(--clr-orange);
    transform: scale(1.3)
}

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

.section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3
}

.section-subtitle {
    font-size: .9rem;
    color: var(--clr-muted);
    margin-bottom: 36px
}

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

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

.jackpot-card {
    flex: 1;
    min-width: 260px;
    background: linear-gradient(135deg, var(--clr-surface) 0%, #1e1000 100%);
    border: 1px solid #3a2000;
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, .2)
}

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

.jackpot-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 12px
}

.jackpot-badge--bronze {
    background: rgba(205, 127, 50, .2);
    color: #cd7f32
}

.jackpot-badge--silver {
    background: rgba(180, 180, 180, .2);
    color: #c0c0c0
}

.jackpot-badge--gold {
    background: rgba(255, 215, 0, .2);
    color: #ffd700
}

.jackpot-amount {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--clr-orange);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums
}

.jackpot-label {
    font-size: .78rem;
    color: var(--clr-muted);
    margin-bottom: 20px
}

.jackpot-players {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .04);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: .82rem
}

.jackpot-player-name {
    color: #ddd;
    font-weight: 500
}

.jackpot-player-win {
    color: var(--clr-green);
    font-weight: 600
}

/* ===== APP BLOCK ===== */
.app-block {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap
}

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

.app-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.app-desc {
    color: var(--clr-muted);
    font-size: .9rem;
    margin-bottom: 24px;
    line-height: 1.7
}

.app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    transition: background var(--tr), border-color var(--tr), transform var(--tr)
}

.app-btn:hover {
    background: #2a2a2a;
    border-color: #444;
    transform: translateY(-2px);
    color: #fff
}

.app-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0
}

.app-btn-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.app-btn-sub {
    font-size: .68rem;
    opacity: .7;
    font-weight: 400
}

.app-btn-name {
    font-weight: 600;
    font-size: .9rem
}

.app-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border)
}

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

.app-table th, .app-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border)
}

.app-table th {
    background: rgba(255, 107, 0, .08);
    color: var(--clr-orange);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

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

.app-table td:first-child {
    color: var(--clr-muted);
    font-weight: 500
}

.app-table td:last-child {
    color: #fff;
    font-weight: 500
}

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

/* ===== BONUSES ===== */
.bonus-slider-wrap {
    position: relative
}

.bonus-track {
    display: flex;
    gap: 20px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.bonus-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--tr), box-shadow var(--tr);
    position: relative;
    overflow: hidden
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-orange), var(--clr-green))
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
}

.bonus-casino-name {
    font-size: .78rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px
}

.bonus-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-orange);
    margin-bottom: 4px
}

.bonus-desc {
    font-size: .85rem;
    color: #bbb;
    margin-bottom: 16px;
    line-height: 1.5
}

.bonus-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.bonus-tag {
    font-size: .7rem;
    background: rgba(255, 107, 0, .12);
    color: var(--clr-orange);
    border: 1px solid rgba(255, 107, 0, .25);
    padding: 2px 8px;
    border-radius: 20px
}

.bonus-tag--green {
    background: rgba(34, 197, 94, .12);
    color: var(--clr-green);
    border-color: rgba(34, 197, 94, .25)
}

.bonus-nav {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px
}

.bonus-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--tr), transform var(--tr);
    font-size: 1.1rem
}

.bonus-nav-btn:hover {
    background: var(--clr-orange);
    transform: scale(1.1)
}

/* ===== DEMO ===== */
.demo-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 107, 0, .06);
    border-bottom: 1px solid var(--clr-border);
    flex-wrap: wrap;
    gap: 10px
}

.demo-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff
}

.demo-meta {
    font-size: .78rem;
    color: var(--clr-muted);
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.demo-meta span {
    display: flex;
    align-items: center;
    gap: 4px
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%
}

.demo-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.demo-footer {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--clr-border)
}

.demo-disclaimer {
    font-size: .75rem;
    color: var(--clr-muted);
    max-width: 400px;
    line-height: 1.5
}

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

.faq-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--tr)
}

.faq-item.open {
    border-color: rgba(255, 107, 0, .4)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    gap: 10px
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: transform var(--tr), background var(--tr);
    flex-shrink: 0;
    color: var(--clr-orange)
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--clr-orange);
    border-color: var(--clr-orange);
    color: #fff
}

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

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

.faq-a-inner {
    padding: 0 20px 18px;
    color: #bbb;
    font-size: .9rem;
    line-height: 1.75
}

.faq-a-inner p + p {
    margin-top: 8px
}

/* ===== AUTHOR ===== */
.author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    flex-wrap: wrap
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-orange), #c94f00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden
}

.author-info {
    flex: 1;
    min-width: 200px
}

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

.author-role {
    font-size: .8rem;
    color: var(--clr-orange);
    margin-bottom: 8px
}

.author-bio {
    font-size: .875rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 12px
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    font-weight: 600
}

.author-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

/* ===== CONTENT AREA ===== */
.content-review {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px
}

.content-review h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    line-height: 1.3
}

.content-review h2:first-child {
    margin-top: 0
}

.content-review h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 20px 0 10px
}

.content-review p {
    color: #bbb;
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 12px
}

.content-review ul, .content-review ol {
    padding-left: 20px;
    margin-bottom: 16px
}

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

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

.content-review li {
    color: #bbb;
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 4px
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: .875rem
}

.content-review table th {
    background: rgba(255, 107, 0, .1);
    color: var(--clr-orange);
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.content-review table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: #ccc;
    text-align: left
}

.content-review table tr:hover td {
    background: rgba(255, 255, 255, .02)
}

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

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

.content-review blockquote {
    border-left: 3px solid var(--clr-orange);
    padding: 12px 16px;
    background: rgba(255, 107, 0, .06);
    border-radius: 0 6px 6px 0;
    margin: 16px 0
}

.content-review blockquote p {
    margin-bottom: 0;
    color: #d0d0d0
}

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

.footer-top {
    padding: 48px 0 32px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.footer-brand {
    flex: 1;
    min-width: 220px
}

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

.footer-logo img {
    height: 36px;
    width: auto
}

.footer-tagline {
    font-size: .82rem;
    color: var(--clr-muted);
    line-height: 1.6;
    max-width: 280px
}

.footer-cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex: 2;
    min-width: 300px
}

.footer-col h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
    margin-bottom: 14px;
    font-weight: 600
}

.footer-col a {
    display: block;
    color: #bbb;
    font-size: .85rem;
    margin-bottom: 8px;
    transition: color var(--tr)
}

.footer-col a:hover {
    color: var(--clr-orange)
}

.footer-mid {
    padding: 24px 0;
    border-top: 1px solid var(--clr-border);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.footer-pay-title, .footer-trust-title {
    font-size: .75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-right: 8px;
    flex-shrink: 0
}

.footer-pay-logos, .footer-trust-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-pay-logo, .footer-trust-logo {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 600;
    color: #999;
    white-space: nowrap
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto
}

.footer-provider-label {
    font-size: .72rem;
    color: #555
}

.footer-provider img {
    height: 28px;
    width: auto;
    opacity: .7;
    filter: grayscale(1);
    transition: opacity var(--tr), filter var(--tr)
}

.footer-provider img:hover {
    opacity: 1;
    filter: none
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: .75rem;
    color: #555;
    line-height: 1.5
}

.footer-legal {
    font-size: .72rem;
    color: #444;
    max-width: 600px;
    text-align: right;
    line-height: 1.5
}

.tech-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 860px;
    margin: 0 auto
}

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

.tech-content h2:first-child {
    margin-top: 0
}

.tech-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 20px 0 8px
}

.tech-content p {
    color: #bbb;
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 12px
}

.tech-content ul, .tech-content ol {
    padding-left: 20px;
    margin-bottom: 14px
}

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

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

.tech-content li {
    color: #bbb;
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 5px
}

.tech-content a {
    color: var(--clr-orange)
}

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

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 10px 0;
    font-size: .8rem;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.breadcrumbs a {
    color: #777;
    transition: color var(--tr)
}

.breadcrumbs a:hover {
    color: var(--clr-orange)
}

.breadcrumbs .sep {
    color: #444
}

/* ===== WP COMPAT (unikal) ===== */
.wp-block-group, .wp-block-columns, .wp-block-cover {
    display: block
}

.entry-content, .post-content, .page-content {
    display: block
}

.elementor-section, .elementor-widget-wrap {
    display: block
}

.wp-pagenavi, .navigation, .comments-area {
    display: none
}

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

#wpadminbar {
    display: none !important
}

/* ===== UNIQUE UNIKAL IDs ===== */
#x9q2m {
    display: block
}

.k7p3r-node {
    opacity: 1
}

.m5v8t-container {
    position: relative
}

.r2x6n-wrap {
    display: flex;
    flex-wrap: wrap
}

#j4h9w-root {
    display: block
}

.q1s7b-item {
    display: inline-block
}

.y6c3d-block {
    position: relative;
    display: block
}

.f8n2k-group {
    display: flex;
    flex-direction: column
}

.w3e5z-layer {
    display: block;
    position: relative
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .jackpot-grid {
        gap: 16px
    }

    .app-block {
        gap: 24px
    }

    .bonus-card {
        flex: 0 0 calc(50% - 10px)
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        border-bottom: 1px solid var(--clr-border);
        gap: 2px;
        z-index: 99
    }

    .header-nav.active {
        display: flex
    }

    .header-nav a {
        width: 100%;
        padding: 10px 12px;
        font-size: .9rem
    }

    .burger {
        display: flex
    }

    .header-actions {
        margin-left: auto
    }

    .hero {
        min-height: 400px
    }

    .hero-slide {
        padding: 40px 16px
    }

    .section {
        padding: 44px 0
    }

    .jackpot-grid {
        flex-direction: column
    }

    .jackpot-card {
        min-width: unset
    }

    .app-block {
        flex-direction: column;
        gap: 20px
    }

    .app-table-wrap {
        width: 100%
    }

    .bonus-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 260px
    }

    .bonus-track-outer {
        overflow: hidden
    }

    .bonus-nav {
        display: flex
    }

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

    .footer-cols {
        flex-direction: column;
        gap: 20px
    }

    .footer-mid {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-provider {
        margin-left: 0;
        margin-top: 8px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-legal {
        text-align: left;
        max-width: 100%
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start
    }

    .bottom-widget {
        padding: 8px 12px
    }

    .widget-text {
        font-size: .78rem
    }

    .author-card {
        flex-direction: column;
        gap: 16px
    }

    .header-online {
        display: none
    }

    .lang-drop {
        display: none
    }
}

@media (max-width: 480px) {
    .btn--lg {
        padding: 12px 20px;
        font-size: .9rem
    }

    .hero-btns {
        flex-direction: column;
        max-width: 260px
    }

    .tech-content {
        padding: 20px
    }

    .content-review {
        padding: 20px
    }

    .demo-footer {
        flex-direction: column;
        align-items: flex-start
    }

    .faq-q {
        font-size: .88rem;
        padding: 14px 16px
    }

    .faq-a-inner {
        padding: 0 16px 14px
    }

    .app-btns {
        flex-direction: column
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(.9)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.anim-fade-up {
    animation: fadeInUp .6s ease both
}

.anim-fade {
    animation: fadeIn .5s ease both
}

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

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

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

.separator {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 40px 0
}

.text-muted {
    color: var(--clr-muted)
}

.text-orange {
    color: var(--clr-orange)
}

.text-green {
    color: var(--clr-green)
}

.fw-700 {
    font-weight: 700
}

.mt-0 {
    margin-top: 0
}

.mb-20 {
    margin-bottom: 20px
}

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

/* wordpress static path styles (non-rendering) */
.wp-content-static-path, .wc-block-container, .woocommerce-loop-product__link {
    display: inherit
}

.elementor-widget-container, .elementor-column-gap-default {
    display: inherit
}

.yoast-schema-graph, .yoast-seo-meta {
    display: none
}

.pkdjnhd {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 36px;
    background: #1a1a1a;
    border: 1px solid #2f2f2f;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.pkdjnhd h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.pkdjnhd h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 42px 0 16px;
}

.pkdjnhd h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #f4f4f4;
    margin: 28px 0 14px;
}

.pkdjnhd p {
    font-size: 16px;
    line-height: 1.85;
    color: #c8c8c8;
    margin-bottom: 18px;
}

.pkdjnhd ul,
.pkdjnhd ol {
    margin: 0 0 24px 24px;
}

.pkdjnhd li {
    font-size: 15px;
    line-height: 1.75;
    color: #d0d0d0;
    margin-bottom: 10px;
}

.pkdjnhd a {
    color: #ff6b00;
    transition: .25s ease;
    word-break: break-word;
}

.pkdjnhd a:hover {
    color: #ff944d;
}

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

.pkdjnhd table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border: 1px solid #303030;
    border-radius: 18px;
    overflow: hidden;
}

.pkdjnhd th {
    background: #252525;
    color: #fff;
    padding: 16px;
    font-size: 14px;
    text-align: left;
}

.pkdjnhd td {
    background: #1f1f1f;
    color: #d3d3d3;
    padding: 16px;
    font-size: 14px;
    border-top: 1px solid #303030;
}

@media (max-width: 991px) {
    .pkdjnhd {
        padding: 28px 22px;
        border-radius: 22px;
        margin: 28px auto;
    }

    .pkdjnhd h1 {
        font-size: 36px;
    }

    .pkdjnhd h2 {
        font-size: 26px;
    }

    .pkdjnhd h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .pkdjnhd {
        width: 100%;
        max-width: 100%;
        margin: 18px auto;
        padding: 20px 14px;
        border-radius: 18px;
    }

    .pkdjnhd h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .pkdjnhd h2 {
        font-size: 22px;
        line-height: 1.35;
        margin: 30px 0 12px;
    }

    .pkdjnhd h3 {
        font-size: 18px;
        margin: 22px 0 10px;
    }

    .pkdjnhd p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .pkdjnhd ul,
    .pkdjnhd ol {
        margin: 0 0 18px 18px;
    }

    .pkdjnhd li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .pkdjnhd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pkdjnhd th,
    .pkdjnhd td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pkdjnhd {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .pkdjnhd h1 {
        font-size: 24px;
    }

    .pkdjnhd h2 {
        font-size: 20px;
    }

    .pkdjnhd h3 {
        font-size: 17px;
    }

    .pkdjnhd p,
    .pkdjnhd li {
        font-size: 13.5px;
    }
}