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

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0e1230;
    color: #e8eaf6;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: #fbc02d;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #fff176
}

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

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

.x7k2m9 {
    display: none
}

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

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

/* HEADER */
.site-header {
    background: #1a1f3c;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

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

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

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

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fbc02d;
    letter-spacing: .5px;
    white-space: nowrap
}

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

.header-nav a {
    color: #ccd6f6;
    font-size: .82rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.header-nav a:hover {
    background: rgba(251, 192, 45, .12);
    color: #fbc02d
}

.header-nav a svg {
    flex-shrink: 0
}

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

.players-online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a5d6a7;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(165, 214, 167, .1);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap
}

.players-online span.dot {
    width: 7px;
    height: 7px;
    background: #4caf50;
    border-radius: 50%;
    animation: blink 1.4s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.lang-dropdown {
    position: relative
}

.lang-btn {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    color: #e8eaf6;
    font-size: .8rem;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    transition: background .2s
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .13)
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #1a1f3c;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    min-width: 130px;
    padding: 6px;
    display: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.lang-menu.open {
    display: block
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    color: #ccd6f6;
    font-size: .82rem;
    border-radius: 5px;
    transition: background .2s
}

.lang-menu a:hover {
    background: rgba(251, 192, 45, .12);
    color: #fbc02d
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, filter .18s;
    white-space: nowrap;
    text-decoration: none
}

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

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

.btn--demo {
    background: #fbc02d;
    color: #1a1f3c;
    font-size: .8rem;
    padding: 8px 16px
}

.btn--demo:hover {
    background: #ffe082;
    color: #1a1f3c
}

.btn--play {
    background: #8e24aa;
    color: #fff;
    font-size: .8rem;
    padding: 8px 16px
}

.btn--play:hover {
    background: #ab47bc;
    color: #fff
}

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

.btn--gold {
    background: #fbc02d;
    color: #1a1f3c
}

.btn--gold:hover {
    background: #ffe082;
    color: #1a1f3c
}

.btn--purple {
    background: #8e24aa;
    color: #fff
}

.btn--purple:hover {
    background: #ab47bc
}

.btn--outline {
    background: transparent;
    border: 2px solid #fbc02d;
    color: #fbc02d;
    padding: 6px 14px;
    font-size: .8rem
}

.btn--outline:hover {
    background: #fbc02d;
    color: #1a1f3c
}

.btn--sm {
    font-size: .75rem;
    padding: 6px 12px;
    border-radius: 6px
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8eaf6;
    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: 480px;
    display: flex;
    align-items: center;
    overflow: hidden
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/hero-ol.png') center/cover no-repeat;
    opacity: .35;
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 600px
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(251, 192, 45, .15);
    border: 1px solid rgba(251, 192, 45, .35);
    color: #fbc02d;
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .3px
}

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

.hero h1 span {
    color: #fbc02d
}

.hero-desc {
    color: #ccd6f6;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px
}

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

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 12px 18px;
    min-width: 90px
}

.hero-stat strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fbc02d
}

.hero-stat span {
    font-size: .72rem;
    color: #9fa8da;
    text-align: center
}

/* TOC */
.section {
    padding: 48px 0
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px
}

.section-title svg {
    color: #fbc02d;
    flex-shrink: 0
}

.toc-block {
    background: #1a1f3c;
    border-radius: 14px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, .07);
    margin: 0 0 40px
}

.toc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 9px 14px;
    color: #ccd6f6;
    font-size: .83rem;
    font-weight: 500;
    transition: background .2s, color .2s;
    cursor: pointer
}

.toc-item:hover {
    background: rgba(251, 192, 45, .12);
    color: #fbc02d;
    border-color: rgba(251, 192, 45, .3)
}

.toc-item svg {
    color: #fbc02d;
    flex-shrink: 0
}

/* CASINO RATING */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.casino-card {
    background: #1a1f3c;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 20px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .35)
}

.casino-card--top1 {
    border: 2px solid #fbc02d;
    box-shadow: 0 0 20px rgba(251, 192, 45, .18)
}

.casino-card--top2 {
    border: 2px solid #9e9e9e
}

.casino-card--top3 {
    border: 2px solid #cd7f32
}

.casino-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: #1a1f3c
}

.casino-badge--gold {
    background: #fbc02d
}

.casino-badge--silver {
    background: #9e9e9e
}

.casino-badge--bronze {
    background: #cd7f32
}

.casino-badge--default {
    background: #3d4470;
    color: #ccd6f6;
    font-size: .7rem
}

.casino-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap
}

