@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --c-bg: #000000;
    --c-header: #0a0a35;
    --c-btn-primary: #fbec1f;
    --c-btn-secondary: #016d19;
    --c-text: #e8e8f0;
    --c-text-muted: #9999bb;
    --c-border: #1e1e4a;
    --c-card: #0d0d2e;
    --c-card2: #111138;
    --c-accent: #fbec1f;
    --c-green: #016d19;
    --c-gold: #d4a900;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .6);
    --transition: .22s ease;
    --font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg)
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

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

a:hover {
    color: #fff
}

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

button {
    cursor: pointer;
    font-family: var(--font)
}

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

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

.nx-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    text-decoration: none;
    white-space: nowrap
}

.nx-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .5);
    opacity: .92
}

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

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

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

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

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

.nx-btn--sm {
    padding: 7px 16px;
    font-size: 13px
}

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

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    height: 68px;
    max-width: 1240px;
    margin: 0 auto
}

.header-logo img {
    height: 46px;
    width: auto;
    object-fit: contain
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

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

.header-nav a:hover, .header-nav a.active {
    background: rgba(255, 255, 255, .07);
    color: var(--c-accent)
}

.header-nav .nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--c-text-muted)
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse 2s infinite
}

.player-count {
    color: var(--c-accent);
    font-weight: 600
}

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

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

.burger span {
    display: block;
    width: 24px;
    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)
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/b-nyx.png');
    background-size: cover;
    background-position: center;
    opacity: .35;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 53, .9) 0%, rgba(0, 0, 0, .6) 100%)
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 18px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 236, 31, .12);
    border: 1px solid rgba(251, 236, 31, .3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: 18px
}

.hero h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    text-wrap: balance;
    margin-bottom: 14px
}

.hero h1 span {
    color: var(--c-accent)
}

.hero-sub {
    font-size: 16px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    text-wrap: pretty
}

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

.promo-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(251, 236, 31, .25);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    backdrop-filter: blur(8px)
}

.promo-label {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.promo-code-val {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-accent);
    letter-spacing: .12em;
    font-family: monospace
}

.promo-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(251, 236, 31, .15);
    border: 1px solid rgba(251, 236, 31, .4);
    color: var(--c-accent);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition)
}

.promo-copy-btn:hover {
    background: rgba(251, 236, 31, .28)
}

.hero-banner-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .8)
}

.hero-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted)
}

.hero-trust-icon {
    color: var(--c-accent)
}

.section {
    padding: 64px 0
}

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

.section-title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance
}

.section-sub {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 36px;
    text-wrap: pretty
}

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

.jackpot-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.jackpot-card {
    background: linear-gradient(135deg, #0d0d2e 0%, #1a1a50 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(251, 236, 31, .12)
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 236, 31, .12) 0%, transparent 70%);
    pointer-events: none
}

.jackpot-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block
}

.jackpot-name {
    font-size: 13px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.jackpot-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--c-accent);
    font-family: monospace;
    letter-spacing: .04em
}

.jackpot-label {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 4px
}

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

.nx-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    background: var(--c-card2)
}

.nx-table th {
    background: #0a0a35;
    color: var(--c-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--c-border)
}

.nx-table td {
    padding: 13px 16px;
    font-size: 14px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle
}

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

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

.pm-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    max-width: 72px
}

.pm-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text);
    min-width: 60px;
    height: 28px
}

.badge-ok {
    display: inline-block;
    background: rgba(1, 109, 25, .2);
    color: #4ade80;
    border: 1px solid rgba(1, 109, 25, .4);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600
}

.badge-warn {
    display: inline-block;
    background: rgba(251, 236, 31, .1);
    color: var(--c-accent);
    border: 1px solid rgba(251, 236, 31, .3);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600
}

.mirror-link {
    color: var(--c-btn-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #4ade80
}

.mirror-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    box-shadow: 0 0 5px #22c55e
}

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

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px
}

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

.app-dl-btn:hover {
    border-color: var(--c-accent);
    background: rgba(251, 236, 31, .05);
    color: #fff
}

