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

:root {
    --clr-bg: #1C1F27;
    --clr-bg2: #232733;
    --clr-bg3: #2a2f3e;
    --clr-surface: #252937;
    --clr-surface2: #2e3447;
    --clr-accent: #A3F322;
    --clr-accent-dim: #8cd91e;
    --clr-accent-glow: rgba(163, 243, 34, 0.18);
    --clr-dark: #1C1F27;
    --clr-text: #e8eaf0;
    --clr-text-muted: #9ba3b8;
    --clr-text-dim: #6b7592;
    --clr-border: rgba(255, 255, 255, 0.07);
    --clr-border2: rgba(163, 243, 34, 0.25);
    --clr-plus: #A3F322;
    --clr-minus: #ff4d6d;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-accent: 0 0 20px rgba(163, 243, 34, 0.22);
    --trans: 0.22s ease;
    --font-main: 'Montserrat', 'Inter', Arial, sans-serif;
    --font-body: 'Inter', 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: var(--clr-accent-dim);
}

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

.x9k2m {
    display: none;
}

.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 1rem;
}

.entry-content {
    display: block;
}

.elementor-widget {
    display: block;
}

.wr-outer {
    width: 100%;
    overflow-x: hidden;
}

.wr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans), opacity var(--trans);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 20px;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-login {
    background: var(--clr-bg3);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}

.btn-login:hover {
    background: var(--clr-surface2);
    color: var(--clr-text);
    box-shadow: var(--shadow);
}

.btn-signup {
    background: var(--clr-accent);
    color: var(--clr-dark);
    box-shadow: 0 0 14px rgba(163, 243, 34, 0.3);
}

.btn-signup:hover {
    background: var(--clr-accent-dim);
    color: var(--clr-dark);
    box-shadow: var(--shadow-accent);
}

.btn-primary {
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    box-shadow: 0 0 20px rgba(163, 243, 34, 0.35);
}

.btn-primary:hover {
    background: var(--clr-accent-dim);
    color: var(--clr-dark);
    box-shadow: 0 0 30px rgba(163, 243, 34, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-text);
    border: 2px solid var(--clr-border);
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius);
}

.btn-secondary:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: translateY(-3px);
}

.btn-dl {
    background: var(--clr-surface2);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
}

.btn-dl:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: var(--clr-bg3);
}

.btn-game {
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    width: 100%;
}

.btn-game:hover {
    background: var(--clr-accent-dim);
    color: var(--clr-dark);
}

.btn-slot-spin {
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-size: 1rem;
    padding: 13px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    box-shadow: 0 0 18px rgba(163, 243, 34, 0.3);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}

.btn-slot-spin:hover {
    background: var(--clr-accent-dim);
    transform: translateY(-2px);
}

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

.btn-win {
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-size: 1rem;
    padding: 13px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    box-shadow: 0 0 20px rgba(163, 243, 34, 0.4);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    animation: pulse-green 1.4s infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 20px rgba(163, 243, 34, 0.4);
    }
    50% {
        box-shadow: 0 0 38px rgba(163, 243, 34, 0.7);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--clr-dark);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

.header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo img {
    height: 38px;
    width: auto;
}

.header-logo-text {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--clr-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.header-nav a {
    font-family: var(--font-main);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color var(--trans), background var(--trans);
}

.header-nav a:hover {
    color: var(--clr-accent);
    background: var(--clr-accent-glow);
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    margin-right: 6px;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-accent);
    animation: blink 1.8s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.burger span {
    display: block;
    height: 2.5px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}

.burger.is-active span:nth-child(1) {
    transform: translateY(8.25px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-8.25px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--clr-dark);
    border-bottom: 1px solid var(--clr-border);
    padding: 16px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.mobile-menu ul a {
    display: block;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    padding: 10px 12px;
    border-radius: 8px;
}

.mobile-menu ul a:hover {
    color: var(--clr-accent);
    background: var(--clr-accent-glow);
}

.mobile-menu-btns {
    display: flex;
    gap: 8px;
}

.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-tur.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 31, 39, 0.92) 45%, rgba(28, 31, 39, 0.3) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-accent-glow);
    border: 1px solid var(--clr-border2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--clr-accent);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(232, 234, 240, 0.82);
    margin-bottom: 28px;
    max-width: 440px;
    line-height: 1.6;
}

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

