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

:root {
    --c-bg: #0e0e0e;
    --c-surface: #1b1c1d;
    --c-surface2: #222325;
    --c-surface3: #2a2b2d;
    --c-red: #e50539;
    --c-red-h: #c8032f;
    --c-green: #28a909;
    --c-green-h: #1f8a07;
    --c-text: #e8e8e8;
    --c-text-muted: #a0a0a8;
    --c-border: #2e2f32;
    --c-gold: #f5b731;
    --c-gold-light: #ffd96a;
    --r-card: 12px;
    --r-btn: 8px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .5);
    --shadow-glow-red: 0 0 20px rgba(229, 5, 57, .25);
    --shadow-glow-green: 0 0 20px rgba(40, 169, 9, .25);
    --transition: all .25s ease;
}

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-width: 320px
}

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

a:hover {
    color: var(--c-red-h)
}

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

ul, ol {
    list-style: none
}

input, button, select, textarea {
    font-family: inherit
}

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

.header-inner {
    width: 100%
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px
}

.header-left {
    flex-shrink: 0
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center
}

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

.site-logo-img {
    height: 36px;
    width: auto;
    display: block
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: var(--c-text-muted);
    font-size: .85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap
}

.nav-link:hover, .nav-link.active {
    color: var(--c-text);
    background: var(--c-surface3)
}

.header-online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--c-text-muted);
    background: var(--c-surface2);
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap
}

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

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 169, 9, .7)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(40, 169, 9, 0)
    }
}

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

.btn-hdr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--r-btn);
    font-size: .82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.btn-hdr-login {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-border)
}

.btn-hdr-login:hover {
    background: var(--c-surface3);
    color: var(--c-text);
    border-color: var(--c-text-muted)
}

.btn-hdr-reg {
    background: var(--c-green);
    color: #fff
}

.btn-hdr-reg:hover {
    background: var(--c-green-h);
    color: #fff;
    box-shadow: var(--shadow-glow-green)
}

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

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

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

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

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--c-surface);
    z-index: 1200;
    transition: right .3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0 0 24px
}

.mobile-menu.open {
    right: 0
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-border)
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 4px
}

.mobile-nav-links {
    padding: 12px 0;
    list-style: none
}

.mobile-nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--c-text-muted);
    font-size: .95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--c-border);
    transition: var(--transition)
}

.mobile-nav-link:hover {
    color: var(--c-text);
    background: var(--c-surface2);
    padding-left: 24px
}

.mobile-menu-cta {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.btn-mobile {
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: var(--r-btn);
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition)
}

.btn-mobile-login {
    background: var(--c-surface3);
    color: var(--c-text);
    border: 1px solid var(--c-border)
}

.btn-mobile-reg {
    background: var(--c-green);
    color: #fff
}

.btn-mobile-reg:hover {
    background: var(--c-green-h);
    color: #fff
}

.mobile-menu-online {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    font-size: .82rem;
    color: var(--c-text-muted)
}

.site-content {
    padding-bottom: 60px
}

.page-section {
    padding: 60px 0
}

.page-section + .page-section {
    padding-top: 0
}

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

.section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 8px;
    line-height: 1.25;
    text-wrap: balance
}

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

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

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-surface) url('/banner.jpg') center/cover no-repeat
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 14, 14, .92) 40%, rgba(14, 14, 14, .5) 100%)
}

@media (max-width: 768px) {
    .hero-section::before {
        background: rgba(14, 14, 14, .82)
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap
}

.hero-content {
    flex: 1;
    min-width: 260px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .3);
    color: var(--c-red);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .04em
}

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

.hero-title span {
    color: var(--c-red)
}

.hero-desc {
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 480px
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.hero-stat {
    display: flex;
    flex-direction: column
}

.hero-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-gold)
}

.hero-stat-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--c-red);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--r-btn);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none
}

.btn-primary:hover {
    background: var(--c-red-h);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-red)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--c-green);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--r-btn);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none
}

