@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --c-header: #f17302;
    --c-header-dark: #c85e00;
    --c-btn-gold: #cfa317;
    --c-btn-green: #60b700;
    --c-bg: #2a0200;
    --c-bg2: #3d0400;
    --c-bg3: #1a0100;
    --c-surface: #400600;
    --c-surface2: #551000;
    --c-text: #f5e6c8;
    --c-text-muted: #c4a882;
    --c-gold: #cfa317;
    --c-gold-light: #f5c842;
    --c-orange: #f17302;
    --c-green: #60b700;
    --c-border: #7a2a00;
    --c-border2: #9a3a00;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(207, 163, 23, 0.3);
    --ff-heading: 'Bebas Neue', sans-serif;
    --ff-body: 'Open Sans', sans-serif;
}

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

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

body {
    font-family: var(--ff-body);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
}

.x3k9p {
    display: none;
}

.m7r2q {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.f8n1j {
    position: absolute;
    left: -9999px;
}

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: color .2s;
}

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

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

h1, h2, h3, h4, h5 {
    font-family: var(--ff-heading);
    letter-spacing: .04em;
    color: var(--c-gold-light);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.65;
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

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

.box {
    position: relative;
}

.section-gap {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-orange));
    margin: 12px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    letter-spacing: .06em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s, background .18s;
    white-space: nowrap;
}

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

.btn--green {
    background: var(--c-btn-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(96, 183, 0, .4);
}

.btn--green:hover {
    background: #72d400;
    box-shadow: 0 6px 20px rgba(96, 183, 0, .6);
    color: #fff;
}

.btn--gold {
    background: var(--c-btn-gold);
    color: #1a0800;
    box-shadow: 0 4px 14px rgba(207, 163, 23, .4);
}

.btn--gold:hover {
    background: var(--c-gold-light);
    box-shadow: 0 6px 20px rgba(207, 163, 23, .6);
    color: #1a0800;
}

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

.btn--outline:hover {
    background: var(--c-gold);
    color: #1a0800;
}

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ─── SITE HEADER ─── */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    transition: background .18s;
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(0, 0, 0, .2);
    color: #fff;
}

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

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

.jackpot-badge {
    background: var(--c-bg3);
    border: 1px solid var(--c-gold);
    border-radius: 20px;
    padding: 4px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    cursor: default;
}

.jackpot-badge .jb-label {
    font-size: .65rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.jackpot-badge .jb-amount {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    color: var(--c-gold-light);
    letter-spacing: .03em;
}

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

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

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-header-dark);
    padding: 16px 20px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: .95rem;
}

.mobile-nav a:hover {
    background: rgba(0, 0, 0, .2);
    color: #fff;
}

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

/* ─── HERO ─── */
.hero-section {
    position: relative;
    background: var(--c-bg3);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(42, 2, 0, .92) 30%, rgba(42, 2, 0, .4));
}

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

.hero-eyebrow {
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-orange);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content h1 {
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

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

.rtp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(207, 163, 23, .15);
    border: 1px solid var(--c-gold);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: .85rem;
    color: var(--c-gold-light);
    margin-bottom: 20px;
}

.rtp-badge strong {
    font-family: var(--ff-heading);
    font-size: 1rem;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs-bar {
    background: var(--c-bg3);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    font-size: .85rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-muted);
}

.breadcrumbs li::before {
    content: '›';
}

.breadcrumbs li:first-child::before {
    display: none;
}

.breadcrumbs a {
    color: var(--c-text-muted);
}

.breadcrumbs a:hover {
    color: var(--c-gold);
}

.breadcrumbs li:last-child {
    color: var(--c-text);
}

/* ─── GAME DEMO + DETAILS ─── */
.game-section {
    padding: 60px 0;
}

.game-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
}

.demo-frame-wrapper {
    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.demo-frame-wrapper iframe {
    width: 100%;
    height: 420px;
    border: none;
}

.demo-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 14px;
    background: var(--c-bg3);
}

.game-details-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.gd-header {
    background: var(--c-header);
    padding: 14px 20px;
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: .05em;
}

