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

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

:root {
    --c-bg: #131313;
    --c-header: #181818;
    --c-btn-dark: #0E0E10;
    --c-btn-gold: #FFD52F;
    --c-gold: #FFD52F;
    --c-text: #e8e8e8;
    --c-muted: #9a9a9a;
    --c-border: #2a2a2a;
    --c-card: #1c1c1e;
    --c-card2: #1f1f21;
    --r: 12px;
    --r-sm: 8px;
    --tr: 0.3s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(255, 213, 47, 0.2);
}

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh
}

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

.site-main {
    flex: 1
}

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

.x7k2m {
    position: relative
}

.q9p3r {
    display: none
}

.z1k5m {
    visibility: hidden;
    position: absolute;
    height: 0;
    overflow: hidden
}

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

a:hover {
    color: #ffe066
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--r-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all var(--tr);
    text-decoration: none;
    white-space: nowrap;
    gap: 6px
}

.btn--dark {
    background: var(--c-btn-dark);
    color: #fff;
    border: 1px solid #333
}

.btn--dark:hover {
    background: #1a1a1c;
    color: #fff;
    border-color: #444;
    transform: translateY(-1px)
}

.btn--gold {
    background: var(--c-btn-gold);
    color: #0E0E10;
    font-weight: 800
}

.btn--gold:hover {
    background: #ffe850;
    color: #0E0E10;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold)
}

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

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

.section-block {
    margin: 48px 0;
    border-radius: var(--r);
    background: var(--c-card);
    padding: 36px;
    box-shadow: var(--shadow)
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--c-gold) 0%, transparent 100%)
}

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

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    min-height: 70px
}

.header-logo {
    flex-shrink: 0
}

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

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

.header-nav a {
    color: var(--c-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all var(--tr);
    white-space: nowrap
}

.header-nav a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06)
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 213, 47, 0.08);
    border: 1px solid rgba(255, 213, 47, 0.2);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--c-gold);
    font-weight: 600;
    white-space: nowrap
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0.6;
        transform: scale(0.8)
    }
}

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

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

.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-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/zet-banner.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 14, 0.92) 0%, rgba(13, 13, 14, 0.7) 60%, rgba(255, 213, 47, 0.08) 100%);
    z-index: 1
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 213, 47, 0.12);
    border: 1px solid rgba(255, 213, 47, 0.3);
    color: var(--c-gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase
}

.hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff
}

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

.hero-subtitle {
    font-size: 17px;
    color: rgba(232, 232, 232, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 540px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.hero-bonus {
    font-size: 13px;
    color: var(--c-muted);
    margin-top: 16px
}

.hero-bonus strong {
    color: var(--c-gold)
}

.r3m8n-stat {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap
}

.r3m8n-stat-item {
    text-align: center
}

.r3m8n-stat-item strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--c-gold)
}

.r3m8n-stat-item span {
    font-size: 12px;
    color: var(--c-muted)
}

.z5t1k {
    background: linear-gradient(135deg, #1c1c1e 0%, #1f1e20 100%)
}

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

.w6k2p {
    background: linear-gradient(145deg, #242426, #1a1a1c);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.w6k2p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--r) var(--r) 0 0
}

.w6k2p.mega::before {
    background: linear-gradient(90deg, #ff6b00, #FFD52F)
}

.w6k2p.major::before {
    background: linear-gradient(90deg, #7c3aed, #db2777)
}

.w6k2p.mini::before {
    background: linear-gradient(90deg, #0891b2, #059669)
}

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

.jackpot-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-muted);
    margin-bottom: 10px
}

.jackpot-icon {
    font-size: 36px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 12px rgba(255, 213, 47, 0.4))
}

.jackpot-amount {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px
}

.jackpot-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-muted);
    margin-top: 4px
}

.p8w4j {
    background: linear-gradient(135deg, #1c1c1e 0%, #1e1d1f 100%)
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-sm)
}

.s4m8q {
    width: 100%;
    border-collapse: collapse
}

.s4m8q thead tr {
    background: #242426;
    border-bottom: 2px solid var(--c-border)
}

.s4m8q th {
    padding: 13px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--c-muted);
    text-align: left;
    white-space: nowrap
}

.s4m8q tbody tr {
    border-bottom: 1px solid rgba(42, 42, 42, 0.6);
    transition: background var(--tr)
}

.s4m8q tbody tr:hover {
    background: rgba(255, 213, 47, 0.04)
}

.s4m8q tbody tr:nth-child(-n+3) {
    background: rgba(255, 213, 47, 0.03)
}

.s4m8q td {
    padding: 13px 16px;
    font-size: 14px;
    color: var(--c-text);
    white-space: nowrap
}

.winner-rank {
    font-weight: 800;
    color: var(--c-muted);
    font-size: 13px;
    width: 36px
}

.winner-rank.top1 {
    color: #FFD52F
}

.winner-rank.top2 {
    color: #C0C0C0
}

.winner-rank.top3 {
    color: #CD7F32
}

.winner-nick {
    font-weight: 600;
    color: var(--c-text)
}