.btn-secondary:hover {
    background: var(--c-green-h);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green)
}

.hero-promo-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-card);
    padding: 24px;
    box-shadow: var(--shadow-card)
}

@media (max-width: 900px) {
    .hero-promo-card {
        width: 100%
    }
}

.promo-card-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    font-weight: 600
}

.promo-code-box {
    background: var(--c-surface2);
    border: 1px dashed var(--c-red);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px
}

.promo-code-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: .1em;
    font-family: 'Inter', monospace
}

.promo-copy-btn {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
    flex-shrink: 0
}

.promo-copy-btn:hover {
    color: var(--c-gold)
}

.promo-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--c-green);
    background: rgba(40, 169, 9, .1);
    border: 1px solid rgba(40, 169, 9, .25);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 16px
}

.promo-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-green);
    animation: pulse-green 2s infinite
}

.promo-timer {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 5px
}

.promo-timer svg {
    color: var(--c-red)
}

.promo-btns {
    display: flex;
    gap: 8px;
    flex-direction: column
}

.btn-promo-activate {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--c-red);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    border-radius: var(--r-btn);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%
}

.btn-promo-activate:hover {
    background: var(--c-red-h);
    color: #fff;
    box-shadow: var(--shadow-glow-red)
}

.btn-promo-copy {
    display: block;
    text-align: center;
    padding: 10px;
    background: transparent;
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: .85rem;
    border-radius: var(--r-btn);
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: var(--transition)
}

.btn-promo-copy:hover {
    background: var(--c-surface3);
    color: var(--c-text)
}

.copy-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.copy-toast.show {
    opacity: 1
}

.jackpots-section {
    padding: 60px 0
}

.jackpots-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.jackpot-card {
    flex: 1;
    min-width: 240px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition)
}

.jackpot-card:hover {
    transform: translateY(-4px)
}

.jackpot-card.gold {
    border-color: rgba(245, 183, 49, .35)
}

.jackpot-card.silver {
    border-color: rgba(192, 192, 192, .25)
}

.jackpot-card.bronze {
    border-color: rgba(205, 127, 50, .25)
}

.jackpot-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.jackpot-card.gold .jackpot-header {
    background: linear-gradient(135deg, rgba(245, 183, 49, .12), rgba(245, 183, 49, .04))
}

.jackpot-card.silver .jackpot-header {
    background: linear-gradient(135deg, rgba(192, 192, 192, .1), rgba(192, 192, 192, .03))
}

.jackpot-card.bronze .jackpot-header {
    background: linear-gradient(135deg, rgba(205, 127, 50, .1), rgba(205, 127, 50, .03))
}

.jackpot-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.jackpot-card.gold .jackpot-icon {
    background: rgba(245, 183, 49, .15);
    color: var(--c-gold)
}

.jackpot-card.silver .jackpot-icon {
    background: rgba(192, 192, 192, .1);
    color: #c0c0c0
}

.jackpot-card.bronze .jackpot-icon {
    background: rgba(205, 127, 50, .1);
    color: #cd7f32
}

.jackpot-info {
    flex: 1
}

.jackpot-level {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    font-weight: 600
}

.jackpot-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text)
}

.jackpot-amount {
    padding: 16px 20px 8px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: 1
}

.jackpot-card.gold .jackpot-amount {
    color: var(--c-gold)
}

.jackpot-card.silver .jackpot-amount {
    color: #d0d0d0
}

.jackpot-card.bronze .jackpot-amount {
    color: #cd7f32
}

.jackpot-currency {
    font-size: .85rem;
    color: var(--c-text-muted);
    padding: 0 20px 16px;
    font-weight: 500
}

.jackpot-players {
    padding: 0 20px 16px;
    border-top: 1px solid var(--c-border);
    padding-top: 12px
}

.jackpot-players-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    font-weight: 600
}

.jackpot-player-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: .82rem
}