.gd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.gd-table tr {
    border-bottom: 1px solid var(--c-border);
}

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

.gd-table tr:nth-child(even) {
    background: rgba(255, 255, 255, .03);
}

.gd-table td {
    padding: 9px 16px;
    vertical-align: middle;
}

.gd-table td:first-child {
    color: var(--c-text-muted);
    width: 44%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.gd-table td:last-child {
    color: var(--c-text);
    font-weight: 600;
}

.gd-table td svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: var(--c-gold);
}

/* ─── REVIEWS ─── */
.reviews-section {
    padding: 60px 0;
    background: var(--c-bg3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: transform .2s, box-shadow .2s;
}

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

.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-header), var(--c-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--c-text);
}

.review-location {
    font-size: .78rem;
    color: var(--c-text-muted);
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.review-text {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--c-text-muted);
}

.review-form-wrapper {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px;
    max-width: 640px;
    margin: 0 auto;
}

.review-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--c-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--c-bg3);
    border: 1px solid var(--c-border2);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--c-text);
    font-family: var(--ff-body);
    font-size: .95rem;
    transition: border-color .18s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-gold);
}

.form-group textarea {
    min-height: 100px;
}

.form-success {
    display: none;
    background: rgba(96, 183, 0, .15);
    border: 1px solid var(--c-green);
    color: var(--c-green);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    font-weight: 600;
}

.form-success.is-visible {
    display: block;
}

/* ─── SCREENSHOTS ─── */
.screenshots-section {
    padding: 60px 0;
}

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

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

.screenshots-track .slide-item {
    flex: 0 0 calc(33.333% - 11px);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.screenshots-track .slide-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.slider-btn {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    color: var(--c-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
    font-size: 1.1rem;
}

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

/* ─── VIDEO ─── */
.video-section {
    padding: 60px 0;
    background: var(--c-bg3);
}

.video-wrapper {
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    position: relative;
    aspect-ratio: 16/9;
}

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

/* ─── STRATEGIES ─── */
.strategies-section {
    padding: 60px 0;
}

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

.strategy-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

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

.strategy-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.strategy-card-body {
    padding: 20px;
}

.strategy-card-body h4 {
    color: var(--c-gold-light);
    margin-bottom: 8px;
}

.strategy-card-body p {
    font-size: .88rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.55;
}

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

.content-review .text h2,
.content-review .text h3,
.content-review .text h4,
.content-review .text h5 {
    margin: 1.5rem 0 .8rem;
}

.content-review .text p {
    line-height: 1.7;
    color: var(--c-text);
    margin-bottom: 1rem;
}

.content-review .text ul,
.content-review .text ol {
    margin: .8rem 0 1rem 1.6rem;
}

.content-review .text li {
    margin-bottom: .4rem;
    line-height: 1.6;
    color: var(--c-text);
}

.content-review .text strong {
    color: var(--c-gold-light);
}

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

.content-review .text blockquote {
    border-left: 4px solid var(--c-gold);
    padding: 12px 20px;
    margin: 1.5rem 0;
    background: rgba(207, 163, 23, .08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--c-text-muted);
}

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

.content-review .text th {
    background: var(--c-header);
    color: #fff;
    text-align: left;
    padding: 10px 14px;
}

.content-review .text td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--c-border);
    text-align: left;
}

.content-review .text tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

.content-review .text img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

.content-review .text hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 2rem 0;
}

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

.author-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.author-card-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
}

.author-sidebar {
    background: var(--c-bg3);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--c-border);
}

.author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-gold);
    margin-bottom: 16px;
}

.author-name {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    color: var(--c-gold-light);
}

.author-title {
    font-size: .85rem;
    color: var(--c-orange);
    font-weight: 600;
    margin: 4px 0 8px;
}

