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

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

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-btn-primary: #13ca90;
    --c-btn-secondary: #3d18a4;
    --c-text: #e8eaf0;
    --c-text-muted: #9aa0b4;
    --c-text-dark: #15161a;
    --c-border: #2a2c35;
    --c-card: #1c1e25;
    --c-card2: #1f2130;
    --c-gold: #f0c040;
    --c-accent: #13ca90;
    --c-purple: #3d18a4;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --font-main: 'Satoshi', sans-serif;
    --transition: all .25s ease;
}

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

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

a:hover {
    color: var(--c-gold)
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none
}

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

.btn--primary:hover {
    background: #0fb37a;
    color: var(--c-text-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(19, 202, 144, .4)
}

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

.btn--secondary:hover {
    background: #5022cc;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(61, 24, 164, .4)
}

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

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

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

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

.x7f2a9 {
    display: none
}

.q3m1b8 {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

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

.x-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0
}

.x-logo {
    flex-shrink: 0
}

.x-logo img {
    height: 30px;
    width: auto
}

.x-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

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

.x-nav a:hover, .x-nav a.active {
    color: var(--c-text);
    background: rgba(255, 255, 255, .06)
}

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

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

.x-casino-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.x-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(19, 202, 144, .4)
    }
    50% {
        opacity: .8;
        box-shadow: 0 0 0 6px rgba(19, 202, 144, 0)
    }
}

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

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

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

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

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

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

.x-mobile-menu {
    display: none;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    z-index: 999;
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6)
}

.x-mobile-menu.open {
    display: flex
}

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

.x-mobile-menu a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, .06)
}

.x-mobile-menu a svg {
    width: 18px;
    height: 18px
}

.x-mobile-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid var(--c-border);
    margin-top: 4px;
    font-size: .8rem;
    color: var(--c-text-muted)
}

#x-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg)
}

.x-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/tl-b.jpg');
    background-size: cover;
    background-position: center
}

.x-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 22, 26, .92) 0%, rgba(21, 22, 26, .7) 60%, rgba(61, 24, 164, .3) 100%)
}

.x-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:1fr auto;
    gap: 40px;
    align-items: center;
    padding: 60px 0
}

.x-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(19, 202, 144, .15);
    border: 1px solid rgba(19, 202, 144, .3);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: .8rem;
    color: var(--c-btn-primary);
    font-weight: 600;
    margin-bottom: 20px
}

.x-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    text-wrap: balance
}

.x-hero-title span {
    color: var(--c-btn-primary)
}

.x-hero-subtitle {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.7
}

.x-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px
}

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

.x-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px
}

.x-hero-trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--c-btn-primary)
}

.x-bonus-tile {
    background: linear-gradient(145deg, #1c1e25, #23263a);
    border: 1px solid rgba(19, 202, 144, .25);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    min-width: 260px;
    box-shadow: 0 8px 40px rgba(19, 202, 144, .12);
    position: relative;
    overflow: hidden
}

.x-bonus-tile::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(19, 202, 144, .2) 0%, transparent 70%);
    pointer-events: none
}

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

.x-bonus-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 4px
}

.x-bonus-sub {
    font-size: .85rem;
    color: var(--c-btn-primary);
    font-weight: 600;
    margin-bottom: 16px
}

.x-bonus-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px
}

.x-bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--c-text-muted)
}

.x-bonus-feature svg {
    color: var(--c-btn-primary);
    flex-shrink: 0;
    width: 14px;
    height: 14px
}

.x-section {
    padding: 64px 0
}

.x-section-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 8px;
    text-wrap: balance
}

.x-section-sub {
    color: var(--c-text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.7
}

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

.x-section-header .x-section-title {
    margin-bottom: 8px
}

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

.x-feature-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition)
}

.x-feature-card:hover {
    border-color: rgba(19, 202, 144, .3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card)
}

.x-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(19, 202, 144, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--c-btn-primary)
}

.x-feature-icon svg {
    width: 24px;
    height: 24px
}

.x-feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px
}

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

.x-jackpots-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px
}

.x-jackpot-card {
    background: linear-gradient(145deg, var(--c-card), #23253a);
    border: 1px solid rgba(240, 192, 64, .2);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition)
}

.x-jackpot-card:hover {
    border-color: rgba(240, 192, 64, .5);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, .15)
}

.x-jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(240, 192, 64, .05));
    pointer-events: none
}

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

.x-jackpot-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--c-gold);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums
}

.x-jackpot-game {
    font-size: .8rem;
    color: var(--c-btn-primary);
    font-weight: 600;
    margin-bottom: 14px
}

.x-jackpot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    margin: 0 auto;
    animation: pulse-dot 1.5s infinite
}

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

.x-mirrors-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 16px
}