.jackpot-player-rank {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 20px
}

.jackpot-player-nick {
    color: var(--c-text);
    flex: 1;
    padding: 0 8px
}

.jackpot-player-win {
    color: var(--c-green);
    font-weight: 700;
    font-size: .8rem
}

.winners-section {
    padding: 60px 0
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-card);
    border: 1px solid var(--c-border);
    background: var(--c-surface)
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.winners-table thead tr {
    background: var(--c-surface2)
}

.winners-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap
}

.winners-table td {
    padding: 11px 16px;
    font-size: .88rem;
    border-top: 1px solid var(--c-border);
    vertical-align: middle
}

.winners-table tr:hover td {
    background: var(--c-surface2)
}

.w-rank {
    font-weight: 700;
    color: var(--c-text-muted);
    width: 40px
}

.w-rank.top1 {
    color: var(--c-gold)
}

.w-rank.top2 {
    color: #c0c0c0
}

.w-rank.top3 {
    color: #cd7f32
}

.w-nick {
    color: var(--c-text);
    font-weight: 500
}

.w-mult {
    color: var(--c-red);
    font-weight: 700
}

.w-amount {
    color: var(--c-green);
    font-weight: 700
}

.w-time {
    color: var(--c-text-muted);
    font-size: .78rem
}

.bonuses-section {
    padding: 60px 0
}

.bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.bonus-card {
    flex: 1;
    min-width: 260px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: var(--transition)
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 5, 57, .3)
}

.bonus-card-top {
    padding: 20px;
    background: var(--c-surface2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.bonus-casino-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text)
}

.bonus-casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    color: var(--c-gold);
    font-weight: 600
}

.bonus-amount-block {
    padding: 20px;
    flex: 1
}

.bonus-amount-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    margin-bottom: 4px;
    font-weight: 600
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1.1
}

.bonus-desc {
    font-size: .83rem;
    color: var(--c-text-muted);
    margin-top: 8px;
    line-height: 1.5
}

.bonus-features {
    padding: 0 20px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.bonus-tag {
    font-size: .72rem;
    padding: 3px 9px;
    background: var(--c-surface3);
    color: var(--c-text-muted);
    border-radius: 4px;
    font-weight: 500
}

.bonus-promo {
    padding: 0 20px 16px
}

.bonus-promo-label {
    font-size: .72rem;
    color: var(--c-text-muted);
    margin-bottom: 5px;
    font-weight: 500
}

.bonus-promo-code {
    background: var(--c-surface2);
    border: 1px dashed var(--c-border);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.bonus-promo-val {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: .08em
}

.bonus-copy-btn {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 2px;
    transition: var(--transition);
    flex-shrink: 0
}

.bonus-copy-btn:hover {
    color: var(--c-gold)
}

.bonus-cta {
    padding: 0 20px 20px
}

.btn-bonus-cta {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--c-green);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    border-radius: var(--r-btn);
    transition: var(--transition)
}

.btn-bonus-cta:hover {
    background: var(--c-green-h);
    color: #fff;
    box-shadow: var(--shadow-glow-green)
}

.bonus-wagering {
    padding: 0 20px 16px;
    font-size: .75rem;
    color: var(--c-text-muted)
}

.demo-section {
    padding: 60px 0
}

.demo-wrapper {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-card)
}

.demo-header {
    padding: 20px 24px;
    background: var(--c-surface2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.demo-header-info {
    display: flex;
    align-items: center;
    gap: 12px
}

.demo-game-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 5, 57, .1);
    border: 1px solid rgba(229, 5, 57, .2);
    padding: 5px 12px;
    border-radius: 6px
}

.demo-game-badge span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-red)
}

.demo-game-meta {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.demo-game-meta strong {
    color: var(--c-text)
}

.demo-cta-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-demo-money {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--c-red);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    border-radius: var(--r-btn);
    transition: var(--transition)
}

