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

:root {
    --clr-bg: #000000;
    --clr-header: #0a0a35;
    --clr-footer: #0a0a35;
    --clr-btn-primary: #fbec1f;
    --clr-btn-primary-text: #0a0a35;
    --clr-btn-secondary: #016d19;
    --clr-btn-secondary-text: #ffffff;
    --clr-accent: #fbec1f;
    --clr-green: #016d19;
    --clr-text: #e8e8f0;
    --clr-text-muted: #8888aa;
    --clr-border: rgba(251, 236, 31, 0.15);
    --clr-card: #0d0d2e;
    --clr-card-alt: #080820;
    --clr-surface: #111130;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-glow: 0 0 24px rgba(251, 236, 31, 0.12);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --transition: 0.25s ease;
    --font-main: 'Inter', sans-serif;
}

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

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

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

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

a:hover {
    color: #fff
}

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

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font-main)
}

.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
}

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

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

.container--wide {
    max-width: 1400px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: var(--clr-btn-primary-text)
}

.btn--primary:hover {
    background: #ffe800;
    color: #0a0a35;
    box-shadow: 0 0 20px rgba(251, 236, 31, 0.5);
    transform: translateY(-1px)
}

.btn--secondary {
    background: var(--clr-btn-secondary);
    color: var(--clr-btn-secondary-text)
}

.btn--secondary:hover {
    background: #018c20;
    box-shadow: 0 0 16px rgba(1, 109, 25, 0.5);
    transform: translateY(-1px);
    color: #fff
}

.btn--sm {
    padding: 7px 14px;
    font-size: .8rem
}

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

.btn--xl {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-md)
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent)
}

.btn--outline:hover {
    background: var(--clr-accent);
    color: #0a0a35
}

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

.xb3f9a {
    display: none
}

.qm72lp {
}

.rz01xt {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0
}

#b4k9mz {
    display: none !important
}

.wp-content-ref {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute
}

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(251, 236, 31, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo a {
    display: flex;
    align-items: center
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: rgba(232, 232, 240, 0.8);
    font-size: .85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

.header-nav a:hover {
    color: var(--clr-accent);
    background: rgba(251, 236, 31, 0.06)
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06)
}

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

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
    }
}

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

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

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

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

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

.mobile-nav {
    display: none;
    background: var(--clr-header);
    border-top: 1px solid rgba(251, 236, 31, 0.1);
    padding: 12px 16px 16px
}

.mobile-nav.open {
    display: block
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--clr-text);
    font-size: .9rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.mobile-nav-links a:hover {
    background: rgba(251, 236, 31, 0.07)
}

.mobile-nav-links a svg {
    width: 18px;
    height: 18px
}

.mobile-online {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted)
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/banner-nb.png');
    background-size: cover;
    background-position: center
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 40%, rgba(0, 0, 0, 0.4) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.hero-text {
    flex: 1;
    max-width: 540px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 236, 31, 0.12);
    border: 1px solid rgba(251, 236, 31, 0.3);
    color: var(--clr-accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(232, 232, 240, 0.8);
    margin-bottom: 28px;
    line-height: 1.6
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.hero-bonus {
    flex-shrink: 0
}

.bonus-tile {
    background: linear-gradient(135deg, #0a0a35 0%, #0f0f4a 100%);
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    min-width: 260px;
    text-align: center;
    box-shadow: 0 0 40px rgba(251, 236, 31, 0.18), var(--shadow-card)
}

.bonus-tile-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.bonus-tile-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 4px
}

.bonus-tile-desc {
    font-size: .9rem;
    color: var(--clr-text);
    margin-bottom: 6px
}

.bonus-tile-spins {
    font-size: .82rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 20px
}

.bonus-tile-btn {
    width: 100%
}

.bonus-tile-terms {
    font-size: .7rem;
    color: var(--clr-text-muted);
    margin-top: 10px
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 64px 0
}

.section--sm {
    padding: 40px 0
}

.section-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2
}

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