.x-mirrors-date svg {
    color: var(--c-btn-primary);
    width: 14px;
    height: 14px
}

.x-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

.x-table th {
    background: rgba(255, 255, 255, .05);
    color: var(--c-text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--c-border)
}

.x-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
    vertical-align: middle
}

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

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

.x-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600
}

.x-status-badge.active {
    background: rgba(19, 202, 144, .15);
    color: var(--c-btn-primary)
}

.x-table a {
    color: var(--c-btn-primary);
    font-weight: 600
}

.x-table a:hover {
    text-decoration: underline
}

.x-screenshots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px
}

.x-screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: var(--transition);
    cursor: pointer
}

.x-screenshot-item:hover {
    border-color: rgba(19, 202, 144, .4);
    transform: scale(1.02)
}

.x-screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block
}

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

.x-slider-track {
    display: flex;
    gap: 12px;
    transition: transform .4s cubic-bezier(.25, .1, .25, 1)
}

.x-slider-track .x-screenshot-item {
    flex: 0 0 80%;
    max-width: 80%
}

.x-slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

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

.x-slider-dot.active {
    background: var(--c-btn-primary);
    width: 20px;
    border-radius: 4px
}

.x-slider-arrows {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px
}

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

.x-slider-btn:hover {
    border-color: var(--c-btn-primary);
    color: var(--c-btn-primary)
}

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

.x-winners-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px
}

.x-winner-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: var(--transition)
}

.x-winner-row:hover {
    border-color: rgba(19, 202, 144, .25);
    background: var(--c-card2)
}

.x-winner-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(19, 202, 144, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-btn-primary);
    flex-shrink: 0
}

.x-winner-rank.top-3 {
    background: linear-gradient(135deg, rgba(240, 192, 64, .25), rgba(240, 192, 64, .1));
    color: var(--c-gold)
}

.x-winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--c-border)
}

.x-winner-name {
    font-size: .875rem;
    font-weight: 600;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.x-winner-game {
    font-size: .75rem;
    color: var(--c-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.x-winner-amount {
    font-size: .9rem;
    font-weight: 700;
    color: var(--c-btn-primary);
    flex-shrink: 0;
    text-align: right
}

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

.x-bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.x-bonus-card:first-child {
    border-color: rgba(19, 202, 144, .3)
}

.x-bonus-card:first-child::before {
    content: 'Populair';
    position: absolute;
    top: 14px;
    right: -24px;
    background: var(--c-btn-primary);
    color: var(--c-text-dark);
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 28px;
    transform: rotate(45deg);
    letter-spacing: .06em
}

.x-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(19, 202, 144, .3)
}

.x-bonus-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(19, 202, 144, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--c-btn-primary)
}

.x-bonus-card-icon svg {
    width: 28px;
    height: 28px
}

.x-bonus-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.x-bonus-card-amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--c-gold);
    margin-bottom: 8px
}

.x-bonus-card-desc {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 20px
}

.x-bonus-slider-wrap {
    display: none
}

.x-bonus-slider {
    position: relative;
    overflow: hidden
}

.x-bonus-slider .x-bonus-card {
    flex: 0 0 85%;
    max-width: 85%
}

.x-slot-machine {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-card)
}

.x-slot-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px
}

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

.x-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px
}

.x-reel {
    width: 80px;
    height: 90px;
    background: linear-gradient(180deg, #0e0f13 0%, #1a1c24 100%);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition)
}

.x-reel.spinning {
    animation: reel-spin .1s linear infinite
}

@keyframes reel-spin {
    0% {
        transform: translateY(-3px)
    }
    50% {
        transform: translateY(3px)
    }
    100% {
        transform: translateY(-3px)
    }
}

.x-slot-result {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.x-slot-win {
    color: var(--c-btn-primary);
    font-weight: 700;
    font-size: 1.1rem;
    animation: fade-in-up .4s ease
}

.x-slot-lose {
    color: var(--c-text-muted);
    font-size: .9rem
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.x-slot-btn {
    width: 100%
}

.x-content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    line-height: 1.8
}

.x-content-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 24px 0 12px;
    color: var(--c-text)
}

.x-content-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--c-text)
}

.x-content-block p {
    margin-bottom: 14px;
    color: var(--c-text-muted);
    font-size: .95rem
}

.x-content-block ul, .x-content-block ol {
    margin: 12px 0 14px 20px;
    color: var(--c-text-muted);
    font-size: .95rem
}

.x-content-block li {
    margin-bottom: 6px;
    line-height: 1.6
}

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

.x-content-block table th {
    background: rgba(255, 255, 255, .06);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-weight: 600
}

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

.x-content-block a {
    color: var(--c-btn-primary);
    font-weight: 600
}

.x-content-block strong {
    color: var(--c-text);
    font-weight: 700
}

