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

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

:root {
    --clr-gold: #b58f35;
    --clr-gold-light: #c9a84c;
    --clr-gold-dark: #9a7828;
    --clr-btn-dark: #212121;
    --clr-btn-red: #b2031e;
    --clr-btn-red-hover: #d4042a;
    --clr-bg: #09312a;
    --clr-bg-dark: #061f1a;
    --clr-bg-card: #0d3d33;
    --clr-bg-card2: #0a2e25;
    --clr-text: #f0ece0;
    --clr-text-muted: #c8c0a8;
    --clr-white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 18px rgba(181, 143, 53, 0.35);
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg);
}

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

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

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

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1, h2, h3, h4, h5 {
    line-height: 1.25;
    color: var(--clr-white);
    font-weight: 700;
}

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

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: 0.75em;
    color: var(--clr-text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.93;
}

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

.btn--red {
    background: var(--clr-btn-red);
    color: var(--clr-white) !important;
    border-color: var(--clr-btn-red);
}

.btn--red:hover {
    background: var(--clr-btn-red-hover);
    border-color: var(--clr-btn-red-hover);
}

.btn--dark {
    background: var(--clr-btn-dark);
    color: var(--clr-white) !important;
    border-color: var(--clr-btn-dark);
}

.btn--dark:hover {
    background: #333;
    border-color: #333;
}

.btn--gold {
    background: var(--clr-gold);
    color: var(--clr-bg-dark) !important;
    border-color: var(--clr-gold);
}

.btn--gold:hover {
    background: var(--clr-gold-light);
    border-color: var(--clr-gold-light);
}

.btn--outline {
    background: transparent;
    color: var(--clr-gold) !important;
    border-color: var(--clr-gold);
}

.btn--outline:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-dark) !important;
}

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

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

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    color: var(--clr-gold);
    text-shadow: 0 2px 8px rgba(181, 143, 53, 0.3);
    margin-bottom: 0.4rem;
}

.section-heading p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

.box {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.box--gold-border {
    border: 1px solid rgba(181, 143, 53, 0.3);
}

section, .section-wrap {
    padding: 40px 0;
}

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

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

.xq7a2b {
    display: none;
}

.wp-block-spacer {
    height: 1px;
    overflow: hidden;
    visibility: hidden;
}

#xjk91 {
    background: var(--clr-gold);
    width: 1px;
    height: 1px;
    position: absolute;
    top: -9999px;
    left: -9999px;
    overflow: hidden;
}

.header-box {
    background: var(--clr-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

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

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

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

.header-logo-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--clr-bg-dark);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-logo-text span {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #3a2800;
    text-transform: uppercase;
}

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

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

.header-nav ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-bg-dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.header-nav ul li a:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--clr-bg-dark);
}

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

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

.header-actions .btn {
    padding: 8px 16px;
    font-size: 0.84rem;
}

.jackpot-bar {
    background: var(--clr-bg-dark);
    color: var(--clr-gold);
    text-align: center;
    padding: 5px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jackpot-bar svg {
    width: 16px;
    height: 16px;
}

.jackpot-amount {
    font-size: 1rem;
    font-weight: 900;
    color: var(--clr-gold-light);
    animation: jackpotPulse 2s ease-in-out infinite;
}

@keyframes jackpotPulse {
    0%, 100% {
        text-shadow: 0 0 6px rgba(181, 143, 53, 0.5);
    }
    50% {
        text-shadow: 0 0 16px rgba(201, 168, 76, 0.9);
    }
}

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

.burger span {
    display: block;
    height: 3px;
    background: var(--clr-bg-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--clr-bg-dark);
    z-index: 999;
    padding: 80px 20px 32px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--clr-text);
    border-bottom: 1px solid rgba(181, 143, 53, 0.1);
    transition: background var(--transition);
}

.mobile-nav a:hover {
    background: rgba(181, 143, 53, 0.12);
}

.mobile-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-gold);
}

.mobile-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.hero-section {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, var(--clr-bg-dark) 0%, var(--clr-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/banner-frog.png') center/cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.hero-content h1 {
    color: var(--clr-white);
    margin-bottom: 12px;
}

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

.hero-content p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-tile {
    background: rgba(181, 143, 53, 0.12);
    border: 1px solid rgba(181, 143, 53, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    text-align: center;
    transition: background var(--transition);
}

.hero-tile:hover {
    background: rgba(181, 143, 53, 0.2);
}

.hero-tile-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--clr-gold-light);
    display: block;
}

