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

:root {
    --clr-header: #3f1300;
    --clr-header-dark: #2a0d00;
    --clr-btn-primary: #ffce0a;
    --clr-btn-primary-hover: #e8b800;
    --clr-btn-secondary: #0076f0;
    --clr-btn-secondary-hover: #005dbe;
    --clr-bg: #5470ca;
    --clr-bg-dark: #3d57b8;
    --clr-bg-light: #6a83d4;
    --clr-text-light: #ffffff;
    --clr-text-dark: #1a1a1a;
    --clr-card-bg: rgba(255, 255, 255, 0.08);
    --clr-card-bg-solid: #2e1a00;
    --clr-gold: #ffce0a;
    --clr-accent: #ff8c00;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
    --font: 'Oswald', sans-serif;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

.box {
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.18);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--clr-gold);
    outline-offset: 3px;
}

.btn--gold {
    background: var(--clr-btn-primary);
    color: #1a0900;
}

.btn--gold:hover {
    background: var(--clr-btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 206, 10, 0.4);
    color: #1a0900;
}

.btn--blue {
    background: var(--clr-btn-secondary);
    color: #fff;
}

.btn--blue:hover {
    background: var(--clr-btn-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 118, 240, 0.4);
    color: #fff;
}

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

.btn--outline:hover {
    background: var(--clr-gold);
    color: #1a0900;
    transform: translateY(-2px);
}

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

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

/* ─── HEADER ───────────────────────────────────────── */
.site-header {
    background: var(--clr-header);
    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;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-gold);
}

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

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

.lang-picker {
    position: relative;
}

.lang-picker select {
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font);
    font-size: 0.82rem;
    padding: 6px 28px 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.lang-picker::after {
    content: '▾';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    font-size: 0.75rem;
}

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

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

.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: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-header-dark);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(63, 19, 0, 0.92) 0%, rgba(63, 19, 0, 0.55) 55%, rgba(63, 19, 0, 0.1) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 18px;
}

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

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

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

/* ─── BREADCRUMBS ───────────────────────────────────── */
.breadcrumbs {
    padding: 12px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumbs li + li::before {
    content: '/';
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumbs li:last-child {
    color: var(--clr-gold);
}

/* ─── SECTION TITLES ────────────────────────────────── */
.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.section-title span {
    color: var(--clr-gold);
}

.section-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    font-weight: 300;
}

.section-header {
    margin-bottom: 28px;
}

/* ─── CONTENT SECTION ───────────────────────────────── */
.content-section {
    padding: 40px 0;
}

/* ─── DEMO + GAME DETAILS ───────────────────────────── */
.demo-details-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.demo-col {
    flex: 1 1 420px;
    min-width: 0;
}

.demo-frame-wrap {
    position: relative;
    background: #000;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 206, 10, 0.3);
    box-shadow: var(--shadow-lg);
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

.demo-overlay-btn {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
    gap: 12px;
    z-index: 10;
    transition: opacity var(--transition);
}

.demo-overlay-btn p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.demo-actions {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    justify-content: center;
    flex-wrap: wrap;
}

.details-col {
    flex: 1 1 320px;
    min-width: 0;
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.game-details-table thead th {
    background: var(--clr-header);
    color: var(--clr-gold);
    text-align: left;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-details-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--transition);
}

.game-details-table tbody tr:last-child {
    border-bottom: none;
}

.game-details-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.game-details-table td {
    padding: 9px 16px;
    font-size: 0.88rem;
    vertical-align: middle;
}

.game-details-table td:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    width: 48%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.game-details-table td:last-child {
    color: #fff;
    font-weight: 500;
}

.game-details-table td svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
}

.rtp-badge {
    display: inline-block;
    background: rgba(0, 118, 240, 0.25);
    color: #5aacff;
    border: 1px solid rgba(0, 118, 240, 0.4);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ─── JACKPOTS ──────────────────────────────────────── */
.jackpots-section {
    padding: 40px 0;
}

.jackpots-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1 1 280px;
    background: linear-gradient(135deg, rgba(63, 19, 0, 0.9) 0%, rgba(20, 6, 0, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 22px 22px;
    border: 1px solid rgba(255, 206, 10, 0.25);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.08;
}

.jackpot-card.gold::before {
    background: #ffce0a;
}

.jackpot-card.silver::before {
    background: #c0c0c0;
}

.jackpot-card.bronze::before {
    background: #cd7f32;
}

.jackpot-tier {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.jackpot-card.gold .jackpot-tier {
    color: #ffce0a;
}

.jackpot-card.silver .jackpot-tier {
    color: #d0d0d0;
}

.jackpot-card.bronze .jackpot-tier {
    color: #cd7f32;
}

.jackpot-tier svg {
    width: 18px;
    height: 18px;
}

.jackpot-amount {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255, 206, 10, 0.3);
}

.jackpot-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
    font-weight: 300;
}

.jackpot-winners {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.jackpot-winners-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    font-weight: 500;
}

.jackpot-winner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.82rem;
}

.jackpot-winner-row + .jackpot-winner-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.winner-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.winner-nick {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.winner-amount {
    color: var(--clr-gold);
    font-weight: 600;
    font-size: 0.78rem;
}

/* ─── REVIEWS ───────────────────────────────────────── */
.reviews-section {
    padding: 40px 0;
}

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

.review-card {
    flex: 1 1 280px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
    border-color: rgba(255, 206, 10, 0.3);
    transform: translateY(-3px);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 206, 10, 0.3);
    flex-shrink: 0;
}

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

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.review-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.stars svg {
    width: 14px;
    height: 14px;
}

.review-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
}