.section-header {
    margin-bottom: 36px
}

.section-header--center {
    text-align: center
}

/* ===== INFO TABLE ===== */
.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card)
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card)
}

.info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition)
}

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

.info-table tr:hover {
    background: rgba(251, 236, 31, 0.04)
}

.info-table td {
    padding: 14px 20px;
    font-size: .9rem;
    vertical-align: middle;
    text-align: left
}

.info-table td:first-child {
    width: 44px;
    text-align: center;
    opacity: .8
}

.info-table td:nth-child(2) {
    color: var(--clr-text-muted);
    font-weight: 500;
    white-space: nowrap;
    width: 220px
}

.info-table td:last-child {
    color: var(--clr-text);
    font-weight: 400
}

.info-table td svg {
    width: 20px;
    height: 20px;
    color: var(--clr-accent)
}

.info-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--clr-accent);
    font-weight: 700
}

.info-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(251, 236, 31, 0.12);
    color: var(--clr-accent);
    font-size: .75rem;
    border-radius: 4px;
    margin: 1px
}

.info-yes {
    color: #22c55e;
    font-weight: 600
}

.info-no {
    color: #ef4444;
    font-weight: 600
}

/* ===== PROS CONS ===== */
.pros-cons {
    display: flex;
    gap: 20px
}

.pros-card, .cons-card {
    flex: 1;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card)
}

.pros-card {
    background: linear-gradient(135deg, #071a0d 0%, #0b1e0e 100%);
    border: 1px solid rgba(34, 197, 94, 0.2)
}

.cons-card {
    background: linear-gradient(135deg, #1a0707 0%, #1e0a0a 100%);
    border: 1px solid rgba(239, 68, 68, 0.2)
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px
}

.pros-card .pros-cons-title {
    color: #22c55e
}

.cons-card .pros-cons-title {
    color: #ef4444
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: .9rem;
    color: var(--clr-text)
}

.pros-cons-list li:last-child {
    border-bottom: none
}

.pros-cons-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 2px;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center
}

.pros-card .pros-cons-list li::before {
    background-color: rgba(34, 197, 94, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l2.5 2.5 4.5-4.5' stroke='%2322c55e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.cons-card .pros-cons-list li::before {
    background-color: rgba(239, 68, 68, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 2l6 6M8 2l-6 6' stroke='%23ef4444' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

/* ===== LIVE GAMES ===== */
.games-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.game-card {
    flex: 1;
    min-width: 180px;
    max-width: calc(16.66% - 14px);
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 236, 31, 0.35);
    box-shadow: 0 8px 30px rgba(251, 236, 31, 0.1)
}

.game-card-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a0a35, #1a1a60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.game-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.game-card-name {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.game-card-provider {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.game-card-btn {
    margin-top: auto
}

.games-slider-wrap {
    position: relative
}

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

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

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

/* ===== DEMO GAME ===== */
.demo-section {
    background: var(--clr-card-alt);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--clr-border)
}

.demo-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.demo-selector button {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: var(--clr-surface);
    color: var(--clr-text);
    font-size: .85rem;
    font-weight: 500;
    border: 1px solid var(--clr-border);
    transition: all var(--transition)
}

.demo-selector button.active, .demo-selector button:hover {
    background: var(--clr-accent);
    color: #0a0a35;
    border-color: var(--clr-accent)
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    background: #000;
    border: 1px solid var(--clr-border);
    margin-bottom: 20px
}

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

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

.demo-cta-text {
    font-size: .9rem;
    color: var(--clr-text-muted)
}

/* ===== REVIEW CONTENT ===== */
.review-content {
    background: var(--clr-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--clr-border)
}

.review-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    margin-top: 28px;
    line-height: 1.3
}

.review-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 10px;
    margin-top: 22px
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 8px;
    margin-top: 18px
}

.review-content h2:first-child, .review-content h3:first-child {
    margin-top: 0
}

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

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

.review-content ul {
    list-style: disc
}