.btn-demo-money:hover {
    background: var(--c-red-h);
    color: #fff;
    box-shadow: var(--shadow-glow-red)
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000
}

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

.demo-footer {
    padding: 16px 24px;
    background: var(--c-surface2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .8rem;
    color: var(--c-text-muted)
}

.demo-footer a {
    color: var(--c-red)
}

.demo-footer a:hover {
    color: var(--c-red-h)
}

.faq-section {
    padding: 60px 0
}

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

.faq-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-card);
    overflow: hidden;
    transition: var(--transition)
}

.faq-item.open {
    border-color: rgba(229, 5, 57, .3)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: var(--c-text);
    transition: var(--transition);
    user-select: none
}

.faq-question:hover {
    background: var(--c-surface2)
}

.faq-item.open .faq-question {
    background: var(--c-surface2);
    color: var(--c-red)
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform .3s ease;
    color: var(--c-text-muted)
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--c-red)
}

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

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

.faq-answer-inner {
    padding: 16px 20px 20px;
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    border-top: 1px solid var(--c-border)
}

.content-section {
    padding: 60px 0
}

.content-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-card);
    padding: 32px;
    box-shadow: var(--shadow-card)
}

.content-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--c-surface2);
    border-radius: 8px;
    margin-bottom: 24px
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-surface3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--c-red);
    font-size: 1rem;
    flex-shrink: 0;
    border: 2px solid rgba(229, 5, 57, .3)
}

.author-info {
    flex: 1
}

.author-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--c-text)
}

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

.author-link {
    font-size: .75rem;
    color: var(--c-red)
}

.author-link:hover {
    color: var(--c-red-h)
}

.content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block h5, .content-block h6 {
    color: var(--c-text);
    font-weight: 700;
    line-height: 1.3;
    margin: 24px 0 12px;
    text-wrap: balance
}

.content-block h1 {
    font-size: 1.65rem
}

.content-block h2 {
    font-size: 1.35rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 8px
}

.content-block h3 {
    font-size: 1.15rem
}

.content-block h4 {
    font-size: 1rem;
    color: var(--c-text-muted)
}

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

.content-block ul, .content-block ol {
    color: var(--c-text-muted);
    margin: 12px 0 16px 20px;
    font-size: .93rem;
    line-height: 1.7
}

.content-block ul li {
    list-style: disc;
    margin-bottom: 6px
}

.content-block ol li {
    list-style: decimal;
    margin-bottom: 6px
}

.content-block a {
    color: var(--c-red)
}

.content-block a:hover {
    color: var(--c-red-h)
}

.content-block strong, .content-block b {
    color: var(--c-text);
    font-weight: 600
}

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

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

.content-block table th {
    background: var(--c-surface2);
    color: var(--c-text);
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    white-space: nowrap
}

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

.content-block table tr:nth-child(even) td {
    background: var(--c-surface2)
}

.content-block blockquote {
    border-left: 3px solid var(--c-red);
    padding: 12px 16px;
    background: var(--c-surface2);
    margin: 16px 0;
    border-radius: 0 6px 6px 0;
    color: var(--c-text-muted);
    font-style: italic
}

.content-block code {
    background: var(--c-surface3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: .85em;
    color: var(--c-gold)
}

.content-block pre {
    background: var(--c-surface3);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 14px 0
}

.content-block pre code {
    background: none;
    padding: 0
}

.content-block hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0
}

.content-block img {
    border-radius: 8px;
    margin: 12px 0
}

.footer-inner {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0
}

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

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 32px
}

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

.footer-tagline {
    font-size: .83rem;
    color: var(--c-text-muted);
    margin-top: 12px;
    line-height: 1.5;
    max-width: 260px
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    color: var(--c-text-muted);
    transition: var(--transition)
}

.footer-social-link:hover {
    background: var(--c-surface3);
    color: var(--c-text)
}

.footer-nav-col {
    min-width: 130px
}