/* Review form */
.review-form-wrap {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    max-width: 580px;
}

.review-form-wrap h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font);
    font-size: 0.92rem;
    padding: 10px 14px;
    transition: border-color var(--transition), background var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-btn-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-success {
    display: none;
    background: rgba(0, 180, 80, 0.15);
    border: 1px solid rgba(0, 180, 80, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #5dde8a;
    font-size: 0.92rem;
    margin-top: 14px;
    align-items: center;
    gap: 8px;
}

.form-success.visible {
    display: flex;
}

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

.screenshots-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1 1 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition), transform var(--transition);
    cursor: pointer;
}

.screenshot-item:hover {
    border-color: rgba(255, 206, 10, 0.4);
    transform: scale(1.02);
}

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

.screenshots-slider {
    display: none;
}

.slider-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-btn-secondary) rgba(255, 255, 255, 0.1);
}

.slider-track::-webkit-scrollbar {
    height: 4px;
}

.slider-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.slider-track::-webkit-scrollbar-thumb {
    background: var(--clr-btn-secondary);
    border-radius: 2px;
}

.slider-item {
    flex: 0 0 75vw;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

/* ─── CONTENT / REVIEW BLOCK ────────────────────────── */
.content-review {
    padding: 40px 0;
}

.content-block {
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.content-block h2,
.content-block h3,
.content-block h4 {
    color: #fff;
    margin: 24px 0 12px;
    font-weight: 700;
    line-height: 1.2;
}

.content-block h2 {
    font-size: 1.6rem;
}

.content-block h3 {
    font-size: 1.3rem;
    color: var(--clr-gold);
}

.content-block h4 {
    font-size: 1.1rem;
}

.content-block h2:first-child,
.content-block h3:first-child,
.content-block h4:first-child {
    margin-top: 0;
}

.content-block p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 0.97rem;
    line-height: 1.72;
}

.content-block ul,
.content-block ol {
    margin: 12px 0 16px 22px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.65;
}

.content-block li {
    margin-bottom: 6px;
}

.content-block a {
    color: var(--clr-btn-secondary);
    text-decoration: underline;
}

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

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

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

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    text-align: left;
    font-size: 0.88rem;
}

.content-block table th {
    background: var(--clr-header);
    color: var(--clr-gold);
    padding: 10px 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block table td {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    vertical-align: top;
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.content-block blockquote {
    border-left: 4px solid var(--clr-gold);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(255, 206, 10, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-weight: 300;
}

.content-block hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

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

.author-card {
    display: flex;
    gap: 28px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.author-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--clr-gold);
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
    min-width: 200px;
}

.author-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.82rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    margin-bottom: 6px;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

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

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

.author-bio {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.68;
    margin-bottom: 14px;
}

.author-dates {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

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

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section {
    padding: 40px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: #fff;
    transition: background var(--transition);
    list-style: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question::marker {
    display: none;
}

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

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
}

/* ─── FOOTER ────────────────────────────────────────── */
.site-footer {
    background: var(--clr-header);
    margin-top: auto;
    border-top: 3px solid rgba(255, 206, 10, 0.25);
}

.footer-main {
    padding: 48px 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    line-height: 1.6;
    max-width: 220px;
}

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

.footer-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-gold);
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding: 22px 0;
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 0;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--transition), color var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-row-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0 0;
}

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