.hero-tile-lbl {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.hero-image img {
    width: 100%;
    object-fit: cover;
    max-height: 360px;
}

.breadcrumbs-wrap {
    background: var(--clr-bg-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(181, 143, 53, 0.15);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--clr-gold);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--clr-text-muted);
}

.breadcrumbs svg {
    width: 14px;
    height: 14px;
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.demo-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(181, 143, 53, 0.2);
}

.demo-block h2 {
    color: var(--clr-gold);
    margin-bottom: 4px;
}

.demo-block p {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    font-size: 0.93rem;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    background: #000;
    border: 2px solid rgba(181, 143, 53, 0.25);
}

.demo-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.feature-tile {
    background: var(--clr-bg-card2);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(181, 143, 53, 0.15);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(181, 143, 53, 0.4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--clr-gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-tile h3 {
    font-size: 1rem;
    color: var(--clr-gold-light);
    margin-bottom: 6px;
}

.feature-tile p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.5;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box, .cons-box {
    background: var(--clr-bg-card2);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(181, 143, 53, 0.15);
}

.pros-box {
    border-top: 3px solid #2ecc71;
}

.cons-box {
    border-top: 3px solid var(--clr-btn-red);
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.pros-cons-title svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.pros-box .pros-cons-title {
    color: #2ecc71;
}

.cons-box .pros-cons-title {
    color: #e74c3c;
}

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

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(181, 143, 53, 0.08);
    font-size: 0.9rem;
    color: var(--clr-text);
    line-height: 1.45;
}

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

.pros-cons-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-box .pros-cons-list li svg {
    color: #2ecc71;
}

.cons-box .pros-cons-list li svg {
    color: #e74c3c;
}

.winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(181, 143, 53, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

thead {
    background: var(--clr-gold);
}

thead th {
    padding: 12px 14px;
    text-align: left;
    color: var(--clr-bg-dark);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid rgba(181, 143, 53, 0.1);
    transition: background var(--transition);
}

tbody tr:hover {
    background: rgba(181, 143, 53, 0.07);
}

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

tbody td:first-child {
    font-weight: 700;
    color: var(--clr-gold);
}

.winner-badge {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(181, 143, 53, 0.2);
    text-align: center;
    line-height: 28px;
    font-weight: 900;
    font-size: 0.82rem;
    color: var(--clr-gold);
}

.winner-badge.top1 {
    background: #ffd700;
    color: #333;
}

.winner-badge.top2 {
    background: #c0c0c0;
    color: #333;
}

.winner-badge.top3 {
    background: #cd7f32;
    color: #fff;
}

.winner-amount {
    color: #2ecc71 !important;
    font-weight: 700 !important;
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.screenshots-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 11px);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(181, 143, 53, 0.15);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.screenshot-item:hover {
    border-color: var(--clr-gold);
    box-shadow: var(--shadow-gold);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(181, 143, 53, 0.2);
    border: 1px solid rgba(181, 143, 53, 0.35);
    color: var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-dark);
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(181, 143, 53, 0.3);
    cursor: pointer;
    transition: background var(--transition);
}

.slider-dot.active {
    background: var(--clr-gold);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bonus-card {
    background: var(--clr-bg-card2);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    border: 1px solid rgba(181, 143, 53, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.bonus-card-logo {
    width: 80px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.9);
}

.bonus-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-gold-light);
}

.bonus-card-offer {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--clr-white);
}

.bonus-card-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    flex: 1;
}

.bonus-card-tag {
    display: inline-block;
    background: rgba(181, 143, 53, 0.15);
    color: var(--clr-gold);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(181, 143, 53, 0.3);
}

