:root {
    --clr-bg: #0B0C10;
    --clr-bg2: #111318;
    --clr-bg3: #16181f;
    --clr-card: #13151c;
    --clr-card2: #1a1d26;
    --clr-border: #2a2d3a;
    --clr-primary: #4AD315;
    --clr-primary-d: #3bb810;
    --clr-primary-glow: rgba(74,211,21,0.18);
    --clr-secondary: #5A5B61;
    --clr-secondary-d: #4a4b51;
    --clr-text: #e8eaf0;
    --clr-text-muted: #8a8d9e;
    --clr-text-dim: #5a5d6e;
    --clr-white: #ffffff;
    --clr-gold: #f5c842;
    --clr-accent: #1ec8d4;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 24px rgba(74,211,21,0.22);
    --font-main: 'Hero New', 'Inter', 'Segoe UI', sans-serif;
    --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

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

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

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1440px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-d); }
ul, ol { list-style: none; }

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

/* ======================== BUTTONS ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(255,255,255,0.08);
    transition: opacity var(--transition);
    border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--primary {
    background: var(--clr-primary);
    color: #0B0C10;
    box-shadow: 0 2px 18px rgba(74,211,21,0.28);
}
.btn--primary:hover {
    background: var(--clr-primary-d);
    box-shadow: var(--shadow-glow);
    color: #0B0C10;
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--clr-secondary);
    color: var(--clr-text);
}
.btn--secondary:hover {
    background: var(--clr-secondary-d);
    color: var(--clr-white);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--clr-primary);
    color: var(--clr-primary);
}
.btn--outline:hover {
    background: var(--clr-primary-glow);
    color: var(--clr-primary);
}

.btn--lg { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 7px 14px; font-size: 0.82rem; }
.btn--full { width: 100%; }

/* ======================== HEADER ======================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    backdrop-filter: blur(12px);
}

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

.header-logo a {
    display: flex;
    align-items: center;
}
.header-logo img {
    height: 42px;
    width: auto;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.nav-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-link:hover { background: var(--clr-bg3); color: var(--clr-text); }
.nav-link.active { color: var(--clr-primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    padding: 5px 10px;
    background: var(--clr-bg3);
    border-radius: 20px;
    border: 1px solid var(--clr-border);
}
.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-primary);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,211,21,0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(74,211,21,0); }
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.burger-btn:hover { background: var(--clr-bg3); }
.burger-line {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity 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 {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-bg);
    z-index: 999;
    padding: 24px 20px;
    overflow-y: auto;
    gap: 8px;
    border-top: 1px solid var(--clr-border);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), visibility 0.3s;
}
.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: var(--clr-text);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    background: var(--clr-card);
    transition: background var(--transition), color var(--transition);
}
.mobile-nav-link svg { width: 18px; height: 18px; color: var(--clr-primary); }
.mobile-nav-link:hover { background: var(--clr-card2); color: var(--clr-primary); }

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.mobile-menu-btns .btn { flex: 1; }

/* ======================== HERO ======================== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-banner.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,12,16,0.92) 0%, rgba(11,12,16,0.65) 60%, rgba(11,12,16,0.3) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 80px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(74,211,21,0.12);
    border: 1px solid rgba(74,211,21,0.3);
    color: var(--clr-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--clr-primary); animation: pulse 2s infinite; }
.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--clr-white);
    margin-bottom: 18px;
}
.hero-title span { color: var(--clr-primary); }
.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 540px;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--clr-border);
    border-radius: 22px;
    padding: 8px 16px;
    font-size: 0.86rem;
    color: var(--clr-text-muted);
    margin-top: 22px;
}
.hero-bonus-pill strong { color: var(--clr-gold); }

/* ======================== BREADCRUMBS ======================== */
.breadcrumbs-wrap {
    padding: 14px 0;
    border-bottom: 1px solid var(--clr-border);
    background: var(--clr-bg2);
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}
.breadcrumbs a { color: var(--clr-text-muted); }
.breadcrumbs a:hover { color: var(--clr-primary); }
.breadcrumbs-sep { color: var(--clr-text-dim); }
.breadcrumbs span:last-child { color: var(--clr-primary); }

/* ======================== CONTENT AREA ======================== */
.content-area {
    flex: 1;
    padding: 40px 0 60px;
}

/* ======================== SECTION COMMON ======================== */
.section-block {
    margin-bottom: 36px;
    background: var(--clr-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-border);
    padding: 36px;
    box-shadow: var(--shadow-card);
}
.section-block--alt {
    background: var(--clr-bg2);
}

.section-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 8px;
    line-height: 1.25;
}
.section-title span { color: var(--clr-primary); }
.section-subtitle {
    font-size: 0.93rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}
.section-header { margin-bottom: 28px; }
.section-divider {
    width: 48px;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 2px;
    margin: 10px 0 20px;
}