.footer-provider-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(1.2);
    transition: opacity var(--transition);
}

.footer-provider-logo img:hover {
    opacity: 1;
}

.footer-au-flag {
    font-size: 1.4rem;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.6;
}

.footer-legal {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.32);
    font-weight: 300;
    line-height: 1.65;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
}

/* ─── WIDGET ────────────────────────────────────────── */
.casino-widget {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    width: 280px;
}

.widget-toggle {
    background: var(--clr-header);
    border: 2px solid rgba(255, 206, 10, 0.4);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--clr-gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.widget-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.casino-widget.collapsed .widget-toggle svg {
    transform: rotate(180deg);
}

.widget-body {
    background: var(--clr-header-dark);
    border: 2px solid rgba(255, 206, 10, 0.3);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: max-height 0.32s ease, opacity 0.28s ease;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
}

.casino-widget.collapsed .widget-body {
    max-height: 0;
    opacity: 0;
}

.widget-casino-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--transition);
}

.widget-casino-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.widget-casino-rank {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-header);
    border: 1px solid rgba(255, 206, 10, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.widget-casino-info {
    flex: 1;
    min-width: 0;
}

.widget-casino-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-casino-bonus {
    font-size: 0.72rem;
    color: var(--clr-gold);
    font-weight: 400;
}

.widget-casino-card .btn {
    flex-shrink: 0;
    padding: 5px 10px;
    font-size: 0.72rem;
}

/* ─── INFO PAGES ────────────────────────────────────── */
.info-content {
    padding: 40px 0 60px;
}

.info-content h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 700;
}

.info-content h2 {
    font-size: 1.35rem;
    color: var(--clr-gold);
    margin: 28px 0 10px;
    font-weight: 700;
}

.info-content p {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    font-size: 0.93rem;
    line-height: 1.72;
    margin-bottom: 12px;
}

.info-content ul {
    margin: 10px 0 14px 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.65;
}

.info-content li {
    margin-bottom: 6px;
}

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

/* ─── UTILITY ───────────────────────────────────────── */
.mt1 {
    margin-top: 8px;
}

.mt2 {
    margin-top: 16px;
}

.mt3 {
    margin-top: 24px;
}

.mb1 {
    margin-bottom: 8px;
}

.mb2 {
    margin-bottom: 16px;
}

.text-gold {
    color: var(--clr-gold);
}

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

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 8px;
}

.w-100 {
    width: 100%;
}

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

/* Horizontal scroll for tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    min-width: 480px;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.52s ease both;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 206, 10, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 206, 10, 0);
    }
}

.pulse {
    animation: pulse-glow 2.2s infinite;
}

@keyframes counter-up {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jackpot-amount {
    animation: counter-up 0.5s ease;
}

/* Wp-mimicry (non-rendered) */
.wp-block-group,
.wp-block-columns,
.elementor-widget-container,
.entry-content,
.post-content {
    display: contents;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
    .demo-details-row {
        flex-direction: column;
    }

    .details-col {
        width: 100%;
    }

    .demo-col {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-header-dark);
        padding: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        align-items: flex-start;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        padding: 10px 14px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .header-inner {
        position: relative;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content {
        max-width: 100%;
    }

    .jackpots-grid {
        flex-direction: column;
    }

    .jackpot-card {
        flex: none;
    }

    .footer-main {
        flex-direction: column;
        gap: 24px;
    }

    .casino-widget {
        width: calc(100% - 24px);
        right: 12px;
        bottom: 12px;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .review-form-wrap {
        padding: 22px 16px;
    }

    .author-card {
        flex-direction: column;
    }

    .author-photo {
        margin: 0 auto;
    }

    .author-info {
        text-align: center;
    }

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

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .game-details-table td:first-child {
        display: flex;
    }

    .footer-row-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-block {
        padding: 22px 16px;
    }
}

/* Hidden WP-style elements (exist in DOM for fingerprinting but do not render) */
.wp-site-blocks,
.wp-block-template-part,
.is-layout-constrained,
.elementor-section,
.et_pb_section {
    display: contents;
}

/* Unused styles for unikalization */
.r7x2w9 {
    color: transparent;
    pointer-events: none;
}

.k4m1pq {
    opacity: 0;
}

.z9f3ns {
    display: none !important;
}

.b8c2xv {
    visibility: hidden;
}

.p5t7rk::before {
    content: '';
    display: none;
}
