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

:root {
    --c-header: #3b407f;
    --c-footer: #2e3370;
    --c-bg: #292755;
    --c-bg2: #1e1c45;
    --c-bg3: #33306a;
    --c-btn-primary: #57e400;
    --c-btn-secondary: #924eff;
    --c-text: #e8e6ff;
    --c-text-muted: #9b99cc;
    --c-text-dark: #1a1940;
    --c-border: rgba(255, 255, 255, 0.1);
    --c-card: rgba(255, 255, 255, 0.05);
    --c-plus: #57e400;
    --c-minus: #ff4e7e;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-btn: 0 4px 18px rgba(87, 228, 0, 0.35);
    --trans: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

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

a {
    color: var(--c-btn-secondary);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: var(--c-btn-primary);
}

.wp-content-loader {
    display: none;
}

.elementor-hidden {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.xf7k2 {
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.q9mx4 {
    display: none !important;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: clamp(1rem, 2vw, 1.35rem);
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.35rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-primary), var(--c-btn-secondary));
    margin: 0.6rem auto 0;
    border-radius: 3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 11px 26px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn--primary {
    background: var(--c-btn-primary);
    color: var(--c-text-dark);
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    color: var(--c-text-dark);
    box-shadow: 0 6px 24px rgba(87, 228, 0, 0.5);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(146, 78, 255, 0.35);
}

.btn--secondary:hover {
    color: #fff;
    box-shadow: 0 6px 24px rgba(146, 78, 255, 0.55);
}

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

.btn--outline:hover {
    background: var(--c-btn-secondary);
    color: #fff;
}

.btn--sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

.btn--lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

/* === HEADER === */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 12px 0;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 7px 13px;
    border-radius: 7px;
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--trans), color var(--trans);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-online {
    font-size: 0.78rem;
    color: var(--c-btn-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.5rem;
}

.header-online::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--c-btn-primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s infinite;
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}

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

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

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

/* === HERO === */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg2);
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(41, 39, 85, 0.92) 40%, rgba(59, 64, 127, 0.7) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-badge {
    display: inline-block;
    background: var(--c-btn-secondary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: #fff;
    margin-bottom: 0.8rem;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--c-text);
    margin-bottom: 1.8rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-bonus {
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(146, 78, 255, 0.25), rgba(87, 228, 0, 0.15));
    border: 1px solid rgba(87, 228, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    text-align: center;
    min-width: 240px;
    backdrop-filter: blur(10px);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-bonus .bonus-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 0.4rem;
}

.hero-bonus .bonus-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--c-btn-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-bonus .bonus-sub {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
}

.hero-bonus .bonus-spins {
    font-size: 0.85rem;
    color: var(--c-btn-secondary);
    margin-bottom: 1.2rem;
}

/* === MAIN CONTENT SECTION === */
.main-content {
    padding: 60px 0;
}

/* === PROS & CONS === */
.pros-cons {
    padding: 60px 0;
    background: var(--c-bg2);
}

.pros-cons-grid {
    display: flex;
    gap: 1.5rem;
}

.pros-block, .cons-block {
    flex: 1;
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--c-border);
}

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

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

.pros-block h3 {
    color: var(--c-plus);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cons-block h3 {
    color: var(--c-minus);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.93rem;
    line-height: 1.5;
}

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

.pros-list li::before {
    content: '✓';
    color: var(--c-plus);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cons-list li::before {
    content: '✗';
    color: var(--c-minus);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* === VIDEO REVIEW === */
.video-section {
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}

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

/* === LIVE GAMES === */
.live-games {
    padding: 60px 0;
    background: var(--c-bg2);
}

.games-grid {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.game-card {
    flex: 1 1 160px;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid var(--c-border);
    transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-btn-secondary);
    box-shadow: 0 8px 30px rgba(146, 78, 255, 0.25);
}

.game-card-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid var(--c-border);
}

.game-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.game-card .game-provider {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}

.games-slider-wrap {
    position: relative;
}

/* === DEMO GAME === */
.demo-section {
    padding: 60px 0;
}

.demo-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.demo-frame-wrap {
    flex: 2 1 480px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

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

.demo-cta {
    flex: 1 1 220px;
    background: linear-gradient(135deg, var(--c-bg3), var(--c-bg2));
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--c-border);
    text-align: center;
}

.demo-cta h3 {
    margin-bottom: 1rem;
}

.demo-cta p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}

/* === REVIEW CONTENT === */
.review-content {
    padding: 60px 0;
    background: var(--c-bg2);
}

.review-content-inner {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--c-border);
}

.review-content-inner h2,
.review-content-inner h3,
.review-content-inner h4 {
    color: #fff;
    margin: 1.5rem 0 0.75rem;
}

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

.review-content-inner p {
    color: var(--c-text);
    line-height: 1.8;
}

.review-content-inner ul,
.review-content-inner ol {
    color: var(--c-text);
    padding-left: 1.6rem;
    margin-bottom: 1rem;
}

.review-content-inner li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.review-content-inner a {
    color: var(--c-btn-secondary);
}

.review-content-inner a:hover {
    color: var(--c-btn-primary);
}