.app-dl-btn-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0
}

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

.app-dl-btn-text small {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

.app-dl-btn-text strong {
    font-size: 16px;
    font-weight: 700
}

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

.bonus-card {
    background: linear-gradient(135deg, var(--c-card) 0%, #0f0f3a 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

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

.bonus-card-ribbon {
    position: absolute;
    top: 16px;
    right: -22px;
    background: var(--c-accent);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 32px;
    transform: rotate(40deg);
    letter-spacing: .06em;
    white-space: nowrap
}

.bonus-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(251, 236, 31, .1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 26px
}

.bonus-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.bonus-card-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--c-accent);
    margin-bottom: 10px;
    line-height: 1
}

.bonus-card p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.bonus-card-terms {
    font-size: 11px;
    color: #666699;
    margin-top: 10px
}

.slot-demo {
    background: linear-gradient(135deg, #0d0d2e 0%, #1a1460 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto
}

.slot-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.slot-sub {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 28px
}

.slot-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px
}

.slot-reel {
    width: 80px;
    height: 90px;
    background: #060620;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, .8)
}

.slot-reel.spinning {
    animation: slotSpin .12s linear infinite
}

@keyframes slotSpin {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
    100% {
        transform: translateY(0)
    }
}

.slot-spin-btn {
    background: var(--c-btn-primary);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 40px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.slot-spin-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(251, 236, 31, .3)
}

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

.slot-result {
    margin-top: 22px;
    padding: 18px;
    border-radius: var(--radius-md);
    display: none
}

.slot-result.win {
    background: rgba(1, 109, 25, .15);
    border: 1px solid rgba(1, 109, 25, .4);
    display: block
}

.slot-result.lose {
    background: rgba(255, 60, 60, .08);
    border: 1px solid rgba(255, 60, 60, .2);
    display: block
}

.slot-result-text {
    font-size: 17px;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 12px
}

.slot-result.lose .slot-result-text {
    color: #f87171;
    font-size: 15px
}

.review-block {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px
}

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

.review-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-accent), var(--c-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #000;
    flex-shrink: 0
}

.review-author-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px
}

.review-author-bio {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5
}

.review-author-link {
    font-size: 13px;
    color: var(--c-btn-primary);
    margin-top: 4px
}

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

.review-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 12px
}

.review-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-accent);
    margin: 16px 0 10px
}

.review-content p {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 16px
}

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

.review-content li {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 6px
}

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

.review-content a:hover {
    text-decoration: underline
}

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

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

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: var(--radius-sm);
    overflow: hidden
}

.review-content table th {
    background: #0a0a35;
    color: var(--c-accent);
    font-size: 13px;
    font-weight: 700;
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--c-border)
}

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

.review-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 18px;
    background: rgba(251, 236, 31, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--c-text-muted)
}

.footer {
    background: var(--c-header);
    border-top: 1px solid #1a1a50;
    padding: 52px 0 28px
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px
}

.footer-top {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--c-border)
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px
}

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

.footer-brand-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7
}

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

.footer-flag {
    font-size: 20px
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em
}

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

.footer-nav-list a {
    font-size: 13px;
    color: var(--c-text-muted);
    transition: color var(--transition)
}

.footer-nav-list a:hover {
    color: var(--c-accent)
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition)
}

.footer-social a:hover {
    background: rgba(251, 236, 31, .15);
    color: var(--c-accent)
}

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

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

.footer-logos-row label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-right: 6px;
    width: 100%;
    flex-basis: 100%
}

.footer-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text);
    height: 34px;
    min-width: 54px;
    letter-spacing: .02em
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 14px
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 12px;
    color: var(--c-text-muted);
    font-weight: 600
}

.trust-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between
}

.footer-copyright {
    font-size: 12px;
    color: #555577;
    line-height: 1.7;
    max-width: 680px
}

.footer-legal {
    font-size: 11px;
    color: #444466;
    line-height: 1.6;
    max-width: 900px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #111133
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    color: #000;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0a0a35 0%, #0d0d45 100%);
    border-top: 2px solid rgba(251, 236, 31, .35);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .7);
    transform: translateY(0);
    transition: transform .3s
}