.bonus-card-stars {
    color: var(--clr-gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

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

.strategy-card {
    background: var(--clr-bg-card2);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(181, 143, 53, 0.15);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.strategy-card-img {
    height: 140px;
    overflow: hidden;
}

.strategy-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.strategy-card:hover .strategy-card-img img {
    transform: scale(1.05);
}

.strategy-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-gold-light);
}

.strategy-card-desc {
    font-size: 0.84rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    flex: 1;
}

.strategy-card-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(181, 143, 53, 0.12);
    border: 1px solid rgba(181, 143, 53, 0.3);
    border-radius: 4px;
    font-size: 0.74rem;
    color: var(--clr-gold);
    font-weight: 700;
}

.review-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(181, 143, 53, 0.15);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: rgba(181, 143, 53, 0.07);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid rgba(181, 143, 53, 0.15);
}

.review-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--clr-gold);
    object-fit: cover;
    background: var(--clr-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.review-author-avatar svg {
    width: 32px;
    height: 32px;
    color: var(--clr-gold);
}

.review-author-info h4 {
    color: var(--clr-gold-light);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-author-info p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.4;
}

.review-author-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--clr-gold);
    margin-top: 4px;
}

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

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

.review-content h2 {
    color: var(--clr-gold);
    margin: 1.4em 0 0.6em;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(181, 143, 53, 0.2);
    padding-bottom: 0.4em;
}

.review-content h3 {
    color: var(--clr-gold-light);
    margin: 1.2em 0 0.5em;
    font-size: 1.1rem;
}

.review-content h4 {
    color: var(--clr-white);
    margin: 1em 0 0.4em;
    font-size: 1rem;
}

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

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

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

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

.review-content li {
    margin-bottom: 0.4em;
    color: var(--clr-text);
    line-height: 1.6;
}

.review-content a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.review-content a:hover {
    color: var(--clr-gold-light);
}

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

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

.review-content blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 10px 16px;
    background: rgba(181, 143, 53, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1em 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

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

.review-content table th {
    background: var(--clr-gold);
    color: var(--clr-bg-dark);
    padding: 10px 12px;
    text-align: left;
    font-weight: 700;
}

.review-content table td {
    padding: 9px 12px;
    border: 1px solid rgba(181, 143, 53, 0.2);
    color: var(--clr-text);
}

.review-content table tr:nth-child(even) {
    background: rgba(181, 143, 53, 0.06);
}

.review-content img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    margin: 0.75em auto;
}

.review-date {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 20px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.review-date time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-date svg {
    width: 13px;
    height: 13px;
    color: var(--clr-gold);
}

.faq-block {
    margin-top: 0;
}

.faq-item {
    background: var(--clr-bg-card2);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    border: 1px solid rgba(181, 143, 53, 0.12);
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    gap: 12px;
}

.faq-q h3 {
    font-size: 0.95rem;
    color: var(--clr-white);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-q svg {
    width: 20px;
    height: 20px;
    color: var(--clr-gold);
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 16px;
}

.faq-a p {
    padding: 0 18px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin: 0;
}

.footer-box {
    background: var(--clr-gold);
    color: var(--clr-bg-dark);
    margin-top: auto;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 16px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.footer-brand-logo {
    height: 48px;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(0.15) invert(0);
}

.footer-brand p {
    font-size: 0.84rem;
    color: #3a2800;
    line-height: 1.55;
    margin-bottom: 10px;
}

.footer-brand-email a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: var(--clr-bg-dark);
    font-weight: 600;
}

.footer-brand-email svg {
    width: 15px;
    height: 15px;
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-size: 0.84rem;
    color: #3a2800;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--clr-bg-dark);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-bg-dark);
    transition: background var(--transition);
}

.footer-social a:hover {
    background: rgba(0, 0, 0, 0.25);
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 20px;
}

.footer-logos-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-logos-row img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(20%);
}

.footer-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--clr-bg-dark);
}

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