.section {
    padding: 52px 0;
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

.card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

.card:hover {
    border-color: var(--clr-border2);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}

.pros-cons-grid {
    display: flex;
    gap: 20px;
}

.pros-col, .cons-col {
    flex: 1;
    background: var(--clr-surface);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 22px;
    box-shadow: var(--shadow);
}

.pros-col {
    border-top: 3px solid var(--clr-plus);
}

.cons-col {
    border-top: 3px solid var(--clr-minus);
}

.pros-col h3, .cons-col h3 {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.pros-col h3 {
    color: var(--clr-plus);
}

.cons-col h3 {
    color: var(--clr-minus);
}

.pros-list, .cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--clr-text);
    line-height: 1.5;
}

.pros-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: var(--clr-plus);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231C1F27' d='M3 8l3.5 3.5 6.5-7'/%3E%3C/svg%3E");
    background-size: cover;
}

.cons-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: var(--clr-minus);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M4 12L12 4M4 4l8 8' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
    background-size: cover;
}

.mirror-section .mirror-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.mirror-meta .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(163, 243, 34, 0.12);
    border: 1px solid var(--clr-border2);
    color: var(--clr-accent);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mirror-meta .live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: blink 1.6s infinite;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 0.88rem;
}

thead tr {
    background: var(--clr-bg3);
}

thead th {
    padding: 13px 16px;
    text-align: left;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--clr-border);
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--trans);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: var(--clr-bg3);
}

tbody td {
    padding: 12px 16px;
    color: var(--clr-text);
    vertical-align: middle;
}

.tbl-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--clr-accent);
    color: var(--clr-dark);
    font-weight: 700;
    font-size: 0.78rem;
    border-radius: 6px;
    padding: 5px 13px;
    transition: background var(--trans), transform var(--trans);
    white-space: nowrap;
}

.tbl-link:hover {
    background: var(--clr-accent-dim);
    color: var(--clr-dark);
    transform: translateY(-1px);
}

.status-ok {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--clr-accent);
    font-weight: 600;
}

.status-ok::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.app-section .app-wrap {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
    margin-top: 18px;
}

.app-tbl-wrap {
    flex: 1;
}

.games-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.game-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
    min-width: 160px;
    max-width: calc(16.666% - 14px);
    transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
    cursor: pointer;
}

.game-card:hover {
    border-color: var(--clr-border2);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.game-card-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.game-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.07);
}

.game-card-body {
    padding: 12px;
}

.game-card-name {
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.games-slider-wrap {
    display: none;
}

.slot-machine-wrap {
    max-width: 440px;
    margin: 0 auto;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    text-align: center;
}

.slot-machine-title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 24px;
}

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

.reel {
    width: 80px;
    height: 90px;
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    line-height: 1;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: border-color var(--trans);
}

.reel.spinning {
    animation: reel-spin 0.14s steps(1) infinite;
    border-color: var(--clr-accent);
}

@keyframes reel-spin {
    0% {
        background: var(--clr-bg);
    }
    50% {
        background: var(--clr-bg3);
    }
    100% {
        background: var(--clr-bg);
    }
}

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

.slot-win-text {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-accent);
    animation: fadeInUp 0.4s ease;
}

.slot-lose-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    animation: fadeInUp 0.4s ease;
}

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

.review-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-bg3);
    border: 2px solid var(--clr-border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-meta {
    flex: 1;
}

.author-name {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-text);
}

.author-role {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.author-link {
    font-size: 0.76rem;
    color: var(--clr-accent);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: 3px;
}

.author-link:hover {
    color: var(--clr-accent-dim);
}

.review-content {
    color: var(--clr-text);
    line-height: 1.7;
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4, .review-content h5, .review-content h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--clr-text);
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.3;
}

.review-content h1 {
    font-size: 1.6rem;
}

.review-content h2 {
    font-size: 1.35rem;
    color: var(--clr-accent);
}