/* ======================== TABLE OF CONTENTS ======================== */
.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
}
.toc-item svg { width: 17px; height: 17px; color: var(--clr-primary); flex-shrink: 0; }
.toc-item:hover {
    background: var(--clr-card2);
    color: var(--clr-primary);
    border-color: rgba(74,211,21,0.3);
}

/* ======================== ADVANTAGES ======================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.adv-tile {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.adv-tile:hover {
    border-color: rgba(74,211,21,0.35);
    box-shadow: 0 4px 24px rgba(74,211,21,0.1);
    transform: translateY(-2px);
}
.adv-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary-glow);
    border-radius: var(--radius-md);
    color: var(--clr-primary);
}
.adv-icon svg { width: 22px; height: 22px; }
.adv-title {
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--clr-white);
}
.adv-desc {
    font-size: 0.84rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

/* ======================== JACKPOTS ======================== */
.jackpots-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.jackpot-card {
    flex: 1;
    min-width: 180px;
    background: linear-gradient(135deg, #1a1c22 0%, #0f1017 100%);
    border: 1px solid #2a2d3a;
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(74,211,21,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.jackpot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(74,211,21,0.12);
}
.jackpot-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-dim);
    margin-bottom: 10px;
    font-weight: 600;
}
.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-gold);
    text-shadow: 0 0 20px rgba(245,200,66,0.3);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.jackpot-name {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 6px;
}
.jackpot-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(74,211,21,0.1);
    color: var(--clr-primary);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ======================== APP INFO ======================== */
.app-inner { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.app-table-wrap { flex: 1; min-width: 280px; overflow-x: auto; }
.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-bg3);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}
.app-table th, .app-table td {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--clr-border);
}
.app-table th {
    background: rgba(74,211,21,0.07);
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: 38%;
}
.app-table td { color: var(--clr-text); }
.app-table tr:last-child th, .app-table tr:last-child td { border-bottom: none; }
.app-table tr:hover td { background: rgba(255,255,255,0.02); }

.app-downloads { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }
.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.app-dl-btn:hover {
    background: var(--clr-card2);
    border-color: rgba(74,211,21,0.4);
    color: var(--clr-text);
    transform: translateX(3px);
}
.app-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.app-dl-label { font-size: 0.7rem; color: var(--clr-text-muted); }
.app-dl-name { font-size: 0.95rem; font-weight: 700; color: var(--clr-white); }

/* ======================== GAMES / SLOTS ======================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.game-card {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.5);
    border-color: rgba(74,211,21,0.3);
}
.game-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--clr-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1d26, #0f1017);
    color: var(--clr-text-dim);
    font-size: 2.5rem;
}
.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,12,16,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.game-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--clr-white);
}
.game-provider {
    font-size: 0.76rem;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.game-rtp {
    font-size: 0.78rem;
    color: var(--clr-primary);
    font-weight: 600;
}

/* games slider on mobile */
.games-slider-wrap { position: relative; }
.games-slider-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ======================== DEMO GAME ======================== */
.demo-wrap {
    background: var(--clr-bg3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    position: relative;
}
.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--clr-card2);
    border-bottom: 1px solid var(--clr-border);
}
.demo-title { font-size: 0.9rem; font-weight: 700; color: var(--clr-text); }
.demo-iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
    background: #000;
}
.demo-overlay {
    position: absolute;
    inset: 56px 0 0;
    background: rgba(11,12,16,0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    transition: opacity 0.3s;
}
.demo-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-overlay p { color: var(--clr-text-muted); font-size: 0.95rem; }

/* ======================== REVIEW CONTENT BLOCK ======================== */
.review-content {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--clr-text);
}
.review-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-white);
    margin: 28px 0 12px;
    line-height: 1.3;
}
.review-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin: 22px 0 10px;
}
.review-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 18px 0 8px;
}
.review-content p { margin-bottom: 16px; }
.review-content a { color: var(--clr-primary); text-decoration: underline; }
.review-content ul, .review-content ol { margin: 0 0 16px 22px; }
.review-content ul { list-style: disc; }
.review-content ol { list-style: decimal; }
.review-content li { margin-bottom: 7px; color: var(--clr-text-muted); }
.review-content li::marker { color: var(--clr-primary); }
.review-content strong { color: var(--clr-white); font-weight: 700; }
.review-content em { color: var(--clr-text); font-style: italic; }
.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    background: var(--clr-bg3);
    padding: 14px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    margin: 18px 0;
    font-style: italic;
}
.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}
.review-content th {
    background: rgba(74,211,21,0.08);
    color: var(--clr-primary);
    font-weight: 700;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    white-space: nowrap;
}
.review-content td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    vertical-align: top;
}
.review-content tr:hover td { background: rgba(255,255,255,0.02); }
.review-content img { border-radius: var(--radius-md); margin: 16px 0; }
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }

/* ======================== FAQ ======================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(74,211,21,0.3); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--clr-white);
    font-size: 0.97rem;
    font-weight: 600;
    font-family: var(--font-main);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-primary); }
.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--clr-primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }

/* ======================== REVIEWS ======================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.review-card {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    border-color: rgba(74,211,21,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.review-card-header { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--clr-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--clr-border);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta { flex: 1; }
.review-name { font-size: 0.92rem; font-weight: 700; color: var(--clr-white); }
.review-date { font-size: 0.75rem; color: var(--clr-text-dim); margin-top: 2px; }
.review-stars {
    display: flex;
    gap: 3px;
}
.star-svg { width: 16px; height: 16px; color: var(--clr-gold); }
.review-text { font-size: 0.86rem; color: var(--clr-text-muted); line-height: 1.65; }

.review-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px;
}

/* ======================== FORMS ======================== */
.form-vertical { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.form-input, .form-textarea {
    width: 100%;
    background: var(--clr-bg3);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(74,211,21,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--clr-text-dim); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-msg {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    display: none;
}
.form-msg--success { background: rgba(74,211,21,0.1); border: 1px solid rgba(74,211,21,0.3); color: var(--clr-primary); display: block; }
.form-msg--error { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #ff6b6b; display: block; }

/* ======================== COMMENTS ======================== */
.comments-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.comment-item {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    gap: 14px;
}
.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-primary);
    flex-shrink: 0;
    border: 1.5px solid var(--clr-border);
}
.comment-body { flex: 1; }
.comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.comment-name { font-size: 0.9rem; font-weight: 700; color: var(--clr-white); }
.comment-date { font-size: 0.76rem; color: var(--clr-text-dim); }
.comment-text { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ======================== AUTHOR ======================== */
.author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--clr-primary);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--clr-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 2rem;
    font-weight: 800;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; min-width: 200px; }