.author-location {
    font-size: .82rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.author-edu {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-top: 8px;
}

.author-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.author-socials a {
    width: 36px;
    height: 36px;
    background: var(--c-surface2);
    border: 1px solid var(--c-border2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    transition: background .18s;
}

.author-socials a:hover {
    background: var(--c-header);
    color: #fff;
}

.author-socials svg {
    width: 18px;
    height: 18px;
}

.author-main {
    padding: 32px;
}

.author-main h3 {
    margin-bottom: 16px;
}

.author-main p {
    color: var(--c-text);
    font-size: .95rem;
}

.author-contact-list {
    list-style: none;
    margin: 16px 0;
}

.author-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.author-contact-list svg {
    width: 16px;
    height: 16px;
    fill: var(--c-gold);
    flex-shrink: 0;
}

.author-meta {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
    flex-wrap: wrap;
}

.author-meta-item {
    font-size: .8rem;
    color: var(--c-text-muted);
}

.author-meta-item strong {
    color: var(--c-text);
    display: block;
    font-size: .9rem;
}

.author-exp-bar {
    background: var(--c-bg3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-top: 16px;
    font-size: .88rem;
}

.author-exp-bar span {
    color: var(--c-gold);
    font-weight: 700;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--c-header);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.footer-brand {
}

.footer-logo {
    height: 46px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.55;
}

.footer-col h5 {
    color: #fff;
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: .05em;
}

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

.footer-nav li {
    margin-bottom: 7px;
}

.footer-nav a {
    color: rgba(255, 255, 255, .8);
    font-size: .88rem;
}

.footer-nav a:hover {
    color: #fff;
}

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

.payment-badge {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}

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

.trust-badge {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .03em;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: background .18s;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, .3);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
}

.footer-flag svg {
    width: 28px;
    height: 20px;
    border-radius: 2px;
    overflow: hidden;
}

.footer-copyright {
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
    text-align: center;
    flex: 1;
}

.footer-legal {
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 8px;
    text-align: center;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-provider img {
    height: 30px;
    width: auto;
    opacity: .85;
    filter: brightness(10);
}

/* ─── BONUS WIDGET ─── */
.bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a3a00, #2d6600);
    border-top: 2px solid var(--c-green);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s ease;
}

.bonus-widget.is-visible {
    transform: translateY(0);
}

.bonus-widget-text {
    color: #fff;
}

.bonus-widget-text strong {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    color: #a3ff4d;
    letter-spacing: .04em;
}

.bonus-widget-text span {
    font-size: .82rem;
    opacity: .85;
    display: block;
}

.bonus-widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

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

.bonus-widget .btn--green {
    flex-shrink: 0;
}

/* ─── WP DECOY (unused, unaffecting) ─── */
.wp-block-group {
    display: contents;
}

.wp-element-caption {
    display: none;
}

.elementor-widget-wrap {
    display: contents;
}

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

.has-global-padding {
    display: contents;
}

div[data-elementor-type] {
    display: contents;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .game-layout {
        grid-template-columns: 1fr;
    }

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

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

    .author-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--c-border);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .author-sidebar > * {
        flex-shrink: 0;
    }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .screenshots-track .slide-item {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 620px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

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

    .screenshots-track .slide-item {
        flex: 0 0 100%;
    }

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

    .header-inner {
        padding: 10px 12px;
        gap: 8px;
    }

    .jackpot-badge {
        display: none;
    }

    .gd-table td:first-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .bonus-widget {
        flex-wrap: wrap;
    }

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

@media (max-width: 480px) {
    .demo-frame-wrapper iframe {
        height: 280px;
    }

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--c-bg3);
}

::-webkit-scrollbar-thumb {
    background: var(--c-header);
    border-radius: 4px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(207, 163, 23, .4);
    }
    50% {
        box-shadow: 0 0 20px rgba(207, 163, 23, .7);
    }
}

.fade-up {
    animation: fadeUp .5s ease both;
}

.animate-glow {
    animation: pulse-glow 2.5s infinite;
}

[data-aos] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s;
}

[data-aos].is-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ─── FAQ ─── */
.faq-section {
    padding: 60px 0;
    background: var(--c-bg3);
}

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

.faq-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--c-text);
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question:hover {
    color: var(--c-gold-light);
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--c-header);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--c-text-muted);
    font-size: .93rem;
    line-height: 1.65;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
}

/* ─── TABLE horizontal scroll ─── */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