.footer-nav-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    font-weight: 600
}

.footer-nav-list li {
    margin-bottom: 8px
}

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

.footer-nav-link:hover {
    color: var(--c-text)
}

.footer-divider {
    height: 1px;
    background: var(--c-border);
    margin: 0 0 24px
}

.footer-payments, .footer-trust {
    padding-bottom: 24px
}

.footer-section-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    font-weight: 600
}

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

.footer-payment-badge, .footer-trust-badge {
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 4px 8px;
    transition: var(--transition);
    display: flex;
    align-items: center
}

.footer-payment-badge:hover, .footer-trust-badge:hover {
    border-color: rgba(229, 5, 57, .3)
}

.footer-trust-row {
    margin-bottom: 16px
}

.footer-provider-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-provider-link {
    display: flex;
    align-items: center
}

.footer-spribe-logo {
    filter: brightness(0.9);
    transition: var(--transition);
    border-radius: 4px
}

.footer-spribe-logo:hover {
    filter: brightness(1)
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0 32px
}

.footer-copyright {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-bottom: 8px
}

.footer-disclaimer {
    font-size: .75rem;
    color: #666;
    line-height: 1.55;
    max-width: 680px;
    margin-bottom: 12px
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px
}

.footer-legal-link {
    font-size: .78rem;
    color: #666;
    transition: var(--transition)
}

.footer-legal-link:hover {
    color: var(--c-text-muted)
}

.footer-resp-gambling {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap
}

.resp-item {
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px
}

.fw-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.fw-bonus-label {
    font-size: .82rem;
    color: var(--c-text-muted);
    font-weight: 500
}

.fw-bonus-amount {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-gold)
}

.fw-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--c-green);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    border-radius: var(--r-btn);
    transition: var(--transition)
}

.fw-cta-btn:hover {
    background: var(--c-green-h);
    color: #fff;
    box-shadow: var(--shadow-glow-green)
}

.fw-close-btn {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
    transition: var(--transition)
}

.fw-close-btn:hover {
    color: var(--c-text)
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

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

@media (max-width: 1024px) {
    .header-center {
        display: none
    }

    .burger-btn {
        display: flex
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 56px;
        gap: 10px
    }

    .header-online-count {
        display: none
    }

    .hero-inner {
        padding: 48px 16px;
        flex-direction: column
    }

    .hero-promo-card {
        width: 100%
    }

    .jackpots-grid, .bonuses-grid {
        flex-direction: column
    }

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

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

    .section-title {
        font-size: 1.35rem
    }

    .page-section {
        padding: 40px 0
    }

    .fw-bonus-label {
        display: none
    }
}

@media (max-width: 480px) {
    .btn-primary, .btn-secondary {
        padding: 12px 18px;
        font-size: .9rem
    }

    .hero-stats {
        gap: 16px
    }

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

.elementor-widget-container, .wp-block-cover {
    display: none !important
}

.wp-content-placeholder, .yoast-schema-graph {
    display: none !important
}

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

.container.aksj h1 {
    font-size: clamp(1.55rem, 4.8vw, 2.35rem);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--c-text);
    text-wrap: balance;
}

.container.aksj h2 {
    font-size: clamp(1.18rem, 3.3vw, 1.55rem);
    line-height: 1.25;
    margin: 26px 0 10px;
    color: var(--c-text);
    text-wrap: balance;
}

.container.aksj h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 20px 0 8px;
    color: var(--c-text);
}

.container.aksj p {
    margin: 0 0 14px;
    color: rgba(160, 160, 168, .95);
    font-size: .98rem;
    line-height: 1.75;
}

.container.aksj a {
    color: var(--c-red);
    font-weight: 700;
    text-decoration: none;
}

.container.aksj a:hover {
    color: var(--c-red-h);
}