.x-content-block blockquote {
    border-left: 3px solid var(--c-btn-primary);
    padding: 12px 18px;
    background: rgba(19, 202, 144, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--c-text-muted);
    font-style: italic
}

.x-author-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 24px;
    align-items: start
}

.x-author-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(19, 202, 144, .3);
    flex-shrink: 0
}

.x-author-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2px
}

.x-author-role {
    font-size: .8rem;
    color: var(--c-btn-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.x-author-bio {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 12px
}

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

.x-author-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    font-size: .78rem;
    color: var(--c-text-muted);
    transition: var(--transition)
}

.x-author-links a:hover {
    border-color: var(--c-btn-primary);
    color: var(--c-btn-primary)
}

.x-author-links a svg {
    width: 13px;
    height: 13px
}

.x-author-dates {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 10px
}

.x-author-dates span {
    color: var(--c-text);
    font-weight: 600
}

#x-site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0
}

.x-footer-top {
    display: grid;
    grid-template-columns:280px 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px
}

.x-footer-brand img {
    height: 36px;
    margin-bottom: 12px
}

.x-footer-brand p {
    font-size: .8rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 14px
}

.x-footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--c-text-muted)
}

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

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

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

.x-footer-links a:hover {
    color: var(--c-btn-primary)
}

.x-footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

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

.x-footer-social a:hover {
    border-color: var(--c-btn-primary);
    color: var(--c-btn-primary)
}

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

.x-footer-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 0
}

.x-footer-logos {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.x-footer-logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.x-footer-logos-label {
    font-size: .72rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    width: 90px;
    flex-shrink: 0
}

.x-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: .75rem;
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap
}

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

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

.x-footer-legal {
    font-size: .75rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 680px
}

.x-footer-age {
    font-size: .875rem;
    font-weight: 700;
    color: var(--c-text-muted);
    border: 2px solid var(--c-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.x-footer-email a {
    color: var(--c-btn-primary);
    font-size: .85rem;
    font-weight: 600
}

.x-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, var(--c-header) 0%, #1a1b22 100%);
    border-top: 1px solid rgba(19, 202, 144, .25);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.25, .1, .25, 1)
}

.x-sticky-widget.visible {
    transform: translateY(0)
}

.x-widget-text {
    display: flex;
    align-items: center;
    gap: 10px
}

.x-widget-text .x-widget-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(19, 202, 144, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-btn-primary);
    flex-shrink: 0
}

.x-widget-text .x-widget-icon svg {
    width: 18px;
    height: 18px
}

.x-widget-main {
    font-size: .875rem;
    font-weight: 700;
    color: var(--c-text)
}

.x-widget-sub {
    font-size: .75rem;
    color: var(--c-text-muted)
}

.x-widget-btns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0
}

.x-widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    line-height: 1;
    font-size: 1.1rem;
    transition: var(--transition)
}

.x-widget-close:hover {
    color: var(--c-text)
}

.x-section.x-alt {
    background: linear-gradient(180deg, var(--c-bg) 0%, rgba(28, 30, 37, .8) 50%, var(--c-bg) 100%)
}

.x-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(19, 202, 144, .12);
    border: 1px solid rgba(19, 202, 144, .25);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: .75rem;
    color: var(--c-btn-primary);
    font-weight: 600;
    margin-bottom: 12px
}

.x-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 8px 0
}

body.menu-open {
    overflow: hidden
}

.wp-block-group {
    display: block
}

.wp-block-image {
    margin: 1em 0
}

.entry-content {
    display: block
}

.wp-block-paragraph {
    margin-bottom: 1em
}

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

.alignnone {
    margin: 5px 20px 20px 0
}

.wp-caption {
    max-width: 100%
}

.sticky {
    display: block
}

.bypostauthor {
    display: block
}

.gallery-caption {
    display: block
}

.j7k2p9 input[type=text] {
    border: 1px solid transparent
}