.review-content ol {
    list-style: decimal
}

.review-content li {
    margin-bottom: 6px;
    color: var(--clr-text);
    font-size: .95rem;
    line-height: 1.6
}

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

.review-content em {
    color: var(--clr-accent);
    font-style: normal
}

.review-content a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 3px
}

.review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(251, 236, 31, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(232, 232, 240, 0.9);
    font-style: italic
}

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

.review-content table th {
    background: var(--clr-surface);
    color: var(--clr-accent);
    padding: 10px 14px;
    font-weight: 700;
    text-align: left;
    font-size: .85rem
}

.review-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: .85rem;
    color: var(--clr-text);
    text-align: left
}

.review-content table tr:last-child td {
    border-bottom: none
}

.review-content table tr:hover td {
    background: rgba(251, 236, 31, 0.03)
}

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

.review-content img {
    border-radius: var(--radius-md);
    margin: 16px 0;
    max-width: 100%
}

.review-content code {
    background: var(--clr-surface);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .85em;
    color: var(--clr-accent);
    font-family: monospace
}

.review-content pre {
    background: var(--clr-surface);
    padding: 16px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 16px
}

.review-content pre code {
    background: none;
    padding: 0;
    color: var(--clr-text)
}

/* ===== SECURITY TABLE ===== */
.security-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.security-table th {
    background: var(--clr-surface);
    color: var(--clr-accent);
    padding: 14px 20px;
    font-size: .85rem;
    font-weight: 700;
    text-align: left
}

.security-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: .875rem;
    text-align: left;
    vertical-align: middle;
    color: var(--clr-text)
}

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

.security-table tr:hover td {
    background: rgba(251, 236, 31, 0.03)
}

.security-table td:first-child {
    font-weight: 600;
    color: #fff
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600
}

.security-badge--ok {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e
}

.security-badge--warn {
    background: rgba(251, 189, 44, 0.15);
    color: #fbbd2c
}

.security-badge--na {
    background: rgba(136, 136, 170, 0.15);
    color: #8888aa
}

/* ===== AUTHOR ===== */
.author-card {
    background: var(--clr-card);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--clr-border);
    display: flex;
    gap: 28px;
    align-items: flex-start
}

.author-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--clr-accent);
    box-shadow: 0 0 20px rgba(251, 236, 31, 0.2)
}

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

.author-info {
    flex: 1
}

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

.author-role {
    font-size: .85rem;
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 10px
}

.author-bio {
    font-size: .9rem;
    color: var(--clr-text);
    line-height: 1.6;
    margin-bottom: 16px
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--clr-surface);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    transition: all var(--transition)
}

.author-link:hover {
    color: var(--clr-accent);
    border-color: rgba(251, 236, 31, 0.3)
}

.author-link svg {
    width: 14px;
    height: 14px
}

.author-dates {
    font-size: .8rem;
    color: var(--clr-text-muted);
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.author-dates span {
    display: flex;
    align-items: center;
    gap: 5px
}

.author-dates svg {
    width: 13px;
    height: 13px
}

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

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

.faq-item.open {
    border-color: rgba(251, 236, 31, 0.3)
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition)
}

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

.faq-question svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
    color: var(--clr-text-muted)
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--clr-accent)
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--clr-text);
    font-size: .9rem;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    display: block
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-footer);
    padding: 56px 0 24px;
    border-top: 1px solid rgba(251, 236, 31, 0.1);
    margin-top: 80px
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px
}

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

.footer-logo-wrap {
    margin-bottom: 16px
}

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

.footer-tagline {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 16px
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px
}

.footer-country-flag {
    font-size: 1.4rem
}

.footer-col-title {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(232, 232, 240, 0.5);
    font-weight: 700;
    margin-bottom: 14px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footer-links a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--clr-accent)
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.07)
}

.footer-social a:hover {
    background: rgba(251, 236, 31, 0.1);
    color: var(--clr-accent);
    border-color: rgba(251, 236, 31, 0.2)
}