.container.aksj ul,
.container.aksj ol {
    margin: 10px 0 16px 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.container.aksj ul {
    list-style: disc
}

.container.aksj ol {
    list-style: decimal
}

.container.aksj li {
    color: rgba(160, 160, 168, .95);
    font-size: .95rem;
    line-height: 1.7;
}

.container.aksj strong,
.container.aksj b {
    color: var(--c-text);
    font-weight: 700;
}

.container.aksj blockquote {
    margin: 16px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--c-red);
    background: rgba(255, 255, 255, .03);
    border-radius: 0 10px 10px 0;
    color: rgba(160, 160, 168, .95);
}

.container.aksj hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 22px 0;
}

.container.aksj table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0 18px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    overflow: hidden;
    display: table;
}

.container.aksj table thead tr,
.container.aksj table tr:first-child {
    background: rgba(255, 255, 255, .03);
}

.container.aksj table th {
    text-align: left;
    padding: 12px 14px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(160, 160, 168, .95);
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.container.aksj table td {
    padding: 12px 14px;
    font-size: .92rem;
    color: rgba(232, 232, 232, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.container.aksj table tr td:first-child {
    color: rgba(170, 170, 178, .95);
    font-weight: 700;
    width: 42%;
}

.container.aksj table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.container.aksj table tr:last-child td {
    border-bottom: none;
}

.container.aksj table td,
.container.aksj table th {
    background-clip: padding-box;
}

.container.aksj img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.container.aksj pre {
    margin: 14px 0 16px;
    padding: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    overflow: auto;
}

.container.aksj code {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2px 6px;
    border-radius: 6px;
    color: var(--c-gold);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .9em;
}

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

    .container.aksj p {
        font-size: .96rem
    }

    .container.aksj table td {
        font-size: .9rem
    }
}

@media (max-width: 640px) {
    .container.aksj h1 {
        margin-bottom: 12px
    }

    .container.aksj h2 {
        margin: 22px 0 10px
    }

    .container.aksj ul,
    .container.aksj ol {
        margin-left: 16px
    }

    .container.aksj table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    .container.aksj table th,
    .container.aksj table td {
        padding: 11px 12px;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .container.aksj {
        padding: 0 12px
    }

    .container.aksj p {
        font-size: .94rem;
        line-height: 1.7
    }

    .container.aksj table th {
        font-size: .74rem
    }

    .container.aksj table th,
    .container.aksj table td {
        padding: 10px 10px
    }
}

.container.aksj table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 18px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    overflow: hidden;
}

.container.aksj table th,
.container.aksj table td {
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 12px 14px;
}

.container.aksj table th {
    background: rgba(255, 255, 255, .04);
    color: rgba(160, 160, 168, .95);
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: left;
}

.container.aksj table td {
    background: transparent;
    color: rgba(232, 232, 232, .92);
    font-size: .92rem;
}

.container.aksj table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

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

@media (max-width: 768px) {
    #demo.demo-section {
        padding: 24px 0;
    }

    #demo .demo-wrapper {
        height: calc(100dvh - 24px);
        display: flex;
        flex-direction: column;
    }

    #demo .demo-header {
        flex: 0 0 auto;
        padding: 14px 16px;
    }

    #demo .demo-game-meta {
        display: none;
    }

    #demo .demo-footer {
        flex: 0 0 auto;
        padding: 12px 16px;
        font-size: .82rem;
        gap: 8px;
    }

    #demo .demo-iframe-wrap {
        flex: 1 1 auto;
        height: auto;
        padding-bottom: 0;
        min-height: 0;
    }

    #demo .demo-iframe-wrap iframe {
        position: absolute;
        inset: 0;
    }
}

@media (max-width: 480px) {
    #demo .container-wide {
        padding: 0 12px;
    }

    #demo .demo-wrapper {
        height: calc(100dvh - 20px);
        border-radius: 12px;
    }
}

.aksj {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, .02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

@media (max-width: 768px) {
    .aksj {
        padding: 22px 18px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .aksj {
        padding: 18px 14px;
    }
}