.sticky-widget.hidden {
    transform: translateY(100%)
}

.widget-text {
    font-size: 14px;
    color: var(--c-text-muted)
}

.widget-code-area {
    display: flex;
    align-items: center;
    gap: 8px
}

.widget-code {
    font-size: 18px;
    font-weight: 900;
    color: var(--c-accent);
    letter-spacing: .12em;
    font-family: monospace
}

.widget-copy {
    background: rgba(251, 236, 31, .15);
    border: 1px solid rgba(251, 236, 31, .4);
    color: var(--c-accent);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition)
}

.widget-copy:hover {
    background: rgba(251, 236, 31, .3)
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 8px;
    line-height: 1;
    transition: color var(--transition)
}

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 999;
    backdrop-filter: blur(4px)
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--c-header);
    z-index: 1000;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right .3s;
    border-left: 1px solid var(--c-border);
    overflow-y: auto
}

.mobile-menu.open {
    right: 0
}

.mobile-menu-overlay.open {
    display: block
}

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

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--c-accent)
}

.mobile-menu .divider {
    height: 1px;
    background: var(--c-border);
    margin: 8px 0
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--c-border)
}

.info-page-wrap {
    padding: 56px 0 80px
}

.info-page-wrap h1 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px
}

.info-page-wrap h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.info-page-wrap h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--c-accent);
    margin: 20px 0 10px
}

.info-page-wrap p {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 14px
}

.info-page-wrap ul, .info-page-wrap ol {
    padding-left: 20px;
    margin-bottom: 14px
}

.info-page-wrap li {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 6px
}

.info-page-wrap a {
    color: var(--c-btn-primary)
}

.info-page-wrap strong {
    color: #fff
}

.info-content-box {
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
    padding: 14px 0;
    margin-bottom: 8px
}

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

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

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

.slider-wrap {
    overflow: hidden;
    position: relative
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94)
}

.slider-track .bonus-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px
}

.slider-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition)
}

.slider-btn:hover {
    background: rgba(251, 236, 31, .12);
    border-color: var(--c-accent);
    color: var(--c-accent)
}

.slider-dots {
    display: none;
    gap: 8px;
    justify-content: center;
    margin-top: 14px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition)
}

.slider-dot.active {
    background: var(--c-accent)
}

.wc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 2000;
    align-items: center;
    justify-content: center
}

.wc-overlay.open {
    display: flex
}

.wc-modal {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative
}

.wc-modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px
}

.wc-modal p {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 22px
}

.wc-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--c-text-muted);
    cursor: pointer
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.nx-xp7k2a {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    font-family: Georgia, serif
}

.nx-m91bz {
    display: none
}

@media (max-width: 1080px) {
    .footer-top {
        grid-template-columns:1fr 1fr
    }

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

@media (max-width: 800px) {
    .hero-inner {
        grid-template-columns:1fr;
        gap: 32px
    }

    .hero-banner-img {
        display: none
    }

    .bonus-grid {
        display: none
    }

    .slider-track {
        display: flex
    }

    .slider-track .bonus-card {
        flex: 0 0 85vw
    }

    .slider-dots {
        display: flex
    }

    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

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

    .header-meta {
        font-size: 11px
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns:1fr
    }

    .hero-actions {
        flex-direction: column
    }

    .nx-btn--lg {
        width: 100%;
        justify-content: center
    }

    .sticky-widget {
        gap: 10px
    }

    .widget-text {
        display: none
    }

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

    .info-content-box {
        padding: 22px 18px
    }

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

    .slot-reel {
        width: 65px;
        height: 76px;
        font-size: 36px
    }

    .bonus-grid {
        display: none
    }

    .slider-wrap .bonus-card {
        flex: 0 0 90vw;
        min-width: 260px
    }
}

.wpc-p3r1v {
    display: none;
    color: inherit
}

.elementor-section {
    position: relative
}

.wp-block-group {
    position: relative
}
