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

:root {
    --clr-nav: #00114c;
    --clr-nav-dark: #000d3a;
    --clr-bg: #00229e;
    --clr-bg-dark: #001a7a;
    --clr-btn-gold: #d07f1e;
    --clr-btn-gold-hover: #b86d10;
    --clr-btn-green: #348945;
    --clr-btn-green-hover: #277035;
    --clr-text: #ffffff;
    --clr-text-muted: #a8c0ff;
    --clr-text-dark: #e2eaff;
    --clr-card: #001a7a;
    --clr-card-border: #1a3fbb;
    --clr-gold: #f0c040;
    --clr-accent: #d07f1e;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --transition: 0.22s ease;
}

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

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

body {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

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

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

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

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

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 0.9rem;
    color: var(--clr-text-dark);
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
    color: var(--clr-text-dark);
}

li {
    margin-bottom: 0.35rem;
}

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

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

.box {
    border-radius: var(--radius-md);
}

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

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

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

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

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

.btn--green:hover {
    background: var(--clr-btn-green-hover);
    color: #fff;
}

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

.btn--gold:hover {
    background: var(--clr-btn-gold-hover);
    color: #fff;
}

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

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

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

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

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--clr-card-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title svg {
    flex-shrink: 0;
}

/* ========== HEADER ========== */
.site-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text-muted);
    font-weight: 400;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

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

.header-nav a svg {
    flex-shrink: 0;
}

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

.jackpot-ticker {
    background: linear-gradient(135deg, #0a1f6e, #001050);
    border: 1px solid var(--clr-btn-gold);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--clr-gold);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    white-space: nowrap;
}

.jackpot-ticker span {
    display: block;
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    font-weight: 300;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    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);
}

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

    .header-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--clr-nav-dark);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 2px solid var(--clr-card-border);
        z-index: 999;
    }

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

    .header-nav a {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 14px;
    }

    .burger {
        display: flex;
    }

    .jackpot-ticker {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-actions .btn--outline {
        display: none;
    }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-nav-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/red-hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: brightness(0.55);
    transform: scale(1.02);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 17, 76, 0.85) 0%, rgba(0, 17, 76, 0.3) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 16px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(208, 127, 30, 0.15);
    border: 1px solid var(--clr-btn-gold);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--clr-btn-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-dark);
    max-width: 480px;
    margin-bottom: 1.8rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.rating-stars svg {
    color: var(--clr-gold);
}

.rating-val {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.rating-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    font-size: 1.2rem;
    color: var(--clr-gold);
    font-weight: 700;
}

.hero-stat span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs-wrap {
    background: var(--clr-nav-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.breadcrumbs a, .breadcrumbs span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.breadcrumbs .sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
}

.breadcrumbs .current {
    color: var(--clr-text-dark);
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.content-section {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}

/* ========== DEMO + GAME DETAILS ========== */
.game-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.demo-wrap {
    position: relative;
    border-radius: var(--radius-md);
    border: 2px solid var(--clr-card-border);
    background: #000;
}

.demo-iframe {
    width: 100%;
    aspect-ratio: 16/10;
    border: none;
}

.demo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 17, 76, 0.95));
    display: flex;
    justify-content: center;
}