.casino-logo {
    width: 80px;
    height: 56px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, .06);
    padding: 6px;
    flex-shrink: 0
}

.casino-body {
    flex: 1;
    min-width: 200px
}

.casino-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap
}

.casino-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

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

.casino-available {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    color: #a5d6a7;
    background: rgba(165, 214, 167, .1);
    padding: 2px 8px;
    border-radius: 10px
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    font-weight: 700;
    color: #fbc02d;
    margin-left: auto
}

.casino-stars {
    color: #fbc02d;
    font-size: .85rem;
    letter-spacing: 1px
}

.casino-bonus {
    font-size: 1rem;
    font-weight: 800;
    color: #8e24aa;
    margin-bottom: 8px
}

.casino-bonus span {
    font-size: .78rem;
    font-weight: 500;
    color: #ce93d8
}

.casino-perks {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.casino-perk {
    font-size: .73rem;
    color: #a5d6a7;
    background: rgba(165, 214, 167, .08);
    border: 1px solid rgba(165, 214, 167, .2);
    padding: 3px 9px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px
}

.casino-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: .73rem;
    color: #9fa8da
}

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

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
    margin-left: auto
}

.btn--casino-play {
    background: #fbc02d;
    color: #1a1f3c;
    font-size: .82rem;
    padding: 10px 20px;
    font-weight: 800
}

.btn--casino-play:hover {
    background: #ffe082
}

.btn--casino-review {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #ccd6f6;
    font-size: .75rem;
    padding: 7px 14px
}

.btn--casino-review:hover {
    border-color: #fbc02d;
    color: #fbc02d
}

.ajax-load-more {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.btn--load {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #ccd6f6;
    font-size: .85rem;
    padding: 11px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: background .2s, color .2s
}

.btn--load:hover {
    background: rgba(251, 192, 45, .12);
    color: #fbc02d;
    border-color: rgba(251, 192, 45, .3)
}

.casino-card.hidden {
    display: none
}

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

.jackpot-card {
    flex: 1;
    min-width: 240px;
    border-radius: 14px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08)
}

.jackpot-card--grand {
    background: linear-gradient(135deg, #2d1b5c, #4a148c);
    border-color: rgba(142, 36, 170, .5)
}

.jackpot-card--major {
    background: linear-gradient(135deg, #1a237e, #283593);
    border-color: rgba(57, 73, 171, .5)
}

.jackpot-card--minor {
    background: linear-gradient(135deg, #1a1f3c, #263466);
    border-color: rgba(63, 81, 181, .4)
}

.jackpot-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    opacity: .75
}

.jackpot-card--grand .jackpot-label {
    color: #ce93d8
}

.jackpot-card--major .jackpot-label {
    color: #9fa8da
}

.jackpot-card--minor .jackpot-label {
    color: #90caf9
}

.jackpot-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1
}

.jackpot-card--grand .jackpot-amount {
    color: #fbc02d
}

.jackpot-card--major .jackpot-amount {
    color: #e8eaf6
}

.jackpot-card--minor .jackpot-amount {
    color: #90caf9
}

.jackpot-winners {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.jackpot-winner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .06);
    border-radius: 7px;
    padding: 7px 10px;
    font-size: .75rem
}

.jackpot-winner-nick {
    color: #ccd6f6;
    font-weight: 600
}

.jackpot-winner-win {
    color: #a5d6a7;
    font-weight: 700
}

.jackpot-trophy {
    position: absolute;
    right: 16px;
    top: 14px;
    font-size: 2rem;
    opacity: .18
}

/* DEMO GAME */
.demo-block {
    background: #1a1f3c;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    flex-wrap: wrap;
    gap: 10px
}

.demo-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px
}

.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000
}

.demo-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-footer {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.demo-meta {
    font-size: .78rem;
    color: #9fa8da;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

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

.demo-meta strong {
    color: #fbc02d
}

/* BONUSES */
.bonuses-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.bonus-card {
    flex: 1;
    min-width: 240px;
    background: #1a1f3c;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 22px;
    transition: transform .2s, box-shadow .2s
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .3)
}

.bonus-casino-logo {
    width: 72px;
    height: 44px;
    object-fit: contain;
    background: rgba(255, 255, 255, .06);
    border-radius: 7px;
    padding: 5px;
    margin-bottom: 12px
}

.bonus-casino-name {
    font-size: .75rem;
    font-weight: 600;
    color: #9fa8da;
    margin-bottom: 4px
}

.bonus-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fbc02d;
    margin-bottom: 6px
}