.review-content h3 {
    font-size: 1.12rem;
}

.review-content p {
    margin-bottom: 1em;
}

.review-content ul, .review-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.review-content ul li, .review-content ol li {
    margin-bottom: 0.4em;
    line-height: 1.6;
}

.review-content table {
    margin: 1.2em 0;
    width: 100%;
    font-size: 0.88rem;
}

.review-content a {
    color: var(--clr-accent);
}

.review-content a:hover {
    color: var(--clr-accent-dim);
}

.review-content strong {
    color: var(--clr-text);
    font-weight: 700;
}

.review-content em {
    color: var(--clr-text-muted);
}

.review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 18px;
    margin: 1.2em 0;
    background: var(--clr-bg3);
    border-radius: 0 8px 8px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5em 0;
}

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

.faq-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--trans);
}

.faq-item.is-open {
    border-color: var(--clr-border2);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--clr-text);
    user-select: none;
    transition: color var(--trans);
}

.faq-q:hover {
    color: var(--clr-accent);
}

.faq-item.is-open .faq-q {
    color: var(--clr-accent);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--trans), background var(--trans);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--clr-border);
}

.faq-item.is-open .faq-a {
    display: block;
    padding-top: 14px;
}

.site-footer {
    background: var(--clr-dark);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 24px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 34px;
}

.footer-logo-text {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--clr-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
    max-width: 240px;
}

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

.footer-nav-col h4 {
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

.footer-nav-col ul a {
    font-size: 0.82rem;
    color: var(--clr-text-dim);
    transition: color var(--trans);
}

.footer-nav-col ul a:hover {
    color: var(--clr-accent);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center;
}

.payment-badge {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 13px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
}

.provider-badge {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-text-dim);
    letter-spacing: 0.02em;
}

.footer-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 18px;
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
}

.footer-legal {
    font-size: 0.72rem;
    color: var(--clr-text-dim);
    max-width: 520px;
    line-height: 1.55;
    text-align: right;
}

.widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--clr-dark);
    border-top: 1px solid var(--clr-border2);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.widget-bar-text {
    flex: 1;
}

.widget-bar-title {
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--clr-text);
    line-height: 1.3;
}

.widget-bar-bonus {
    font-size: 0.78rem;
    color: var(--clr-accent);
    font-weight: 700;
    margin-top: 1px;
}

.widget-bar-close {
    background: none;
    border: none;
    color: var(--clr-text-dim);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--trans);
}

.widget-bar-close:hover {
    color: var(--clr-text);
}

.section-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 0 auto;
    max-width: 1200px;
}

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

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

.games-slider-mobile {
    display: none;
}

.section-bg-alt {
    background: var(--clr-bg2);
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.c5f8a2 {
    display: none;
    visibility: hidden;
}

.wp-widget-area {
    display: none;
}

.wp-site-blocks {
    display: block;
}

@media (max-width: 900px) {
    .pros-cons-grid {
        flex-direction: column;
    }

    .app-section .app-wrap {
        flex-direction: column;
    }

    .games-grid {
        display: none;
    }

    .games-slider-mobile {
        display: block;
    }

    .game-card {
        min-width: 180px;
        max-width: 220px;
    }

    .footer-top {
        gap: 20px;
    }

    .footer-legal {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-inner {
        height: 60px;
    }

    .mobile-menu {
        top: 60px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .section {
        padding: 36px 0;
    }

    .slot-reels .reel {
        width: 66px;
        height: 76px;
        font-size: 2rem;
    }

    .review-block {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .online-counter {
        display: none;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .slot-machine-wrap {
        padding: 22px 16px;
    }

    .slot-reels .reel {
        width: 60px;
        height: 68px;
        font-size: 1.8rem;
    }

    .widget-bar {
        padding: 10px 12px;
    }
}

.games-slider-mobile {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.games-slider-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.games-slider-track::-webkit-scrollbar {
    display: none;
}

.games-slider-track .game-card {
    flex: 0 0 200px;
    max-width: 200px;
    scroll-snap-align: start;
}

.tbl-status-col {
    white-space: nowrap;
}