.author-name { font-size: 1.2rem; font-weight: 800; color: var(--clr-white); margin-bottom: 3px; }
.author-position { font-size: 0.83rem; color: var(--clr-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.author-bio { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-meta { font-size: 0.8rem; color: var(--clr-text-dim); margin-bottom: 12px; }
.author-meta strong { color: var(--clr-text-muted); }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.author-link svg { width: 14px; height: 14px; }
.author-link:hover { background: var(--clr-card2); color: var(--clr-primary); border-color: rgba(74,211,21,0.3); }

/* ======================== FOOTER ======================== */
.site-footer {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px;
    margin-top: auto;
}
.footer-top { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo img { height: 38px; margin-bottom: 14px; }
.footer-desc { font-size: 0.83rem; color: var(--clr-text-muted); line-height: 1.65; max-width: 260px; }
.footer-country {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-size: 0.81rem;
    color: var(--clr-text-dim);
}
.footer-flag { font-size: 1.4rem; }
.footer-nav-col { min-width: 150px; }
.footer-nav-title {
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-dim);
    margin-bottom: 14px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a {
    font-size: 0.86rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--clr-primary); }
.footer-social-list { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social-link svg { width: 17px; height: 17px; }
.footer-social-link:hover { background: var(--clr-card2); color: var(--clr-primary); border-color: rgba(74,211,21,0.3); }

.footer-logos-section { margin-bottom: 24px; padding: 22px 0; border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); }
.footer-logos-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.footer-logos-row:last-child { margin-bottom: 0; }
.footer-logos-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-dim);
    font-weight: 700;
    min-width: 110px;
}
.footer-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.footer-logo-pill:hover { color: var(--clr-primary); border-color: rgba(74,211,21,0.3); }
.footer-logo-pill--trust { border-color: rgba(74,211,21,0.2); color: var(--clr-primary); }

.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copyright { font-size: 0.78rem; color: var(--clr-text-dim); line-height: 1.7; max-width: 600px; }
.footer-copyright a { color: var(--clr-text-dim); }
.footer-copyright a:hover { color: var(--clr-primary); }

.footer-legal {
    font-size: 0.75rem;
    color: var(--clr-text-dim);
    line-height: 1.7;
    padding-top: 16px;
    border-top: 1px solid var(--clr-border);
    margin-top: 16px;
}

/* ======================== STICKY WIDGET ======================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, #0B0C10 0%, #111318 100%);
    border-top: 1.5px solid rgba(74,211,21,0.3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
    transform: translateY(0);
    transition: transform 0.3s;
}
.sticky-widget.hidden { transform: translateY(100%); }
.sticky-promo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.sticky-promo-badge {
    background: rgba(74,211,21,0.12);
    border: 1px solid rgba(74,211,21,0.3);
    color: var(--clr-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sticky-promo-main {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-white);
}
.sticky-promo-sub {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}
.sticky-promo-code {
    background: var(--clr-bg3);
    border: 1.5px dashed rgba(74,211,21,0.4);
    border-radius: var(--radius-sm);
    padding: 5px 13px;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}
.sticky-promo-code:hover { background: var(--clr-card2); }
.sticky-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sticky-close {
    background: none;
    border: none;
    color: var(--clr-text-dim);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color var(--transition);
    display: flex;
}
.sticky-close:hover { color: var(--clr-text); }
.sticky-close svg { width: 18px; height: 18px; }

body { padding-bottom: 72px; }

/* ======================== UTILS ======================== */
.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }
.text-primary { color: var(--clr-primary); }
.text-gold { color: var(--clr-gold); }
.text-white { color: var(--clr-white); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* ======================== ANIMATIONS ======================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes counterUp {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.fade-in-up { animation: fadeInUp 0.55s ease forwards; }
.fade-in { animation: fadeIn 0.45s ease forwards; }

.jackpot-amount { animation: counterUp 0.6s ease; }

.skeleton {
    background: linear-gradient(90deg, var(--clr-bg3) 0%, var(--clr-card2) 50%, var(--clr-bg3) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ======================== WP COMPAT (UNUSED) ======================== */
.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 16px; }
.wp-block-column { flex: 1; min-width: 180px; }
.entry-meta { font-size: 0.78rem; color: var(--clr-text-dim); }
.entry-content { line-height: 1.7; }
.has-text-align-center { text-align: center; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; left: -9999px; }
.widget { margin-bottom: 24px; }
.widget-title { font-size: 1rem; font-weight: 700; color: var(--clr-white); margin-bottom: 12px; }
.elementor-section { width: 100%; }
.elementor-container { max-width: 1240px; margin: 0 auto; }

/* ======================== INFO PAGE ======================== */
.info-page { padding: 48px 0 64px; }
.info-page h1 { font-size: 2rem; font-weight: 800; color: var(--clr-white); margin-bottom: 20px; }
.info-page h2 { font-size: 1.3rem; font-weight: 700; color: var(--clr-white); margin: 26px 0 12px; }
.info-page p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 14px; font-size: 0.95rem; }
.info-page ul { margin: 0 0 16px 22px; list-style: disc; }
.info-page ul li { color: var(--clr-text-muted); margin-bottom: 7px; font-size: 0.9rem; }
.info-page ul li::marker { color: var(--clr-primary); }
.info-page a { color: var(--clr-primary); text-decoration: underline; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .games-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .jackpots-row { gap: 12px; }
    .section-block { padding: 28px 22px; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .burger-btn { display: flex; }
    .online-count { display: none; }

    .hero-content { padding: 52px 0; }
    .hero-title { font-size: 1.85rem; }

    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .games-slider-track { grid-template-columns: repeat(2, 1fr); }

    .reviews-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .jackpots-row { gap: 10px; }
    .jackpot-card { min-width: 140px; }
    .jackpot-amount { font-size: 1.6rem; }

    .app-inner { flex-direction: column; }
    .author-card { flex-direction: column; align-items: center; text-align: center; }
    .author-links { justify-content: center; }
    .author-photo { margin-bottom: 0; }
    .footer-top { gap: 28px; }
    .toc-grid { grid-template-columns: repeat(2, 1fr); }

    .sticky-widget { flex-wrap: wrap; gap: 10px; }
    .sticky-promo-text { flex-direction: column; align-items: flex-start; gap: 4px; }
    body { padding-bottom: 100px; }

    .demo-iframe { height: 320px; }
    .section-block { padding: 22px 16px; border-radius: var(--radius-lg); }
}

@media (max-width: 520px) {
    .header-inner { height: 60px; padding: 0 14px; }
    .mobile-menu { top: 60px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .toc-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
    .footer-logos-row { flex-direction: column; gap: 8px; }
    .footer-logos-label { min-width: unset; }
    .app-downloads { flex-direction: row; flex-wrap: wrap; }
    .app-dl-btn { flex: 1; min-width: 140px; }
}

/* ======================== EXTRA UNUSED STYLES (UNIQUENESS) ======================== */
.x7f3a2b { display: none; visibility: hidden; }
.c9d1e4f { opacity: 0; pointer-events: none; }
.zk02p8q { position: absolute; left: -99999px; }
.wp-embed-aspect-16-9 { display: block; }
.has-large-font-size { font-size: 2.25em; }
.is-vertically-aligned-center { align-self: center; }
.wp-block-latest-posts { list-style: none; }
.wpcf7-form { display: flex; flex-direction: column; gap: 12px; }
.vc_row:after { content: ''; display: table; clear: both; }
.elementor-widget-wrap { display: flex; flex-direction: column; }
.fusion-layout-column { float: left; width: 50%; }
.dt3r9m { display: none; }
.n8vx1k { visibility: hidden; }
