/* =====================================================
   Big Bass Bonanza Casino DE — Design System
   Colors: Black, Deep Navy, Orange #FF6B00, Gold #F5C518
   Font: Oswald (headings) + Inter (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* === RESET & ROOT ================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #09090f;
    color: #e8e0d0;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

:root {
    --orange: #ff6b00;
    --orange-light: #ff8c33;
    --orange-glow: rgba(255, 107, 0, 0.35);
    --gold: #f5c518;
    --gold-light: #ffd84a;
    --navy: #0d1520;
    --navy2: #111927;
    --surface: #141c28;
    --surface2: #1a2535;
    --card: #1e2d40;
    --border: rgba(255, 107, 0, 0.18);
    --text: #e8e0d0;
    --text-muted: #8b9ab0;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 0 30px rgba(255, 107, 0, 0.25);
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* === SKIP LINK (A11y) ============================= */
.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    background: var(--orange);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 1rem;
}

/* === TOPBAR ======================================= */
.topbar {
    background: linear-gradient(90deg, #050810 0%, #0a1019 50%, #050810 100%);
    border-bottom: 1px solid var(--border);
    padding: .45rem 0;
    font-size: .78rem;
    color: var(--text-muted);
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-inner span {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.topbar-inner .badge-18 {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: .7rem;
    padding: .15rem .4rem;
    border-radius: 4px;
}

/* === HEADER ======================================= */
header {
    background: rgba(9, 9, 15, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 900;
    padding: .75rem 0;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-link {
    text-decoration: none;
    flex-shrink: 0;
}

.logo-link img {
    height: 52px;
    width: auto;
    display: block;
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
    flex: 1;
}

nav.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 500;
    padding: .45rem .75rem;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active {
    color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

.btn-login {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.btn-login:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-cta {
    text-decoration: none;
    background: linear-gradient(135deg, var(--orange), #e55d00);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: .55rem 1.4rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 28px rgba(255, 107, 0, 0.5);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: .5rem .6rem;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 10000;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE STICKY CTA =========================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: .8rem 1rem;
    background: rgba(9, 9, 15, 0.97);
    border-top: 1px solid var(--border);
    gap: .75rem;
}

.mobile-cta-bar a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    padding: .7rem;
    border-radius: 10px;
}

.mobile-cta-bar .m-play {
    background: linear-gradient(135deg, var(--orange), #e55d00);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mobile-cta-bar .m-reg {
    background: var(--gold);
    color: #09090f;
}

/* === BREADCRUMBS ================================== */
.breadcrumbs {
    background: var(--navy2);
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--text-muted);
}

.breadcrumbs-inner a {
    color: var(--orange);
    text-decoration: none;
}

.breadcrumbs-inner a:hover {
    text-decoration: underline;
}

.breadcrumbs-inner span {
    opacity: .5;
}

/* === HERO ========================================= */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(9, 9, 15, 0.92) 0%,
            rgba(9, 9, 15, 0.7) 55%,
            rgba(9, 9, 15, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--orange);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.hero h1 .accent {
    color: var(--orange);
}

.hero p {
    font-size: 1.05rem;
    color: #c8bfb0;
    margin-bottom: 1.75rem;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--orange), #e55d00);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .75rem 1.8rem;
    border-radius: 10px;
    box-shadow: 0 0 28px rgba(255, 107, 0, 0.35);
    transition: all var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 36px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: .75rem 1.6rem;
    border-radius: 10px;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* === TRUST STRIP ================================== */
.trust-strip {
    background: var(--navy2);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
}

.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-item .icon {
    font-size: 1.2rem;
    color: var(--orange);
}

/* === SECTION BASE ================================= */
section {
    padding: 4.5rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    padding: .25rem .8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.section-sub {
    font-size: .97rem;
    color: var(--text-muted);
    margin-top: .6rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accent-line {
    width: 50px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* === CARDS ======================================== */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
    transform: translateY(-3px);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 12px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .5rem;
}

.card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* === STAT BOXES =================================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 3rem 0;
}

.stat-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.stat-box .stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-box .stat-label {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: .35rem;
}

/* === TABLES ======================================= */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}

caption {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--orange);
    text-align: left;
    padding: 1rem 1.25rem .5rem;
}

th {
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .75rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

td {
    padding: .8rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 107, 0, 0.04);
}

.td-highlight {
    color: var(--orange);
    font-weight: 600;
}

.td-good {
    color: #4ade80;
}

.td-warn {
    color: var(--gold);
}

/* === CHARTS (CSS-based) =========================== */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.bar-row {
    display: grid;
    grid-template-columns: 160px 1fr 60px;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-size: .85rem;
    color: var(--text-muted);
    text-align: right;
}

.bar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    height: 22px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    position: relative;
    transition: width 1s ease;
}

.bar-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(3px);
}

.bar-val {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gold);
}

.donut-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.donut-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.donut-wrap svg {
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}

.donut-wrap .donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-center .d-val {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.donut-center .d-lbl {
    font-size: .72rem;
    color: var(--text-muted);
    text-align: center;
}

.legend-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .86rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* === HIGHLIGHT BOX ================================ */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(245, 197, 24, 0.06));
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
}

.highlight-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: .5rem;
}

/* === FAQ ========================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--orange);
}

.faq-q .faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-q .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* === SEO CONTENT SECTION ========================== */
.seo-content {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.seo-article {
    max-width: 860px;
}

.seo-article h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 .75rem;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--orange);
    margin: 1.5rem 0 .5rem;
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.75;
    font-size: .95rem;
}