.n4w8q3 {
    display: inline-block;
    width: 0;
    height: 0;
    overflow: hidden
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

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

@media (max-width: 1024px) {
    .x-header-inner {
        grid-template-columns:auto auto auto
    }

    .x-nav {
        display: none
    }

    .x-burger {
        display: flex
    }

    .x-hero-content {
        grid-template-columns:1fr;
        text-align: center
    }

    .x-hero-btns {
        justify-content: center
    }

    .x-hero-trust {
        justify-content: center
    }

    .x-bonus-tile {
        min-width: auto;
        width: 100%;
        max-width: 380px;
        margin: 0 auto
    }

    .x-screenshots-grid {
        display: none
    }

    .x-slider-wrap {
        display: block
    }

    .x-bonuses-grid {
        display: none
    }

    .x-bonus-slider-wrap {
        display: block
    }

    .x-bonus-slider-wrap .x-bonus-slider {
        display: flex
    }

    .x-bonus-slider-wrap .x-bonuses-grid {
        display: none
    }

    .x-footer-top {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }

    .x-author-card {
        grid-template-columns:1fr;
        text-align: center
    }

    .x-author-photo {
        margin: 0 auto
    }

    .x-author-links {
        justify-content: center
    }
}

@media (max-width: 768px) {
    .x-hero-content {
        padding: 40px 0
    }

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

    .x-section {
        padding: 44px 0
    }

    .x-footer-top {
        grid-template-columns:1fr;
        gap: 20px
    }

    .x-winner-amount {
        font-size: .8rem
    }

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

    .x-sticky-widget {
        flex-wrap: wrap;
        gap: 10px
    }

    .x-bonus-card {
        width: 100%;
        flex: 0 0 88%
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 14px
    }

    .x-features-grid {
        grid-template-columns:1fr 1fr
    }

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

    .x-winners-grid {
        grid-template-columns:1fr
    }

    .x-hero-title {
        font-size: 1.6rem
    }

    .x-bonus-amount {
        font-size: 2rem
    }

    .x-slot-machine {
        padding: 24px 16px
    }

    .x-reels {
        gap: 6px
    }

    .x-reel {
        width: 68px;
        height: 80px;
        font-size: 2.2rem
    }

    .x-content-block {
        padding: 24px 18px
    }
}

.x-info-page {
    padding: 48px 0
}

.x-info-page h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--c-text)
}

.x-info-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    line-height: 1.8
}

.x-info-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 24px 0 10px;
    color: var(--c-text)
}

.x-info-content p {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 12px
}

.x-info-content ul {
    margin: 10px 0 12px 20px;
    color: var(--c-text-muted);
    font-size: .9rem
}

.x-info-content li {
    margin-bottom: 6px
}

.x-info-content a {
    color: var(--c-btn-primary);
    font-weight: 600
}

:root {
    --x-header-height: 72px;
}

html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    padding-top: var(--x-header-height);
}

#x-site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: var(--c-header, #16171b);
    border-bottom: 1px solid var(--c-border, #2a2d36);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

#x-site-header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.x-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: var(--x-header-height);
    gap: 16px;
}

.x-logo,
.x-logo img {
    display: block;
}

.x-logo {
    flex: 0 0 auto;
}

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

.x-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 6px;
}

.x-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

.x-mobile-menu {
    z-index: 100000;
}

.x-burger {
    position: relative;
    z-index: 100001;
}

@media (max-width: 900px) {
    :root {
        --x-header-height: 64px;
    }

    .x-header-inner {
        min-height: var(--x-header-height);
        gap: 8px;
    }

    .x-logo img {
        max-width: 116px;
        height: 36px;
    }

    .x-nav {
        display: none;
    }

    .x-mobile-menu {
        position: fixed;
        top: var(--x-header-height);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - var(--x-header-height));
        padding: 16px 14px 28px;
        background: rgba(22, 23, 27, .99);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    :root {
        --x-header-height: 60px;
    }

    .x-logo img {
        max-width: 102px;
        height: 32px;
    }


    .x-header-actions .btn {
        padding: 8px 10px;
        font-size: 11px;
    }
}

.x-bonus-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.x-bonus-slider {
    display: flex;
    align-items: stretch;
    width: max-content;
    min-width: 100%;
    max-width: none;
    gap: 12px;
    overflow: visible;
    will-change: transform;
    touch-action: pan-y;
}

.x-bonus-slider .x-bonus-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.x-bonus-slider .x-bonus-card .btn {
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    white-space: normal;
}

.x-bonus-dots .x-slider-dot {
    padding: 0;
    border: 0;
}

.x-slider-btn:disabled {
    opacity: .35;
    pointer-events: none;
}

@media (min-width: 1025px) {
    .x-bonus-slider-wrap {
        display: none;
    }

    .x-bonuses-grid {
        display: grid;
    }
}

@media (max-width: 1024px) {
    .x-bonuses-grid {
        display: none;
    }

    .x-bonus-slider-wrap {
        display: block;
    }

    .x-bonus-slider .x-bonus-card {
        flex: 0 0 calc(100vw - 68px);
        width: calc(100vw - 68px);
        max-width: 420px;
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    .x-bonus-slider .x-bonus-card {
        flex-basis: calc(100vw - 52px);
        width: calc(100vw - 52px);
        max-width: none;
        padding: 24px 18px;
    }
}

@media (max-width: 480px) {
    .x-bonus-slider {
        gap: 10px;
    }

    .x-bonus-slider .x-bonus-card {
        flex-basis: calc(100vw - 34px);
        width: calc(100vw - 34px);
        padding: 22px 14px;
    }
}