.demo-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--clr-btn-gold);
    color: var(--clr-btn-gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

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

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

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

.game-details-table td {
    padding: 8px 6px;
    vertical-align: middle;
}

.gd-key {
    color: var(--clr-text-muted);
    font-weight: 400;
    width: 48%;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gd-val {
    color: var(--clr-text);
    font-weight: 500;
}

.gd-val .badge {
    display: inline-block;
    background: rgba(52, 137, 69, 0.2);
    border: 1px solid var(--clr-btn-green);
    color: #6de882;
    font-size: 0.75rem;
    padding: 1px 8px;
    border-radius: 20px;
}

.gd-val .badge-gold {
    background: rgba(208, 127, 30, 0.2);
    border-color: var(--clr-btn-gold);
    color: var(--clr-gold);
}

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

/* ========== PROS/CONS ========== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box, .cons-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid;
}

.pros-box {
    border-color: rgba(52, 137, 69, 0.4);
}

.cons-box {
    border-color: rgba(208, 60, 60, 0.4);
}

.pros-box h3, .cons-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-box h3 {
    color: #6de882;
}

.cons-box h3 {
    color: #f08080;
}

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

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

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

.pros-box ul li::before {
    content: '✓';
    color: #6de882;
    font-weight: 700;
    flex-shrink: 0;
}

.cons-box ul li::before {
    content: '✗';
    color: #f08080;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== WINNERS TABLE ========== */
.winners-table-wrap {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 400px;
}

.winners-table thead tr {
    background: rgba(0, 0, 0, 0.35);
}

.winners-table th {
    padding: 10px 12px;
    text-align: left;
    color: var(--clr-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--clr-card-border);
}

.winners-table td {
    padding: 9px 12px;
    color: var(--clr-text-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winners-table tbody tr {
    transition: background var(--transition);
}

.winners-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.winners-table .rank-1 td:first-child {
    color: var(--clr-gold);
    font-weight: 700;
}

.winners-table .rank-2 td:first-child {
    color: #c0c0c0;
    font-weight: 600;
}

.winners-table .rank-3 td:first-child {
    color: #cd7f32;
    font-weight: 600;
}

.w-amount {
    color: #6de882;
    font-weight: 600;
}

.w-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.72rem;
}

.w-badge-gold {
    background: rgba(240, 192, 64, 0.15);
    color: var(--clr-gold);
}

.w-badge-green {
    background: rgba(109, 232, 130, 0.12);
    color: #6de882;
}

/* ========== BONUS CARDS ========== */
.bonus-slider-wrap {
    position: relative;
    overflow: hidden;
}

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

.bonus-card {
    background: linear-gradient(145deg, #001a7a, #00114c);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-gold), var(--clr-gold));
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.bonus-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(208, 127, 30, 0.15);
    border: 1px solid rgba(208, 127, 30, 0.4);
    color: var(--clr-btn-gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

.bonus-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.bonus-card-offer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1.1;
}

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

.bonus-card-terms {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 10px;
}

@media (max-width: 900px) {
    .bonus-cards {
        display: flex;
        gap: 0;
        transition: transform 0.35s ease;
    }

    .bonus-card {
        min-width: calc(100% - 32px);
        margin: 0 8px;
        flex-shrink: 0;
    }

    .bonus-slider-wrap {
        overflow: hidden;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        transition: background var(--transition);
    }

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

@media (min-width: 901px) {
    .slider-dots {
        display: none;
    }
}

/* ========== CONTENT BLOCK ========== */
.content-text h2 {
    color: var(--clr-gold);
    margin: 1.8rem 0 0.8rem;
    font-size: 1.45rem;
}

.content-text h3 {
    color: var(--clr-text);
    margin: 1.4rem 0 0.6rem;
    font-size: 1.2rem;
}

.content-text h4 {
    color: var(--clr-text-muted);
    margin: 1.1rem 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.content-text p {
    color: var(--clr-text-dark);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.content-text ul, .content-text ol {
    color: var(--clr-text-dark);
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.4rem;
    line-height: 1.65;
}

.content-text a {
    color: var(--clr-btn-gold);
    border-bottom: 1px solid rgba(208, 127, 30, 0.35);
}

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

.content-text blockquote {
    border-left: 3px solid var(--clr-btn-gold);
    padding: 12px 18px;
    margin: 1.2rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: 0.9rem;
    text-align: left;
}

.content-text th {
    background: rgba(0, 0, 0, 0.3);
    padding: 9px 12px;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1px solid var(--clr-card-border);
}

.content-text td {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--clr-text-dark);
}

.content-text tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

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

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

.faq-item.open {
    border-color: var(--clr-btn-gold);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text);
    user-select: none;
    transition: background var(--transition);
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

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

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

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

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 20px 16px;
}

.faq-a p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ========== AUTHOR ========== */
.author-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
}

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

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

.author-role {
    font-size: 0.82rem;
    color: var(--clr-btn-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.author-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

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

.author-bio {
    font-size: 0.88rem;
    color: var(--clr-text-dark);
    line-height: 1.7;
    margin-bottom: 14px;
}

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

.author-socials a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    transition: all var(--transition);
}

.author-socials a:hover {
    background: rgba(208, 127, 30, 0.15);
    border-color: var(--clr-btn-gold);
    color: var(--clr-btn-gold);
}

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

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

@media (max-width: 580px) {
    .author-card {
        grid-template-columns: 1fr;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--clr-nav);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 0 0;
    margin-top: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
}

.footer-brand .footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.footer-nav h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

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

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

.footer-nav ul a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-nav ul a:hover {
    color: var(--clr-btn-gold);
}

.footer-trust h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.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 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.04em;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(208, 127, 30, 0.2);
    border-color: var(--clr-btn-gold);
    color: var(--clr-btn-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.au-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    background: linear-gradient(#00008B 0%, #00008B 33%, #CC0000 33%, #CC0000 66%, #00008B 66%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    padding: 10px 0;
}

.footer-legal {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.65;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-provider img {
    height: 28px;
    width: auto;
    opacity: 0.65;
    filter: brightness(0) invert(1);
}

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

/* ========== WIDGET ========== */
.bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--clr-nav-dark), #001a7a);
    border-top: 2px solid var(--clr-btn-gold);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.bonus-widget-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--clr-gold);
    font-weight: 700;
}

.bonus-widget-text span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0;
}

.widget-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ========== WP DECOY ELEMENTS ========== */
.wp-block-group, .entry-content, .wp-caption, .widget-area {
    display: contents;
}

.elementor-section-boxed {
    max-width: 1200px;
    margin: 0 auto;
}

.yoast-seo-meta-tag {
    display: none !important;
}

.wp-post-image {
    display: block;
}

.logged-in-as {
    display: none;
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(208, 127, 30, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(208, 127, 30, 0.7);
    }
}

@keyframes counter-up {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.fade-in-up-d1 {
    animation-delay: 0.1s;
}

.fade-in-up-d2 {
    animation-delay: 0.22s;
}

.fade-in-up-d3 {
    animation-delay: 0.34s;
}

.fade-in-up-d4 {
    animation-delay: 0.46s;
}

.btn--green {
    animation: pulse-glow 2.8s ease-in-out infinite;
}

/* ========== SCROLL MARGIN ========== */
[id] {
    scroll-margin-top: 80px;
}

/* ========== INFO PAGE STYLES ========== */
.info-page {
    padding: 48px 0;
}

.info-page h1 {
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
}

.info-page .content-section {
    max-width: 860px;
}

.info-page p, .info-page li {
    color: var(--clr-text-dark);
    line-height: 1.75;
}

.info-page h2 {
    color: var(--clr-text);
    margin: 2rem 0 0.75rem;
    font-size: 1.25rem;
}

.info-page h3 {
    color: var(--clr-text-muted);
    margin: 1.4rem 0 0.5rem;
    font-size: 1.05rem;
}

.wc-block-components-totals-wrapper {
    display: none;
}

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

.acf-field, .acf-label {
    display: none;
}

.et_pb_section {
    contain: layout;
}

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

/* ========== MEDIA ========== */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }

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

    .content-section {
        padding: 20px 16px;
    }

    .main-content {
        padding: 20px 0 36px;
    }
}

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

    .winner-table-wrap {
        font-size: 0.82rem;
    }
}

.b2x9k {
    opacity: 1;
}

.m4j7q {
    display: block;
}

.z6r3p {
    visibility: visible;
}

.v8w2n {
    pointer-events: auto;
}

.h5f1t {
    overflow: auto;
}

.s9c4l {
    position: relative;
}

@media (max-width: 900px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
    }

    .wrapper,
    main,
    .container,
    .main-content,
    .content-grid,
    .content-section,
    .content-text,
    .game-top-grid,
    .demo-wrap,
    .pros-cons-grid,
    .bonus-slider-wrap,
    .bonus-cards,
    .author-card,
    .footer-grid {
        min-width: 0;
        max-width: 100%;
    }

    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 10000;
        width: 100%;
        overflow: visible;
    }

    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 64px;
        gap: 10px;
        padding: 8px 16px;
    }

    .header-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

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

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

    .header-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 7px;
        width: 100%;
        padding: 18px 16px 40px;
        overflow-y: auto;
        background: var(--clr-nav-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    }

    .header-nav.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-nav a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        font-size: 15px;
    }

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

    .jackpot-ticker {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
    }

    .header-actions .btn {
        min-height: 38px;
        padding: 7px 12px;
        font-size: 0.78rem;
    }

    .burger {
        position: relative;
        z-index: 10001;
        display: flex;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        min-height: auto;
        align-items: stretch;
    }

    .hero-bg {
        background-position: 62% center;
        transform: none;
    }

    .hero:hover .hero-bg {
        transform: none;
    }

    .hero-overlay {
        background: linear-gradient(
                90deg,
                rgba(0, 17, 76, 0.94) 0%,
                rgba(0, 17, 76, 0.78) 60%,
                rgba(0, 17, 76, 0.5) 100%
        );
    }

    .hero-content {
        width: 100%;
        max-width: none;
        padding: 54px 16px 42px;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.08;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 46px;
    }

    .hero-rating {
        gap: 10px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-stat {
        min-width: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.22);
    }

    .breadcrumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        padding-left: 16px;
        padding-right: 16px;
    }

    .breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .main-content {
        width: 100%;
        padding: 20px 0 36px;
    }

    .content-grid {
        gap: 18px;
    }

    .content-section {
        width: 100%;
        padding: 20px 16px;
        border-radius: 10px;
        overflow: hidden;
    }

    .section-title {
        align-items: flex-start;
        gap: 8px;
        font-size: clamp(1.25rem, 6vw, 1.65rem);
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .section-title svg {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .game-top-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .game-top-grid > * {
        min-width: 0;
        width: 100%;
    }

    .demo-wrap {
        width: 100%;
        border-radius: 10px;
    }

    .demo-iframe {
        width: 100%;
        min-height: 310px;
        border: 0;
    }

    .demo-overlay {
        padding: 12px;
        pointer-events: none;
    }

    .demo-overlay .btn {
        pointer-events: auto;
        max-width: calc(100% - 20px);
        white-space: normal;
        text-align: center;
    }

    .game-details-table {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .game-details-table td {
        padding: 9px 6px;
        vertical-align: top;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .game-details-table .gd-key {
        width: 48%;
        display: table-cell;
    }

    .game-details-table .gd-key svg {
        display: none;
    }

    .game-details-table .gd-val {
        width: 52%;
        text-align: right;
    }

    .pros-cons-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .pros-box,
    .cons-box {
        width: 100%;
        min-width: 0;
        padding: 17px 14px;
    }

    .pros-box li,
    .cons-box li {
        overflow-wrap: anywhere;
    }

    .winners-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
    }

    .winners-table {
        width: max-content;
        min-width: 720px;
    }

    .winners-table th,
    .winners-table td {
        white-space: nowrap;
    }

    .bonus-slider-wrap {
        width: 100%;
        overflow: visible;
    }

    .bonus-cards {
        display: flex;
        width: 100%;
        gap: 14px;
        padding: 2px 2px 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
    }

    .bonus-cards::-webkit-scrollbar {
        display: none;
    }

    .bonus-card {
        flex: 0 0 calc(88% - 4px);
        min-width: 0;
        margin: 0;
        scroll-snap-align: start;
    }

    .bonus-card .btn {
        width: 100%;
        margin-top: auto;
    }

    .slider-dots {
        display: none;
    }

    .content-text {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .content-text h2,
    .content-text h3,
    .content-text h4 {
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .content-text p,
    .content-text li,
    .content-text blockquote {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .content-text ul,
    .content-text ol {
        padding-left: 20px;
    }

    .content-text img,
    .content-text video,
    .content-text iframe {
        max-width: 100%;
        height: auto;
    }

    .content-text table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .content-text table th,
    .content-text table td {
        min-width: 130px;
    }

    .faq-q {
        padding: 14px;
        gap: 10px;
        font-size: 0.92rem;
    }

    .faq-q span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .faq-a {
        padding-left: 14px;
        padding-right: 14px;
    }

    .faq-item.open .faq-a {
        max-height: 1200px;
        padding: 0 14px 14px;
    }

    .author-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        text-align: center;
    }

    .author-avatar {
        width: 96px;
        height: 96px;
        margin: 0 auto;
    }

    .author-meta,
    .author-socials,
    .author-dates {
        justify-content: center;
    }

    .author-meta span,
    .author-dates span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .author-bio {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-provider,
    .footer-flags {
        justify-content: center;
    }

    .bonus-widget {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        padding: 10px 12px;
        border-radius: 10px;
        gap: 10px;
    }

    .bonus-widget-text {
        min-width: 0;
        flex: 1;
    }

    .bonus-widget-text strong,
    .bonus-widget-text span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bonus-widget .btn {
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 0.78rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-inner {
        min-height: 60px;
        padding: 7px 12px;
    }

    .header-logo img {
        max-width: 120px;
        height: 38px;
    }

    .header-nav {
        top: 60px;
        padding: 14px 12px 32px;
    }

    .header-actions .btn--outline {
        display: none;
    }

    .header-actions .btn--green {
        padding: 7px 11px;
        font-size: 0.74rem;
    }

    .hero-content {
        padding: 46px 12px 34px;
    }

    .hero-badge {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-rating {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: flex-start;
    }

    .rating-label {
        grid-column: 1 / -1;
    }

    .content-section {
        padding: 18px 13px;
    }

    .demo-iframe {
        min-height: 260px;
    }

    .demo-label {
        top: 7px;
        left: 7px;
        font-size: 0.65rem;
    }

    .demo-overlay {
        position: static;
        background: rgba(0, 17, 76, 0.95);
    }

    .demo-overlay .btn {
        width: 100%;
        max-width: none;
    }

    .game-details-table {
        font-size: 0.82rem;
    }

    .game-details-table td {
        padding: 8px 5px;
    }

    .bonus-card {
        flex-basis: 92%;
        padding: 19px 15px;
    }

    .bonus-card-offer {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-brand {
        grid-column: auto;
    }

    .trust-logos,
    .footer-payments,
    .footer-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .header-logo img {
        max-width: 105px;
        height: 36px;
    }

    .header-actions .btn--green {
        display: none;
    }

    .burger {
        margin-left: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .hero-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-stat {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .content-section {
        padding: 16px 11px;
    }

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

    .demo-iframe {
        min-height: 220px;
    }

    .game-details-table {
        font-size: 0.76rem;
    }

    .game-details-table td {
        padding: 7px 4px;
    }

    .bonus-card {
        flex-basis: 96%;
    }

    .faq-q {
        font-size: 0.86rem;
    }

    .author-meta,
    .author-dates {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

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

    .bonus-widget .btn {
        width: 100%;
    }
}

.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
}

body {
    padding-top: 68px;
}

@media (max-width: 600px) {
    body {
        padding-top: 60px;
    }
}

.demo-wrap {
    position: relative;
    width: 100%;
    touch-action: auto;
}

.demo-iframe {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 600px;
    min-height: 600px;
    border: 0;
    pointer-events: auto !important;
    touch-action: auto !important;
    -webkit-user-select: none;
    user-select: none;
}

.demo-label {
    z-index: 10;
    pointer-events: none !important;
}

.demo-overlay {
    position: static !important;
    z-index: auto;
    width: 100%;
    padding: 12px;
    background: #000d3a;
    pointer-events: auto !important;
}

.demo-overlay .btn {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
}

@media (max-width: 900px) {
    .demo-wrap {
        overflow: visible;
        border-radius: 10px;
    }

    .demo-iframe {
        width: 100%;
        height: 520px !important;
        min-height: 520px !important;
        aspect-ratio: auto !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    .demo-overlay {
        position: static !important;
        inset: auto !important;
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .demo-iframe {
        height: 480px !important;
        min-height: 480px !important;
    }
}

@media (max-width: 420px) {
    .demo-iframe {
        height: 440px !important;
        min-height: 440px !important;
    }
}

.demo-iframe {
    touch-action: none !important;
}

@media (max-width: 900px) {
    .content-section {
        overflow: visible;
    }
}

.demo-wrap {
    scroll-margin-top: 70px;
}