.bonus-desc {
    font-size: .82rem;
    color: #ccd6f6;
    line-height: 1.5;
    margin-bottom: 14px
}

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

.bonus-tag {
    font-size: .7rem;
    background: rgba(142, 36, 170, .2);
    border: 1px solid rgba(142, 36, 170, .4);
    color: #ce93d8;
    padding: 3px 8px;
    border-radius: 10px
}

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

.bonus-slider {
    display: flex;
    gap: 16px;
    transition: transform .35s ease
}

/* CONTENT BLOCK */
.content-block {
    background: #1a1f3c;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 32px;
    margin-bottom: 40px
}

.content-block h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px;
    border-left: 3px solid #fbc02d;
    padding-left: 12px
}

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

.content-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbc02d;
    margin: 20px 0 8px
}

.content-block p {
    color: #ccd6f6;
    line-height: 1.75;
    margin-bottom: 12px
}

.content-block ul, .content-block ol {
    color: #ccd6f6;
    padding-left: 22px;
    margin-bottom: 14px
}

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

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block
}

.content-block table th {
    background: #263466;
    color: #fbc02d;
    padding: 10px 14px;
    text-align: left;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap
}

.content-block table td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: #ccd6f6;
    font-size: .83rem
}

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

.content-block a {
    color: #fbc02d;
    text-decoration: underline
}

.content-block a:hover {
    color: #fff176
}

.content-block blockquote {
    border-left: 3px solid #8e24aa;
    padding: 10px 16px;
    background: rgba(142, 36, 170, .1);
    border-radius: 0 8px 8px 0;
    margin: 14px 0;
    font-style: italic;
    color: #ce93d8
}

.content-block strong, .content-block b {
    color: #fbc02d;
    font-weight: 700
}

/* GAME INFO TABLE */
.game-info-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left
}

.game-info-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: .85rem;
    color: #ccd6f6
}

.game-info-table td:first-child {
    color: #9fa8da;
    font-weight: 600;
    width: 45%
}

.game-info-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

/* PROS CONS */
.pros-cons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 20px 0
}

.pros-block, .cons-block {
    flex: 1;
    min-width: 200px;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid
}

.pros-block {
    background: rgba(165, 214, 167, .07);
    border-color: rgba(165, 214, 167, .2)
}

.cons-block {
    background: rgba(244, 67, 54, .07);
    border-color: rgba(244, 67, 54, .2)
}

.pros-block h4, .cons-block h4 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px
}

.pros-block h4 {
    color: #a5d6a7
}

.cons-block h4 {
    color: #ef9a9a
}

.pros-block ul, .cons-block ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.pros-block li, .cons-block li {
    font-size: .82rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #ccd6f6
}

.pros-block li::before {
    content: '✓';
    color: #a5d6a7;
    font-weight: 700;
    flex-shrink: 0
}

.cons-block li::before {
    content: '✕';
    color: #ef9a9a;
    font-weight: 700;
    flex-shrink: 0
}

/* REVIEWS */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.review-card {
    background: #1a1f3c;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 20px
}

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

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8e24aa, #fbc02d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.review-meta {
    flex: 1
}

.review-name {
    font-size: .9rem;
    font-weight: 700;
    color: #fff
}

.review-date {
    font-size: .72rem;
    color: #9fa8da
}

.review-stars {
    color: #fbc02d;
    font-size: .9rem
}

.review-text {
    font-size: .85rem;
    color: #ccd6f6;
    line-height: 1.6
}

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

.faq-item {
    background: #1a1f3c;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    color: #e8eaf6;
    user-select: none;
    transition: background .2s
}

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

.faq-question .faq-icon {
    transition: transform .3s;
    color: #fbc02d;
    flex-shrink: 0
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(180deg)
}

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

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

.faq-answer p {
    font-size: .85rem;
    color: #ccd6f6;
    line-height: 1.65
}

/* AUTHOR */
.author-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #1a1f3c;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 24px;
    flex-wrap: wrap
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #fbc02d
}

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

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

.author-role {
    font-size: .78rem;
    color: #9fa8da;
    margin-bottom: 8px
}

.author-bio {
    font-size: .83rem;
    color: #ccd6f6;
    line-height: 1.6;
    margin-bottom: 10px
}

.author-link {
    font-size: .8rem;
    font-weight: 600;
    color: #fbc02d;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.author-link:hover {
    color: #fff176
}

/* FOOTER */
.site-footer {
    background: #1a1f3c;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: auto
}

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

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

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

.footer-tagline {
    font-size: .78rem;
    color: #9fa8da;
    line-height: 1.5
}

.footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    color: #fbc02d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .8px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.footer-col ul li a {
    font-size: .8rem;
    color: #9fa8da;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #fbc02d
}

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

.footer-payment-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .72rem;
    color: #ccd6f6;
    font-weight: 600
}

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

.footer-trust-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .7rem;
    color: #9fa8da;
    display: flex;
    align-items: center;
    gap: 4px
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between
}

.footer-legal {
    font-size: .72rem;
    color: #616999;
    line-height: 1.5;
    flex: 1;
    min-width: 220px
}

.footer-copyright {
    font-size: .72rem;
    color: #616999;
    text-align: right;
    flex-shrink: 0
}

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

.footer-provider img {
    height: 28px;
    width: auto;
    opacity: .6;
    transition: opacity .2s;
    filter: grayscale(40%)
}

.footer-provider img:hover {
    opacity: 1
}

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 2px solid #616999;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 700;
    color: #616999;
    flex-shrink: 0
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    margin: 8px 0
}

/* TECHNICAL PAGES */
.technical-content {
    background: #1a1f3c;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 36px;
    margin: 40px 0
}

.technical-content h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 26px 0 10px;
    border-left: 3px solid #fbc02d;
    padding-left: 12px
}

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

.technical-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fbc02d;
    margin: 18px 0 8px
}

.technical-content p {
    color: #ccd6f6;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: .9rem
}

.technical-content ul, .technical-content ol {
    color: #ccd6f6;
    padding-left: 22px;
    margin-bottom: 14px
}

.technical-content li {
    margin-bottom: 7px;
    line-height: 1.6;
    font-size: .88rem
}

.technical-content a {
    color: #fbc02d;
    text-decoration: underline
}

.technical-content a:hover {
    color: #fff176
}

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

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(251, 192, 45, .3)
    }
    50% {
        box-shadow: 0 0 18px 6px rgba(251, 192, 45, .15)
    }
}

.anim-fadeInUp {
    animation: fadeInUp .55s ease both
}

.anim-fadeIn {
    animation: fadeIn .55s ease both
}

.jackpot-amount {
    animation: pulseGlow 3s infinite
}

/* MOBILE NAV */
@media (max-width: 960px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #1a1f3c;
        flex-direction: column;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        z-index: 999;
        gap: 4px;
        max-height: calc(100vh - 68px);
        overflow-y: auto
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        font-size: .9rem;
        padding: 10px 14px;
        border-radius: 8px
    }

    .burger {
        display: flex
    }

    .header-right .players-online {
        display: none
    }

    .lang-dropdown {
        order: -1
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 380px
    }

    .hero-content {
        padding: 40px 0
    }

    .jackpot-grid {
        flex-direction: column
    }

    .bonuses-grid {
        flex-direction: column
    }

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

    .casino-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-left: 0;
        margin-top: 10px;
        width: 100%
    }

    .casino-inner {
        flex-direction: column
    }

    .bonus-slider-wrap {
        overflow: hidden
    }

    .technical-content {
        padding: 20px
    }
}

@media (min-width: 641px) and (max-width: 960px) {
    .casino-inner {
        flex-wrap: wrap
    }

    .casino-actions {
        flex-direction: row;
        gap: 8px;
        margin-left: 0;
        margin-top: 10px;
        width: 100%
    }
}

/* WP compatibility stubs */
.wp-block-paragraph {
    display: block
}

.entry-content {
    display: block
}

.elementor-widget-wrap {
    display: contents
}

.has-text-align-center {
    text-align: center
}

.wp-caption {
    border: none;
    background: none
}

.screen-reader-text {
    position: absolute;
    left: -9999px
}

.vfd {
    overflow: hidden;
}

.vfd a {
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.vfd p,
.vfd li,
.vfd td {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {
    .vfd {
        padding-left: 14px;
        padding-right: 14px;
    }

    .vfd h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .vfd h2 {
        font-size: 20px;
        line-height: 1.35;
        margin-top: 28px;
    }

    .vfd p,
    .vfd li {
        font-size: 14px;
        line-height: 1.7;
    }

    .vfd a {
        font-size: 13px;
        line-height: 1.5;
        word-break: break-all;
    }

    .vfd ul,
    .vfd ol {
        padding-left: 18px;
    }

    .vfd table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .vfd {
        padding-left: 10px;
        padding-right: 10px;
    }

    .vfd h1 {
        font-size: 21px;
    }

    .vfd h2 {
        font-size: 18px;
    }

    .vfd a {
        font-size: 12.5px;
    }
}