/* ============================================================
   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:   #121212;
    --secondary-bg: #000000;
    --accent:       #FECA27;
    --header-footer:#121212;
    --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-arzba {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    overflow-x: clip;
}

/* ── Sidebar (left) ── */
.cx-wn62g {
    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-8dc8c {
    display: block;
    padding: 0 1rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.75rem;
}

.cx-8dc8c img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.cx-u7jf4 {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 0 0.5rem;
}

.cx-u7jf4 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-u7jf4 a:hover {
    background: rgba(255,255,255,0.07);
    color: var(--accent);
}

.cx-5xd9h {
    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-kiqq1,
.cx-p81fc {
    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-kiqq1 {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.cx-kiqq1:hover {
    background: var(--accent);
    color: var(--header-footer);
}

.cx-p81fc {
    background: var(--accent);
    color: var(--header-footer);
    border: 1.5px solid var(--accent);
}

.cx-p81fc:hover {
    filter: brightness(1.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* ── Main area ── */
.cx-17q46 {
    margin-left: var(--sidebar-w);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
}

/* Mobile topbar — hidden on desktop */
.cx-vvwx3 { display: none; }

/* Dark overlay for mobile sidebar */
.cx-ydvnt {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 190;
}
.cx-ydvnt.active { display: block; }

main { flex: 1; padding: 0 0 3rem; }

.cx-hzpb8 {
    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-i44m7 {
    font-size: 0.82rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.cx-i44m7 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-i44m7 a:hover { background: rgba(255,255,255,0.1); text-decoration: none; opacity: 1; }
.cx-xf0g0 { opacity: 0.4; font-size: 0.7rem; }

/* ============================================================
   OFFER BLOCK — numbered cards
   ============================================================ */
.cx-j043q {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.cx-k1fdu {
    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-k1fdu:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* Hide rank number when single offer */
.single-offer .cx-qog38 { display: none; }
.single-offer .cx-k1fdu { grid-template-columns: 56px 1fr auto; }

.cx-qog38 {
    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-k1fdu img {
    width: 56px; height: 56px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.07);
    padding: 3px;
}

.cx-9r94s { min-width: 0; }

.cx-9r94s strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.cx-9r94s span { font-size: 0.88rem; opacity: 0.8; }
.cx-ifs4n { flex-shrink: 0; }

.cx-ifs4n a,
.cx-yc3iu {
    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-ifs4n a:hover,
.cx-yc3iu: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-rszn2 {
    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-rszn2 > h2:first-child,
.cx-rszn2 > h3:first-child { margin-top: 0; }

/* ============================================================
   TABLES
   ============================================================ */
.cx-rszn2 .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-rszn2 .table-wrap table { margin-bottom: 0; min-width: 480px; }
.cx-rszn2 table, table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 0.88rem; }

.cx-rszn2 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-rszn2 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-rszn2 table tr:last-child td { border-bottom: none; }
.cx-rszn2 table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.cx-rszn2 table tr:hover td { background: rgba(255,255,255,0.05); transition: background var(--transition); }

/* ============================================================
   FAQ — chevron accordion
   ============================================================ */
.cx-rf4v1 { margin: 2rem 0; }
.cx-rf4v1 h2 { text-align: center; padding-left: 0; margin-bottom: 1.1rem; }
.cx-rf4v1 h2::before { display: none; }

.cx-57h3j, [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-57h3j 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-57h3j 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-57h3j.open h3, [data-faq-item].open h3 {
    background: rgba(255,255,255,0.03);
    border-bottom-color: rgba(255,255,255,0.06);
}

.cx-57h3j.open h3::after, [data-faq-item].open h3::after {
    transform: rotate(90deg);
    opacity: 0.9;
}

.cx-57h3j 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-57h3j.open p, [data-faq-item].open p {
    max-height: 600px; padding: 0.85rem 1.1rem;
}

/* ============================================================
   SLOTS / GAMES — 5 columns, 2 rows
   ============================================================ */
.cx-5bun9 { margin-bottom: 2rem; }

.cx-zjh3b {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 0.6rem;
}

.cx-z8f42 {
    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-z8f42:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

.cx-z8f42 img {
    width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
}

.cx-z8f42 .cx-mouhj {
    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-z8f42:hover .cx-mouhj { opacity: 1; }

.cx-mouhj .cx-4mdxt {
    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-fpobs {
    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-zjh3b {
        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-zjh3b::-webkit-scrollbar { display: none; }
    .cx-z8f42 { flex: 0 0 28vw; max-width: 120px; min-width: 90px; }
}

/* ============================================================
   HERO BANNER — full-bleed (escapes .cx-hzpb8, fills site-body)
   ============================================================ */
.cx-c0hnt {
    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-c0hnt::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-c0hnt::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-txgld {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.5rem 2rem;
    position: relative; z-index: 1;
}

.cx-byd0r {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}

.cx-1pvqn {
    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-hlurq {
    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-4i2tm {
    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-4i2tm: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-h8d8j { margin-bottom: 1rem; }

/* ============================================================
   INLINE CTA
   ============================================================ */
.cx-80nvz { text-align: center; margin: 1.5rem 0 0.5rem; }
.cx-80nvz .cx-yc3iu { display: inline-block; min-width: 200px; }

/* ============================================================
   FLOATING TOC — right sidebar on desktop
   ============================================================ */
.cx-q1zxx {
    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-q1zxx::-webkit-scrollbar { width: 4px; }
.cx-q1zxx::-webkit-scrollbar-track { background: transparent; }
.cx-q1zxx::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}
.cx-q1zxx::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

.cx-q1zxx.visible { display: block; }

.cx-phbmu {
    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-l6e6q {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--accent);
}

.cx-10ej9 {
    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-10ej9:hover { opacity: 1; }

.cx-9lom8 { padding: 0.4rem 0.75rem 0.65rem; }

.cx-kpkxo { list-style: none; padding: 0; margin: 0; }
.cx-u1brk { margin: 0; padding: 0; }

.cx-u1brk 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-u1brk a:hover {
    opacity: 1; color: var(--accent); text-decoration: none;
}

.cx-u1brk a.toc-active {
    color: var(--accent); opacity: 1;
    border-left-color: var(--accent);
}

.cx-t0f1l a { font-weight: 600; }
.cx-uv4rn a { padding-left: 1rem; font-weight: 400; opacity: 0.55; }
.cx-mabdt 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-q1zxx {
        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-9lom8 {
        max-height: 0;
        overflow: hidden;
        padding: 0 0.75rem;
        transition: max-height 0.35s ease, padding 0.3s ease;
    }

    .cx-q1zxx.toc-expanded .cx-9lom8 {
        max-height: 800px;
        padding: 0.4rem 0.75rem 0.65rem;
    }

    /* Repurpose close button as toggle */
    .cx-10ej9 { display: none; }

    .cx-phbmu {
        cursor: pointer;
    }

    .cx-phbmu::after {
        content: '›';
        font-size: 1.1rem;
        opacity: 0.5;
        transition: transform var(--transition);
    }

    .cx-q1zxx.toc-expanded .cx-phbmu::after {
        transform: rotate(90deg);
        opacity: 0.9;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.cx-pndhy {
    background-color: var(--header-footer);
    color: var(--menu-text);
    padding: 1.5rem 1.5rem 1.25rem;
    margin-top: auto;
}

.cx-k89e8 { display: flex; justify-content: center; margin-bottom: 0.85rem; }

.cx-k89e8 img {
    height: 32px; object-fit: contain; opacity: 0.8;
    transition: opacity var(--transition);
}

.cx-k89e8 img:hover { opacity: 1; }

.cx-jn5ky {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 0.2rem 0; margin-bottom: 0.85rem;
}

.cx-jn5ky 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-jn5ky a:hover {
    background: rgba(255,255,255,0.06); color: var(--accent);
    text-decoration: none; opacity: 1;
}

.cx-sywgg {
    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-sywgg a, .cx-sywgg 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-sywgg a:hover { opacity: 1; background: #fff; }

.cx-sywgg img { height: 44px; width: auto; object-fit: contain; display: block; }

.cx-33u6d {
    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-wn62g {
        position: fixed; top: 0; left: -280px; width: 280px;
        transition: left 0.3s ease; z-index: 300;
    }

    .cx-wn62g.open { left: 0; }

    .cx-17q46 { margin-left: 0; overflow-x: clip; }

    .cx-vvwx3 {
        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-vvwx3 .cx-9808f img { height: 36px; width: auto; display: block; }

    .cx-q245t {
        font-size: 1.4rem; background: none; border: none;
        color: var(--menu-text); cursor: pointer;
        padding: 0.2rem 0.4rem; line-height: 1;
    }

    .cx-vvwx3 .cx-6j182 { display: flex; gap: 0.4rem; }

    h1 {
        text-align: center; margin: 1.25rem 0 1rem;
        word-wrap: break-word; overflow-wrap: break-word;
    }

    .cx-hzpb8 { padding: 0 1rem; }

    .cx-rszn2 {
        padding: 1.1rem 0.9rem;
        word-wrap: break-word; overflow-wrap: break-word;
    }

    .cx-k1fdu { grid-template-columns: auto 48px 1fr; gap: 0.65rem; }
    .single-offer .cx-k1fdu { grid-template-columns: 48px 1fr; }
    .cx-ifs4n { grid-column: 1 / -1; }
    .cx-ifs4n a { display: block; width: 100%; text-align: center; }

    /* Banner: already full-width (outside .cx-hzpb8) */
    .cx-txgld { padding: 2.5rem 1.25rem; }
    .cx-hlurq { font-size: clamp(1.5rem, 7vw, 2.2rem); }
    .cx-4i2tm { width: 100%; text-align: center; }
    .cx-c0hnt::after { display: none; }

    .cx-rszn2 table { font-size: 0.8rem; }
    .cx-jn5ky a { font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .cx-hzpb8 { padding: 0 0.75rem; }
}