.footer-social a svg {
    width: 16px;
    height: 16px
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0 0 32px
}

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

.footer-logos-title {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(232, 232, 240, 0.4);
    font-weight: 600;
    margin-bottom: 12px
}

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

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap
}

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

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

.footer-resp-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(232, 232, 240, 0.5)
}

.footer-resp-badge--18 {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: .85rem
}

.footer-legal {
    font-size: .75rem;
    color: rgba(232, 232, 240, 0.35);
    line-height: 1.6;
    max-width: 680px;
    margin-top: 16px
}

.footer-copyright {
    font-size: .8rem;
    color: rgba(232, 232, 240, 0.4);
    margin-top: 12px
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0a0a35 0%, #0e0e42 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.sticky-widget.visible {
    transform: translateY(0)
}

.widget-bonus-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0
}

.widget-icon {
    font-size: 1.4rem;
    flex-shrink: 0
}

.widget-label {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.widget-sublabel {
    font-size: .72rem;
    color: var(--clr-text-muted)
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition)
}

.widget-close:hover {
    color: #fff
}

.widget-close svg {
    width: 16px;
    height: 16px
}

.widget-cta-link {
    text-decoration: none
}

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

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

.animate-fadeInUp {
    animation: fadeInUp .6s ease forwards
}

.animate-fadeIn {
    animation: fadeIn .5s ease forwards
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 12px 0;
    margin-bottom: 8px
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    padding: 0
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.breadcrumb li a {
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.breadcrumb li a:hover {
    color: var(--clr-accent)
}

.breadcrumb li + li::before {
    content: '/';
    color: rgba(232, 232, 240, 0.25)
}

/* ===== INFO PAGE ===== */
.info-page-content {
    background: var(--clr-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--clr-border);
    margin: 32px 0 60px
}

.info-page-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px
}

.info-page-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 24px 0 10px
}

.info-page-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 18px 0 8px
}

.info-page-content p {
    margin-bottom: 14px;
    color: var(--clr-text);
    font-size: .9rem;
    line-height: 1.7
}

.info-page-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px
}

.info-page-content li {
    margin-bottom: 6px;
    font-size: .9rem;
    color: var(--clr-text);
    line-height: 1.6
}

.info-page-content a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 3px
}

/* ===== WP DECOY (hidden, no layout impact) ===== */
.wp-block-group {
    display: contents
}

.wp-block-columns {
    display: contents
}

.has-text-align-left {
    display: contents
}

#wpadminbar {
    display: none !important
}

#wp-toolbar {
    display: none !important
}

.elementor-hidden {
    display: none !important
}

.e-con-inner {
    display: contents
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .game-card {
        min-width: 160px;
        max-width: calc(33.33% - 12px)
    }
}

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

    .burger {
        display: flex
    }

    .hero-content {
        flex-direction: column;
        padding: 40px 16px;
        gap: 28px;
        align-items: flex-start
    }

    .hero-bonus {
        width: 100%;
        max-width: 400px
    }

    .bonus-tile {
        min-width: unset;
        padding: 22px 24px
    }

    .pros-cons {
        flex-direction: column
    }

    .games-grid {
        display: none
    }

    .games-slider-wrap {
        display: block
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-links {
        justify-content: center
    }

    .author-dates {
        justify-content: center
    }

    .demo-section {
        padding: 24px 18px
    }

    .review-content {
        padding: 24px 18px
    }

    .section {
        padding: 40px 0
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px
    }
}

@media (max-width: 640px) {
    .game-card {
        min-width: unset;
        max-width: unset;
        width: 160px
    }

    .hero-title {
        font-size: 1.8rem
    }

    .sticky-widget {
        flex-wrap: wrap
    }

    .info-table td:nth-child(2) {
        width: 140px
    }

    .security-table {
        font-size: .8rem
    }

    .security-table th, .security-table td {
        padding: 10px 12px
    }

    .footer-bottom {
        flex-direction: column
    }
}