.winner-game {
    color: var(--c-muted);
    font-size: 13px
}

.winner-amount {
    font-weight: 700;
    color: #22c55e;
    text-align: right
}

.medal {
    margin-right: 4px
}

.v2n7q {
    background: linear-gradient(135deg, #1c1c1e 0%, #1e1f1d 100%)
}

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

.t1r9x {
    background: linear-gradient(145deg, #242426, #1c1c1e);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    transition: transform var(--tr), box-shadow var(--tr);
    display: flex;
    flex-direction: column
}

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

.tournament-header {
    padding: 20px 20px 16px;
    background: linear-gradient(135deg, #242426, #1f1f21)
}

.tournament-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px
}

.tournament-badge.hot {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3)
}

.tournament-badge.vip {
    background: rgba(255, 213, 47, 0.12);
    color: var(--c-gold);
    border: 1px solid rgba(255, 213, 47, 0.2)
}

.tournament-badge.new {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2)
}

.tournament-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 8px
}

.tournament-desc {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.5
}

.tournament-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.tournament-prize {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 213, 47, 0.07);
    border: 1px solid rgba(255, 213, 47, 0.15);
    border-radius: var(--r-sm);
    padding: 12px 16px
}

.tournament-prize-label {
    font-size: 11px;
    color: var(--c-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.tournament-prize-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-gold)
}

.tournament-timer {
    display: flex;
    gap: 8px;
    justify-content: center
}

.timer-unit {
    text-align: center;
    background: #1a1a1c;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 8px 12px;
    min-width: 52px
}

.timer-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums
}

.timer-label {
    display: block;
    font-size: 9px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px
}

.tournament-btn {
    margin-top: auto
}

.h6x3s {
    background: linear-gradient(135deg, #1c1c1e 0%, #1e1f20 100%)
}

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

.app-table-wrap {
    overflow-x: auto;
    border-radius: var(--r-sm)
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left
}

.app-table tr {
    border-bottom: 1px solid var(--c-border)
}

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

.app-table th {
    padding: 12px 16px;
    font-size: 12px;
    color: var(--c-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #1a1a1c;
    width: 45%
}

.app-table td {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text)
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.app-download-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 4px
}

.app-download-sub {
    font-size: 13px;
    color: var(--c-muted)
}

.download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #242426;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 12px 20px;
    color: var(--c-text);
    text-decoration: none;
    transition: all var(--tr);
    font-weight: 600;
    font-size: 14px
}

.download-btn:hover {
    background: #2d2d2f;
    border-color: #444;
    color: #fff;
    transform: translateX(4px)
}

.download-btn-icon {
    font-size: 24px;
    width: 36px;
    text-align: center
}

.download-btn-text small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.m9k5v {
    background: linear-gradient(135deg, #1a1a1c 0%, #1c1d1e 100%);
    text-align: center
}

.slot-machine {
    display: inline-block;
    background: #0d0d0e;
    border: 2px solid #333;
    border-radius: 16px;
    padding: 32px;
    box-shadow: inset 0 4px 24px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 213, 47, 0.06)
}

.slot-reels {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    position: relative
}

.slot-reels::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    right: -12px;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 14, 0.8) 0%, transparent 25%, transparent 75%, rgba(13, 13, 14, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 10px
}

.reel {
    width: 80px;
    height: 80px;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    background: #1a1a1c;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.reel-symbol {
    font-size: 40px;
    line-height: 1;
    transition: none;
    user-select: none
}

.reel.spinning .reel-symbol {
    animation: reel-spin 0.15s linear infinite
}

@keyframes reel-spin {
    0% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(-4px)
    }
    75% {
        transform: translateY(4px)
    }
    100% {
        transform: translateY(0)
    }
}

.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.slot-spin-btn {
    font-size: 16px;
    padding: 14px 48px;
    border-radius: 10px;
    transition: all var(--tr);
    position: relative;
    overflow: hidden
}

.slot-spin-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1));
    pointer-events: none
}

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

.slot-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.slot-result-text {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--r-sm);
    display: none
}

.slot-result-text.win {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    animation: win-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.slot-result-text.lose {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171
}

@keyframes win-pop {
    0% {
        transform: scale(0.8);
        opacity: 0
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

.slot-win-action {
    display: none
}

.slot-win-action.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.slot-credit {
    font-size: 12px;
    color: var(--c-muted)
}

.c4r7b {
    background: var(--c-card)
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #242426;
    border-radius: var(--r-sm);
    margin-bottom: 28px;
    border: 1px solid var(--c-border)
}

.review-author-ava {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.review-author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text)
}

.review-author-title {
    font-size: 12px;
    color: var(--c-muted);
    margin-top: 2px
}

.review-author-link {
    font-size: 12px;
    color: var(--c-gold)
}

.review-content {
    color: var(--c-text);
    line-height: 1.8;
    font-size: 15px
}

.review-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-text);
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-border)
}

.review-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
    margin: 20px 0 10px
}

.review-content p {
    margin-bottom: 16px
}

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