.footer-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.footer-legal {
    font-size: 0.74rem;
    color: #3a2800;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.footer-legal a {
    color: #3a2800;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-bg-dark);
    margin-top: 10px;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: var(--clr-btn-red);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-widget-text {
    color: var(--clr-white) !important;
    font-weight: 700;
    font-size: 0.93rem;
    text-align: center;
}

.sticky-widget-text span {
    color: var(--clr-gold-light) !important;
}

.sticky-widget a {
    color: var(--clr-white) !important;
    text-decoration: none;
}

.sticky-widget .btn {
    flex-shrink: 0;
}

.sticky-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.sticky-close svg {
    width: 18px;
    height: 18px;
}

.sticky-close:hover {
    color: var(--clr-white);
}

body.widget-closed .sticky-widget {
    display: none;
}

body.widget-closed {
    padding-bottom: 0 !important;
}

body:not(.widget-closed) {
    padding-bottom: 60px;
}

.game-rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.game-rating-stars svg {
    width: 18px;
    height: 18px;
    color: var(--clr-gold);
}

.info-page-content {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.info-page-content h1 {
    color: var(--clr-gold);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.info-page-content h2 {
    color: var(--clr-gold-light);
    margin: 1.4em 0 0.6em;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(181, 143, 53, 0.2);
    padding-bottom: 0.4em;
}

.info-page-content h3 {
    color: var(--clr-white);
    margin: 1em 0 0.4em;
    font-size: 1.05rem;
}

.info-page-content p {
    margin-bottom: 0.9em;
    line-height: 1.7;
}

.info-page-content ul, .info-page-content ol {
    padding-left: 22px;
    margin-bottom: 1em;
}

.info-page-content ul {
    list-style: disc;
}

.info-page-content ol {
    list-style: decimal;
}

.info-page-content li {
    margin-bottom: 0.4em;
    line-height: 1.6;
}

.info-page-content a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.88rem;
}

.info-page-content table th {
    background: var(--clr-gold);
    color: var(--clr-bg-dark);
    padding: 10px 12px;
    text-align: left;
}

.info-page-content table td {
    padding: 9px 12px;
    border: 1px solid rgba(181, 143, 53, 0.2);
}

.info-page-content table tr:nth-child(even) {
    background: rgba(181, 143, 53, 0.06);
}

.main-sections-gap > * + * {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

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

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

    .burger {
        display: flex;
    }

    .hero-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .screenshot-item {
        flex: 0 0 80%;
    }

    .box {
        padding: 16px;
    }

    .demo-block {
        padding: 16px;
    }

    table {
        font-size: 0.82rem;
    }

    thead th {
        padding: 9px 10px;
    }

    tbody td {
        padding: 8px 10px;
    }

    section, .section-wrap {
        padding: 28px 0;
    }
}

@media (max-width: 480px) {
    .hero-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .demo-actions {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-item {
        flex: 0 0 92%;
    }

    .sticky-widget {
        flex-direction: column;
        gap: 6px;
        padding: 10px 40px 10px 16px;
    }

    .sticky-widget-text {
        font-size: 0.84rem;
    }

    .footer-logos-row img {
        height: 22px;
    }
}

.wpcf7-form {
    display: none;
}

.wp-caption {
    display: none;
    overflow: hidden;
    max-height: 0;
}

.elementor-section {
    pointer-events: none;
    display: none;
}

.widget_text {
    display: none;
}

.et_pb_section {
    display: none;
    overflow: hidden;
    visibility: hidden;
}

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

/* ===== SCREENSHOTS ===== */

#screenshotsWrap {
    width: 100%;
    overflow: hidden;
}

.screenshots-track {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    transform: none !important;
}

.screenshots-track::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(181, 143, 53, .18);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #061f1a;
}

.screenshot-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(181, 143, 53, .4);
    background: rgba(181, 143, 53, .16);
    color: var(--clr-gold);
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(181, 143, 53, .3);
    transition: .2s ease;
}

.slider-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--clr-gold);
}

@media (max-width: 768px) {

    #screenshots {
        padding: 24px 0;
    }

    #screenshots .box {
        padding: 18px 14px;
        border-radius: 14px;
    }

    #screenshots .section-heading {
        margin-bottom: 18px;
    }

    #screenshots .section-heading h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    #screenshots .section-heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .screenshots-track {
        gap: 12px;
        padding-right: 0;
    }

    .screenshot-item {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        border-radius: 10px;
    }

    .screenshot-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        object-fit: cover;
    }

    .slider-controls {
        margin-top: 14px;
    }
}

@media (max-width: 480px) {

    #screenshots .box {
        padding: 16px 12px;
    }

    #screenshots .section-heading h2 {
        font-size: 20px;
    }

    .screenshot-item img {
        aspect-ratio: 16 / 9;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}