@media (min-width: 769px) {
    .games-slider-wrap {
        display: none
    }

    .games-grid {
        display: flex
    }
}

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

.games-slider {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 14px;
    padding: 4px 2px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(251, 236, 31, 0.6) rgba(255, 255, 255, 0.06);
}

.games-slider::-webkit-scrollbar {
    display: block;
    height: 4px;
}

.games-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.games-slider::-webkit-scrollbar-thumb {
    background: rgba(251, 236, 31, 0.65);
    border-radius: 10px;
}

.games-slider .game-card {
    position: relative;
    display: flex;
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    min-height: 270px;
    flex-direction: column;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: linear-gradient(
            160deg,
            rgba(18, 18, 58, 0.98) 0%,
            rgba(8, 8, 32, 0.98) 100%
    );
    border: 1px solid rgba(251, 236, 31, 0.18);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.games-slider .game-card::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(
            90deg,
            transparent,
            var(--clr-accent),
            transparent
    );
    opacity: 0.75;
}

.games-slider .game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 236, 31, 0.42);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(251, 236, 31, 0.08);
}

.games-slider .game-card-img {
    position: relative;
    display: flex;
    width: 100%;
    height: 118px;
    min-height: 118px;
    aspect-ratio: auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(
            circle at 50% 35%,
            rgba(251, 236, 31, 0.11),
            transparent 52%
    ),
    linear-gradient(
            145deg,
            #101047 0%,
            #080826 100%
    );
    border-bottom: 1px solid rgba(251, 236, 31, 0.1);
}

.games-slider .game-card-img::before {
    content: '';
    position: absolute;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(251, 236, 31, 0.1);
    border-radius: 50%;
    background: rgba(251, 236, 31, 0.025);
}

.games-slider .game-card-img svg {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    stroke: rgba(251, 236, 31, 0.72) !important;
    filter: drop-shadow(0 0 10px rgba(251, 236, 31, 0.18));
}

.games-slider .game-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    gap: 8px;
    padding: 16px 14px 14px;
}

.games-slider .game-card-name {
    min-height: 42px;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.35;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.games-slider .game-card-provider {
    min-height: 19px;
    color: var(--clr-text-muted);
    font-size: 0.74rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.games-slider .game-card-btn {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 9px 10px;
    color: var(--clr-btn-primary-text);
    font-size: 0.73rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    border-radius: 7px;
}

@media (max-width: 768px) {
    .games-slider-wrap {
        margin-left: 0;
        margin-right: 0;
    }

    .games-slider {
        gap: 12px;
        padding: 4px 4px 14px;
    }

    .games-slider .game-card {
        flex-basis: min(72vw, 245px);
        width: min(72vw, 245px);
        min-width: min(72vw, 245px);
        max-width: min(72vw, 245px);
        min-height: 280px;
    }

    .games-slider .game-card-img {
        height: 124px;
        min-height: 124px;
    }

    .games-slider .game-card-body {
        padding: 15px 14px 14px;
    }

    .games-slider .game-card-name {
        min-height: auto;
        font-size: 0.94rem;
    }

    .games-slider .game-card-provider {
        min-height: auto;
    }

    .games-slider .game-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .games-slider {
        gap: 10px;
    }

    .games-slider .game-card {
        flex-basis: calc(84vw - 24px);
        width: calc(84vw - 24px);
        min-width: calc(84vw - 24px);
        max-width: 285px;
        min-height: 270px;
    }

    .games-slider .game-card-img {
        height: 112px;
        min-height: 112px;
    }

    .games-slider .game-card-img svg {
        width: 42px;
        height: 42px;
    }

    .games-slider .game-card-body {
        gap: 7px;
        padding: 14px 13px 13px;
    }

    .games-slider .game-card-name {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .games-slider .game-card-provider {
        font-size: 0.7rem;
    }

    .games-slider .game-card-btn {
        min-height: 38px;
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .games-slider .game-card {
        flex-basis: calc(100vw - 48px);
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
    }
}