.review-content li {
    margin-bottom: 8px
}

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

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

.review-content table th {
    background: #242426;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--c-border)
}

.review-content table td {
    padding: 12px 16px;
    border: 1px solid var(--c-border);
    font-size: 14px;
    vertical-align: top
}

.review-content blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 14px 20px;
    background: rgba(255, 213, 47, 0.06);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 16px 0;
    font-style: italic
}

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

.n2w8p {
    background: linear-gradient(135deg, #1c1c1e 0%, #1e1d1f 100%)
}

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

.faq-item {
    background: #1f1f21;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: border-color var(--tr)
}

.faq-item.open {
    border-color: rgba(255, 213, 47, 0.3)
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--c-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: background var(--tr)
}

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

.faq-chevron {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 213, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--tr), background var(--tr)
}

.faq-chevron svg {
    width: 12px;
    height: 12px;
    stroke: var(--c-gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--tr)
}

.faq-item.open .faq-chevron {
    background: rgba(255, 213, 47, 0.15)
}

.faq-item.open .faq-chevron svg {
    transform: rotate(180deg)
}

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

.faq-answer-inner {
    padding: 0 20px 20px;
    color: var(--c-muted);
    font-size: 14px;
    line-height: 1.7
}

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

footer, .f7b3n {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    margin-top: 0
}

.footer-inner {
    padding: 48px 0 28px
}

.footer-top {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 36px
}

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px
}

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

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

.footer-payments {
    margin-bottom: 28px
}

.footer-payments-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-muted);
    margin-bottom: 12px
}

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

.footer-logo-badge {
    background: #242426;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-muted);
    white-space: nowrap
}

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

.footer-legal {
    font-size: 11px;
    color: rgba(154, 154, 154, 0.7);
    line-height: 1.6;
    max-width: 820px
}

.footer-copy {
    font-size: 12px;
    color: var(--c-muted);
    margin-bottom: 12px
}

.b5k1m {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0E0E10 0%, #1a1a1c 100%);
    border-top: 2px solid var(--c-gold);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6)
}

.b5k1m-text {
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

.b5k1m-text span {
    color: var(--c-gold)
}

.b5k1m-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-muted);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 4px 8px;
    transition: color var(--tr)
}

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

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards
}

.fade-in.d1 {
    animation-delay: 0.1s
}

.fade-in.d2 {
    animation-delay: 0.2s
}

.fade-in.d3 {
    animation-delay: 0.3s
}

.entry-content .wp-block-paragraph {
    margin-bottom: 16px
}

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

.wp-element-caption {
    font-size: 12px;
    color: var(--c-muted);
    text-align: center;
    margin-top: 8px
}

.elementor-widget-container {
    width: 100%
}

.post-thumbnail {
    display: block;
    margin-bottom: 24px;
    border-radius: var(--r)
}

.e-n-tab-title {
    display: none
}

.elementor-hidden {
    display: none
}

.wp-caption {
    max-width: 100%;
    margin: 0 auto 20px;
    text-align: center
}

.x3p7q2 {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none
}

.a1b2c3 {
    font-size: 0;
    color: transparent;
    line-height: 0;
    position: absolute;
    left: -9999px
}

.k8m3v9 {
    appearance: none;
    -webkit-appearance: none
}

.q7n2k5 {
    opacity: 0;
    pointer-events: none;
    position: absolute
}

.m4r8p1 {
    display: table;
    table-layout: fixed;
    width: 0;
    height: 0
}

.z9w6t4 {
    font-variant: small-caps;
    text-transform: capitalize;
    letter-spacing: 0
}

@media (max-width: 1024px) {
    .jackpots-grid {
        grid-template-columns:repeat(3, 1fr)
    }

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

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

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto auto;
        position: relative
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-header);
        border-top: 1px solid var(--c-border);
        border-bottom: 1px solid var(--c-border);
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5)
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        padding: 10px 16px;
        width: 100%;
        border-radius: var(--r-sm)
    }

    .header-right {
        gap: 6px
    }

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

    .burger {
        display: flex
    }

    .hero-content {
        padding: 56px 0
    }

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

    .tournaments-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory
    }

    .t1r9x {
        min-width: 280px;
        scroll-snap-align: start
    }

    .section-block {
        padding: 24px 20px;
        margin: 28px 0
    }

    .section-title {
        font-size: 20px
    }

    .footer-top {
        grid-template-columns:1fr
    }

    .b5k1m {
        padding: 10px 16px;
        gap: 10px
    }

    .b5k1m-text {
        font-size: 13px
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .r3m8n-stat {
        gap: 20px
    }
}

@media (max-width: 480px) {
    .section-block {
        border-radius: var(--r-sm)
    }

    .jackpot-amount {
        font-size: 28px
    }

    .hero-content h1 {
        font-size: 26px
    }

    .slot-machine {
        padding: 20px
    }

    .reel {
        width: 66px;
        height: 66px
    }

    .reel-symbol {
        font-size: 32px
    }

    .s4m8q th, .s4m8q td {
        padding: 10px 12px
    }
}