.review-content-inner table {
    width: auto;
    max-width: 100%;
    margin: 1.5rem auto;
    border-collapse: collapse;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.review-content-inner table th,
.review-content-inner table td {
    border: 1px solid var(--c-border);
    padding: 10px 16px;
    text-align: left;
    color: var(--c-text);
}

.review-content-inner table th {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-weight: 600;
}

.review-content-inner table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.review-content-inner blockquote {
    border-left: 3px solid var(--c-btn-secondary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(146, 78, 255, 0.08);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--c-text);
    font-style: italic;
}

.review-content-inner strong {
    color: #fff;
}

.review-content-inner img {
    border-radius: var(--radius);
    margin: 1rem 0;
}

/* === RESPONSIBLE GAMING === */
.responsible {
    padding: 60px 0;
}

.responsible-inner {
    background: linear-gradient(135deg, rgba(146, 78, 255, 0.12), rgba(87, 228, 0, 0.07));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(87, 228, 0, 0.2);
    padding: 2.5rem;
}

.responsible-intro {
    font-size: 0.97rem;
    color: var(--c-text);
    margin-bottom: 2rem;
    max-width: 720px;
}

.responsible-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resp-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 0.8rem 1.2rem;
    color: var(--c-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: border-color var(--trans), background var(--trans);
}

.resp-link:hover {
    border-color: var(--c-btn-primary);
    background: rgba(87, 228, 0, 0.07);
    color: #fff;
}

.resp-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-btn-primary);
}

/* === FAQ === */
.faq {
    padding: 60px 0;
    background: var(--c-bg2);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color var(--trans);
}

.faq-item.open {
    border-color: var(--c-btn-secondary);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 0.97rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: color var(--trans);
}

.faq-question:hover {
    color: var(--c-btn-secondary);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--trans), background var(--trans);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--c-btn-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding var(--trans);
    padding: 0 1.4rem;
    font-size: 0.92rem;
    color: var(--c-text);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0.6rem 1.4rem 1.2rem;
}

/* === AUTHOR === */
.author-section {
    padding: 60px 0;
}

.author-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-btn-secondary);
    flex-shrink: 0;
}

.author-info {
    flex: 1 1 260px;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--c-btn-secondary);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author-dates {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}

.author-dates span {
    margin-right: 1.2rem;
}

.author-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.author-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-btn-secondary);
    border: 1px solid rgba(146, 78, 255, 0.3);
    padding: 5px 12px;
    border-radius: 50px;
    transition: all var(--trans);
}

.author-link:hover {
    background: var(--c-btn-secondary);
    color: #fff;
    border-color: var(--c-btn-secondary);
}

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

/* === FOOTER === */
.site-footer {
    background: var(--c-footer);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.footer-top {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--c-border);
}

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

.footer-logo img {
    height: 44px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.83rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    font-size: 0.83rem;
    color: var(--c-text-muted);
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.45rem;
}

.footer-nav a {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    transition: color var(--trans);
}

.footer-nav a:hover {
    color: var(--c-btn-primary);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background var(--trans), color var(--trans);
}

.footer-social a:hover {
    background: var(--c-btn-secondary);
    color: #fff;
}

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-badge svg {
    width: 14px;
    height: 14px;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

.footer-legal {
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
    text-align: center;
}

.footer-legal p {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.footer-legal a {
    color: var(--c-text-muted);
    font-size: 0.78rem;
}

.footer-legal a:hover {
    color: var(--c-btn-primary);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid var(--c-minus);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--c-minus);
    margin: 0.5rem auto;
}

/* === STICKY WIDGET === */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #1e1c45 0%, #2d2b66 100%);
    border-top: 1px solid rgba(87, 228, 0, 0.25);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.widget-text {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 500;
}

.widget-text span {
    color: var(--c-btn-primary);
    font-weight: 700;
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 2px 6px;
    transition: color var(--trans);
}

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

/* === INFO PAGES === */
.info-content {
    padding: 50px 0 70px;
}

.info-content-inner {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--c-border);
}

.info-content-inner h1,
.info-content-inner h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.info-content-inner p,
.info-content-inner li {
    color: var(--c-text);
    line-height: 1.8;
}

.info-content-inner a {
    color: var(--c-btn-secondary);
}

.info-content-inner a:hover {
    color: var(--c-btn-primary);
}

/* === MOBILE OVERLAY NAV === */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 60, 0.96);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.nav-overlay.open {
    display: flex;
}

.nav-overlay a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    width: 100%;
    max-width: 300px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color var(--trans);
}

.nav-overlay a:hover {
    color: var(--c-btn-primary);
}

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

.nav-overlay-close {
    position: fixed;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
}

/* Fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

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

    .demo-inner {
        flex-direction: column;
    }

    .demo-frame-wrap {
        padding-bottom: 56.25%;
        height: 0;
        width: 100%;
        flex: none;
    }

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

    .author-links {
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
    }
}

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

    .burger {
        display: flex;
    }

    .games-grid {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.8rem;
        padding-bottom: 0.5rem;
    }

    .games-grid::-webkit-scrollbar {
        height: 4px;
    }

    .games-grid::-webkit-scrollbar-track {
        background: var(--c-bg2);
        border-radius: 2px;
    }

    .games-grid::-webkit-scrollbar-thumb {
        background: var(--c-btn-secondary);
        border-radius: 2px;
    }

    .game-card {
        flex: 0 0 170px;
        scroll-snap-align: start;
    }

    .hero-bonus {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .sticky-widget {
        padding: 8px 14px;
    }

    .widget-text {
        font-size: 0.8rem;
    }

    .review-content-inner table {
        font-size: 0.82rem;
    }

    .review-content-inner {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .btn--lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .responsible-inner {
        padding: 1.5rem;
    }

    .author-card {
        padding: 1.5rem;
    }

    .footer-badges {
        gap: 0.4rem;
    }
}

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

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

.wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.elementor-widget-container {
    position: relative;
}

.e-con-inner {
    display: flex;
}