.seo-article strong {
    color: var(--text);
}

.text-link {
    color: var(--orange);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--gold);
}

/* === FOOTER ======================================= */
footer {
    background: #050810;
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: .87rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    max-width: 1280px;
    margin: 2.5rem auto 0;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--text-muted);
}

.gamble-warn {
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .6rem 1rem;
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

/* === RATING STARS ================================= */
.star-rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #3a3a3a;
    font-size: 1.2rem;
}

.star.filled {
    color: var(--gold);
}

/* === BONUS CHIP ==================================== */
.bonus-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--orange), #e55d00);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    color: #fff;
    text-decoration: none;
    gap: .25rem;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
    transition: all var(--transition);
}

.bonus-chip:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
}

.bonus-chip .bc-top {
    font-size: .8rem;
    font-weight: 600;
    opacity: .85;
    text-transform: uppercase;
}

.bonus-chip .bc-main {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.bonus-chip .bc-sub {
    font-size: .78rem;
    opacity: .75;
}

/* === CASINO PARTNER CARD ========================== */
.casino-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    transition: all var(--transition);
}

.casino-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.casino-card .cc-logo {
    width: 80px;
    height: 55px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
    flex-shrink: 0;
}

.casino-card .cc-info {
    flex: 1;
    min-width: 0;
}

.casino-card .cc-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.casino-card .cc-bonus {
    font-size: .87rem;
    color: var(--gold);
    margin-top: .2rem;
}

.casino-card .cc-tag {
    font-size: .75rem;
    background: rgba(74, 222, 128, .1);
    color: #4ade80;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: .35rem;
    display: inline-block;
}

.casino-card .cc-cta {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--orange), #e55d00);
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    padding: .5rem 1rem;
    border-radius: 8px;
    flex-shrink: 0;
}

/* === SLOT DEMO FRAME ============================== */
.demo-frame-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.2);
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 9, 15, 0.85), rgba(255, 107, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: opacity var(--transition);
}

.demo-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.demo-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #e55d00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
    transition: transform var(--transition);
}

.demo-overlay:hover .demo-play-btn {
    transform: scale(1.1);
}

.demo-overlay p {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* === RESPONSIVE =================================== */
@media (max-width: 1024px) {
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav.main-nav {
        display: none;
        pointer-events: none;
    }

    nav.main-nav.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        background: #0a0d15;
        z-index: 990;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        overflow-y: visible;
        pointer-events: all;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    }

    nav.main-nav.open a {
        font-size: 1.25rem;
        padding: .85rem 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 107, 0, 0.08);
        color: var(--text);
    }

    nav.main-nav.open a:last-child {
        border-bottom: none;
    }

    nav.main-nav.open a.active,
    nav.main-nav.open a:hover {
        color: var(--orange);
        background: rgba(255, 107, 0, 0.08);
        border-radius: 8px;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-login {
        display: none;
    }

    .btn-cta {
        font-size: .82rem;
        padding: .5rem 1rem;
    }

    .hero {
        min-height: 340px;
    }

    .hero-content {
        padding: 2.5rem 1.25rem;
    }

    .cards-grid-2,
    .cards-grid-3 {
        grid-template-columns: 1fr;
    }

    .cards-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bar-row {
        grid-template-columns: 100px 1fr 50px;
    }

    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .donut-section {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

    .trust-inner {
        gap: 1rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }
}