/* ============================================================
   CASINO TEMPLATE V2 — styles.css
   Sidebar nav (desktop), 5×2 slots grid, floating TOC
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables (injected via PHP from content.json) ── */
:root {
    --primary-bg:   #1E0A3B;
    --secondary-bg: #1E0A3B;
    --accent:       #DF24E6;
    --header-footer:#290B4E;
    --text:         #FFFFFF;
    --menu-text:    #FFFFFF;

    /* Geometry */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  40px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 30px rgba(0,0,0,0.18);
    --transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:  1120px;
    --sidebar-w:  220px;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body:    'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { overflow-x: hidden; scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

/* ============================================================
   LAYOUT — sidebar + main column (desktop)
   ============================================================ */
.cx-an1i5 {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    overflow-x: clip;
}

/* ── Sidebar (left) ── */
.cx-mw9aj {
    width: var(--sidebar-w);
    flex-shrink: 0;
    background: var(--header-footer);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 200;
    overflow-y: auto;
    padding: 1.25rem 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.cx-qmv8r {
    display: block;
    padding: 0 1rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.75rem;
}

.cx-qmv8r img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.cx-2ttwx {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 0 0.5rem;
}

.cx-2ttwx a {
    color: var(--menu-text);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cx-2ttwx a:hover {
    background: rgba(255,255,255,0.07);
    color: var(--accent);
}

.cx-7nlo7 {
    padding: 0.75rem 0.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cx-96ti7,
.cx-40n3g {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.cx-96ti7 {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.cx-96ti7:hover {
    background: var(--accent);
    color: var(--header-footer);
}

.cx-40n3g {
    background: var(--accent);
    color: var(--header-footer);
    border: 1.5px solid var(--accent);
}

.cx-40n3g:hover {
    filter: brightness(1.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* ── Main area ── */
.cx-dzwjq {
    margin-left: var(--sidebar-w);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
}

/* Mobile topbar — hidden on desktop */
.cx-dm8oa { display: none; }

/* Dark overlay for mobile sidebar */
.cx-ci36x {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 190;
}
.cx-ci36x.active { display: block; }

main { flex: 1; padding: 0 0 3rem; }

.cx-nafh0 {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.75rem 1.5rem 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
    margin: 1.75rem 0 1.25rem;
    color: var(--text);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--text);
    position: relative;
    padding-left: 0.85rem;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
}

h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: var(--text);
}

h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 1.1rem 0 0.3rem;
    color: var(--accent);
}

p { margin-bottom: 0.95rem; font-size: 0.95rem; line-height: 1.72; }
a { color: var(--accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; text-decoration: underline; }
strong, b { font-weight: 700; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   BREADCRUMB — pill style
   ============================================================ */
.cx-dhrxn {
    font-size: 0.82rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.cx-dhrxn a {
    color: var(--accent);
    background: rgba(255,255,255,0.05);
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.cx-dhrxn a:hover { background: rgba(255,255,255,0.1); text-decoration: none; opacity: 1; }
.cx-lghy2 { opacity: 0.4; font-size: 0.7rem; }

/* ============================================================
   OFFER BLOCK — numbered cards
   ============================================================ */
.cx-wcyri {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.cx-8kmzy {
    display: grid;
    grid-template-columns: auto 56px 1fr auto;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow var(--transition), transform var(--transition);
}

.cx-8kmzy:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* Hide rank number when single offer */
.single-offer .cx-48dsx { display: none; }
.single-offer .cx-8kmzy { grid-template-columns: 56px 1fr auto; }

.cx-48dsx {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 2rem;
    text-align: center;
    opacity: 0.9;
}

.cx-8kmzy img {
    width: 56px; height: 56px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.07);
    padding: 3px;
}

.cx-as4nx { min-width: 0; }

.cx-as4nx strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.cx-as4nx span { font-size: 0.88rem; opacity: 0.8; }
.cx-ivq5u { flex-shrink: 0; }

.cx-ivq5u a,
.cx-eio3s {
    display: inline-block;
    background: var(--accent);
    color: var(--header-footer);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.5rem 1.3rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
}

.cx-ivq5u a:hover,
.cx-eio3s:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    text-decoration: none;
    opacity: 1;
}

/* ============================================================
   CONTENT BLOCK
   ============================================================ */
.cx-854a4 {
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.04);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cx-854a4 > h2:first-child,
.cx-854a4 > h3:first-child { margin-top: 0; }

/* ============================================================
   TABLES
   ============================================================ */
.cx-854a4 .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.06);
}

.cx-854a4 .table-wrap table { margin-bottom: 0; min-width: 480px; }
.cx-854a4 table, table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 0.88rem; }

.cx-854a4 table th {
    background: color-mix(in srgb, var(--accent) 15%, var(--secondary-bg));
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.7rem 0.9rem;
    text-align: left;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 80px;
}

.cx-854a4 table td {
    padding: 0.6rem 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text);
    vertical-align: top;
    white-space: normal;
    min-width: 80px;
}

.cx-854a4 table tr:last-child td { border-bottom: none; }
.cx-854a4 table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.cx-854a4 table tr:hover td { background: rgba(255,255,255,0.05); transition: background var(--transition); }

/* ============================================================
   FAQ — chevron accordion
   ============================================================ */
.cx-vrhvt { margin: 2rem 0; }
.cx-vrhvt h2 { text-align: center; padding-left: 0; margin-bottom: 1.1rem; }
.cx-vrhvt h2::before { display: none; }

.cx-gp79a, [data-faq-item] {
    background: var(--secondary-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.cx-gp79a h3, [data-faq-item] h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    padding: 0.85rem 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
    user-select: none;
    border-bottom: 1px solid transparent;
}

.cx-gp79a h3::after, [data-faq-item] h3::after {
    content: '›';
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 0.8rem;
    opacity: 0.5;
    transition: transform var(--transition), opacity var(--transition);
}

.cx-gp79a.open h3, [data-faq-item].open h3 {
    background: rgba(255,255,255,0.03);
    border-bottom-color: rgba(255,255,255,0.06);
}

.cx-gp79a.open h3::after, [data-faq-item].open h3::after {
    transform: rotate(90deg);
    opacity: 0.9;
}

.cx-gp79a p, [data-faq-item] p {
    max-height: 0; overflow: hidden; padding: 0 1.1rem; margin: 0;
    font-size: 0.92rem; line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.cx-gp79a.open p, [data-faq-item].open p {
    max-height: 600px; padding: 0.85rem 1.1rem;
}

/* ============================================================
   SLOTS / GAMES — 5 columns, 2 rows
   ============================================================ */
.cx-eh52m { margin-bottom: 2rem; }

.cx-9ky2q {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 0.6rem;
}

.cx-12rd4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--secondary-bg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
    position: relative;
}

.cx-12rd4:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

.cx-12rd4 img {
    width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
}

.cx-12rd4 .cx-u5edl {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition);
}

.cx-12rd4:hover .cx-u5edl { opacity: 1; }

.cx-u5edl .cx-5f983 {
    background: var(--accent);
    color: var(--header-footer);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.cx-xfvtq {
    font-size: 0.68rem; font-weight: 600; text-align: center;
    color: var(--text); padding: 0.25rem 0.35rem 0.35rem;
    line-height: 1.25; opacity: 0.8;
}

@media (max-width: 768px) {
    .cx-9ky2q {
        grid-template-columns: none; grid-template-rows: none;
        display: flex; flex-wrap: nowrap; overflow-x: auto;
        -webkit-overflow-scrolling: touch; gap: 0.45rem;
        padding-bottom: 0.5rem; scrollbar-width: none;
    }
    .cx-9ky2q::-webkit-scrollbar { display: none; }
    .cx-12rd4 { flex: 0 0 28vw; max-width: 120px; min-width: 90px; }
}

/* ============================================================
   HERO BANNER — full-bleed (escapes .cx-nafh0, fills site-body)
   ============================================================ */
.cx-lrz7d {
    width: 100%;
    margin-bottom: 0;
    background: linear-gradient(160deg,
        var(--header-footer) 0%,
        color-mix(in srgb, var(--primary-bg) 80%, var(--accent)) 50%,
        var(--primary-bg) 100%
    );
    overflow: hidden;
    text-align: center;
    position: relative;
}

.cx-lrz7d::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--accent) 8%, transparent) 0%, transparent 40%);
    pointer-events: none;
}

.cx-lrz7d::after {
    content: '';
    position: absolute; top: -30%; right: -10%;
    width: 400px; height: 400px;
    border: 2px solid color-mix(in srgb, var(--accent) 15%, transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cx-x0ggf {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.5rem 2rem;
    position: relative; z-index: 1;
}

.cx-655va {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}

.cx-7kr4b {
    font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 600;
    opacity: 0.6; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text);
}

.cx-egx7x {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700; line-height: 1.1;
    color: var(--text); max-width: 550px;
}

.cx-i7u91 {
    display: inline-block; margin-top: 0.6rem;
    padding: 0.75rem 2.2rem;
    background: var(--accent); color: var(--header-footer);
    font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 3px 15px rgba(0,0,0,0.25);
}

.cx-i7u91:hover {
    filter: brightness(1.12); transform: translateY(-2px);
    text-decoration: none; opacity: 1;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.cx-xtaaa { margin-bottom: 1rem; }

/* ============================================================
   INLINE CTA
   ============================================================ */
.cx-7p3zx { text-align: center; margin: 1.5rem 0 0.5rem; }
.cx-7p3zx .cx-eio3s { display: inline-block; min-width: 200px; }

/* ============================================================
   FLOATING TOC — right sidebar on desktop
   ============================================================ */
.cx-cb1ke {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.25rem;
    width: 220px;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    background: var(--secondary-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    z-index: 150;
    box-shadow: var(--shadow-md);
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

/* Chrome / Safari / Edge */
.cx-cb1ke::-webkit-scrollbar { width: 4px; }
.cx-cb1ke::-webkit-scrollbar-track { background: transparent; }
.cx-cb1ke::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}
.cx-cb1ke::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

.cx-cb1ke.visible { display: block; }

.cx-169j4 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky; top: 0;
    background: var(--secondary-bg); z-index: 1;
}

.cx-aeser {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--accent);
}

.cx-rzpot {
    background: none; border: none; color: var(--text);
    opacity: 0.5; font-size: 1rem; cursor: pointer;
    line-height: 1; padding: 0;
    transition: opacity var(--transition);
}

.cx-rzpot:hover { opacity: 1; }

.cx-lklok { padding: 0.4rem 0.75rem 0.65rem; }

.cx-61z59 { list-style: none; padding: 0; margin: 0; }
.cx-22y6i { margin: 0; padding: 0; }

.cx-22y6i a {
    display: block; padding: 0.2rem 0;
    font-size: 0.78rem; color: var(--text);
    text-decoration: none; opacity: 0.65;
    transition: opacity var(--transition), color var(--transition);
    line-height: 1.3;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.cx-22y6i a:hover {
    opacity: 1; color: var(--accent); text-decoration: none;
}

.cx-22y6i a.toc-active {
    color: var(--accent); opacity: 1;
    border-left-color: var(--accent);
}

.cx-8tm7s a { font-weight: 600; }
.cx-aw4b2 a { padding-left: 1rem; font-weight: 400; opacity: 0.55; }
.cx-1mj3t a { padding-left: 1.5rem; font-weight: 400; opacity: 0.45; font-size: 0.73rem; }

/* On narrow screens: convert floating TOC to inline collapsible */
@media (max-width: 1200px) {
    .cx-cb1ke {
        position: static !important;
        width: 100% !important;
        max-height: none !important;
        box-shadow: none !important;
        border-radius: var(--radius-md);
        margin: 1rem 0 1.25rem;
        right: auto;
        top: auto;
    }

    .cx-lklok {
        max-height: 0;
        overflow: hidden;
        padding: 0 0.75rem;
        transition: max-height 0.35s ease, padding 0.3s ease;
    }

    .cx-cb1ke.toc-expanded .cx-lklok {
        max-height: 800px;
        padding: 0.4rem 0.75rem 0.65rem;
    }

    /* Repurpose close button as toggle */
    .cx-rzpot { display: none; }

    .cx-169j4 {
        cursor: pointer;
    }

    .cx-169j4::after {
        content: '›';
        font-size: 1.1rem;
        opacity: 0.5;
        transition: transform var(--transition);
    }

    .cx-cb1ke.toc-expanded .cx-169j4::after {
        transform: rotate(90deg);
        opacity: 0.9;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.cx-yi4cd {
    background-color: var(--header-footer);
    color: var(--menu-text);
    padding: 1.5rem 1.5rem 1.25rem;
    margin-top: auto;
}

.cx-34qd1 { display: flex; justify-content: center; margin-bottom: 0.85rem; }

.cx-34qd1 img {
    height: 32px; object-fit: contain; opacity: 0.8;
    transition: opacity var(--transition);
}

.cx-34qd1 img:hover { opacity: 1; }

.cx-2xemi {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 0.2rem 0; margin-bottom: 0.85rem;
}

.cx-2xemi a {
    color: var(--menu-text); text-decoration: none;
    font-size: 0.85rem; padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.cx-2xemi a:hover {
    background: rgba(255,255,255,0.06); color: var(--accent);
    text-decoration: none; opacity: 1;
}

.cx-sv0db {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 0.85rem 1.25rem;
    margin-bottom: 1.1rem; padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cx-sv0db a, .cx-sv0db span {
    display: flex; align-items: center; opacity: 0.8;
    transition: opacity var(--transition); text-decoration: none;
    background: rgba(255,255,255,0.88); border-radius: var(--radius-sm);
    padding: 3px 7px;
}

.cx-sv0db a:hover { opacity: 1; background: #fff; }

.cx-sv0db img { height: 44px; width: auto; object-fit: contain; display: block; }

.cx-8yu1e {
    text-align: center; font-size: 0.78rem; opacity: 0.5;
    line-height: 1.55; max-width: 680px; margin: 0 auto;
}

/* ============================================================
   MOBILE — sidebar becomes slide-out drawer
   ============================================================ */
@media (max-width: 768px) {
    :root { --sidebar-w: 0px; }

    .cx-mw9aj {
        position: fixed; top: 0; left: -280px; width: 280px;
        transition: left 0.3s ease; z-index: 300;
    }

    .cx-mw9aj.open { left: 0; }

    .cx-dzwjq { margin-left: 0; overflow-x: clip; }

    .cx-dm8oa {
        display: flex; align-items: center; justify-content: space-between;
        background: var(--header-footer);
        padding: 0.6rem 1rem;
        position: sticky; top: 0; z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .cx-dm8oa .cx-o5pfa img { height: 36px; width: auto; display: block; }

    .cx-mdroy {
        font-size: 1.4rem; background: none; border: none;
        color: var(--menu-text); cursor: pointer;
        padding: 0.2rem 0.4rem; line-height: 1;
    }

    .cx-dm8oa .cx-wbdff { display: flex; gap: 0.4rem; }

    h1 {
        text-align: center; margin: 1.25rem 0 1rem;
        word-wrap: break-word; overflow-wrap: break-word;
    }

    .cx-nafh0 { padding: 0 1rem; }

    .cx-854a4 {
        padding: 1.1rem 0.9rem;
        word-wrap: break-word; overflow-wrap: break-word;
    }

    .cx-8kmzy { grid-template-columns: auto 48px 1fr; gap: 0.65rem; }
    .single-offer .cx-8kmzy { grid-template-columns: 48px 1fr; }
    .cx-ivq5u { grid-column: 1 / -1; }
    .cx-ivq5u a { display: block; width: 100%; text-align: center; }

    /* Banner: already full-width (outside .cx-nafh0) */
    .cx-x0ggf { padding: 2.5rem 1.25rem; }
    .cx-egx7x { font-size: clamp(1.5rem, 7vw, 2.2rem); }
    .cx-i7u91 { width: 100%; text-align: center; }
    .cx-lrz7d::after { display: none; }

    .cx-854a4 table { font-size: 0.8rem; }
    .cx-2xemi a { font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .cx-nafh0 { padding: 0 0.75rem; }
}