/* ============================================================
   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:   #08519D;
    --secondary-bg: #002347;
    --accent:       #FA4F01;
    --header-footer:#003265;
    --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-0f429 {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    overflow-x: clip;
}

/* ── Sidebar (left) ── */
.cx-168s5 {
    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-8el0w {
    display: block;
    padding: 0 1rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.75rem;
}

.cx-8el0w img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.cx-1vjei {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 0 0.5rem;
}

.cx-1vjei 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-1vjei a:hover {
    background: rgba(255,255,255,0.07);
    color: var(--accent);
}

.cx-bua98 {
    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-ntk1r,
.cx-wpqcb {
    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-ntk1r {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.cx-ntk1r:hover {
    background: var(--accent);
    color: var(--header-footer);
}

.cx-wpqcb {
    background: var(--accent);
    color: var(--header-footer);
    border: 1.5px solid var(--accent);
}

.cx-wpqcb:hover {
    filter: brightness(1.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* ── Main area ── */
.cx-fg3jl {
    margin-left: var(--sidebar-w);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
}

/* Mobile topbar — hidden on desktop */
.cx-sr571 { display: none; }

/* Dark overlay for mobile sidebar */
.cx-2zp09 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 190;
}
.cx-2zp09.active { display: block; }

main { flex: 1; padding: 0 0 3rem; }

.cx-02n9j {
    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-rzpgw {
    font-size: 0.82rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.cx-rzpgw 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-rzpgw a:hover { background: rgba(255,255,255,0.1); text-decoration: none; opacity: 1; }
.cx-kor4r { opacity: 0.4; font-size: 0.7rem; }

/* ============================================================
   OFFER BLOCK — numbered cards
   ============================================================ */
.cx-0aksd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.cx-zai79 {
    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-zai79:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* Hide rank number when single offer */
.single-offer .cx-kz161 { display: none; }
.single-offer .cx-zai79 { grid-template-columns: 56px 1fr auto; }

.cx-kz161 {
    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-zai79 img {
    width: 56px; height: 56px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.07);
    padding: 3px;
}

.cx-8qnb2 { min-width: 0; }

.cx-8qnb2 strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.cx-8qnb2 span { font-size: 0.88rem; opacity: 0.8; }
.cx-i7d3v { flex-shrink: 0; }

.cx-i7d3v a,
.cx-vuwpz {
    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-i7d3v a:hover,
.cx-vuwpz: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-xmt4n {
    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-xmt4n > h2:first-child,
.cx-xmt4n > h3:first-child { margin-top: 0; }

/* ============================================================
   TABLES
   ============================================================ */
.cx-xmt4n .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-xmt4n .table-wrap table { margin-bottom: 0; min-width: 480px; }
.cx-xmt4n table, table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 0.88rem; }

.cx-xmt4n 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-xmt4n 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-xmt4n table tr:last-child td { border-bottom: none; }
.cx-xmt4n table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.cx-xmt4n table tr:hover td { background: rgba(255,255,255,0.05); transition: background var(--transition); }

/* ============================================================
   FAQ — chevron accordion
   ============================================================ */
.cx-3qikr { margin: 2rem 0; }
.cx-3qikr h2 { text-align: center; padding-left: 0; margin-bottom: 1.1rem; }
.cx-3qikr h2::before { display: none; }

.cx-wqr29, [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-wqr29 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-wqr29 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-wqr29.open h3, [data-faq-item].open h3 {
    background: rgba(255,255,255,0.03);
    border-bottom-color: rgba(255,255,255,0.06);
}

.cx-wqr29.open h3::after, [data-faq-item].open h3::after {
    transform: rotate(90deg);
    opacity: 0.9;
}

.cx-wqr29 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-wqr29.open p, [data-faq-item].open p {
    max-height: 600px; padding: 0.85rem 1.1rem;
}

/* ============================================================
   SLOTS / GAMES — 5 columns, 2 rows
   ============================================================ */
.cx-m1v7t { margin-bottom: 2rem; }

.cx-z6dt9 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 0.6rem;
}

.cx-tmxuq {
    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-tmxuq:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

.cx-tmxuq img {
    width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
}

.cx-tmxuq .cx-5wcgf {
    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-tmxuq:hover .cx-5wcgf { opacity: 1; }

.cx-5wcgf .cx-wa6wn {
    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-ic84y {
    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-z6dt9 {
        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-z6dt9::-webkit-scrollbar { display: none; }
    .cx-tmxuq { flex: 0 0 28vw; max-width: 120px; min-width: 90px; }
}

/* ============================================================
   HERO BANNER — full-bleed (escapes .cx-02n9j, fills site-body)
   ============================================================ */
.cx-dkp4x {
    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-dkp4x::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-dkp4x::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-l5fj8 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.5rem 2rem;
    position: relative; z-index: 1;
}

.cx-q5qht {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}

.cx-k0l93 {
    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-e7fb7 {
    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-762gw {
    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-762gw: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-vnci2 { margin-bottom: 1rem; }

/* ============================================================
   INLINE CTA
   ============================================================ */
.cx-kgul0 { text-align: center; margin: 1.5rem 0 0.5rem; }
.cx-kgul0 .cx-vuwpz { display: inline-block; min-width: 200px; }

/* ============================================================
   FLOATING TOC — right sidebar on desktop
   ============================================================ */
.cx-b7cjs {
    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-b7cjs::-webkit-scrollbar { width: 4px; }
.cx-b7cjs::-webkit-scrollbar-track { background: transparent; }
.cx-b7cjs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}
.cx-b7cjs::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

.cx-b7cjs.visible { display: block; }

.cx-j6aav {
    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-hxt35 {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--accent);
}

.cx-ima2b {
    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-ima2b:hover { opacity: 1; }

.cx-15tzf { padding: 0.4rem 0.75rem 0.65rem; }

.cx-2n6up { list-style: none; padding: 0; margin: 0; }
.cx-fszys { margin: 0; padding: 0; }

.cx-fszys 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-fszys a:hover {
    opacity: 1; color: var(--accent); text-decoration: none;
}

.cx-fszys a.toc-active {
    color: var(--accent); opacity: 1;
    border-left-color: var(--accent);
}

.cx-20lxa a { font-weight: 600; }
.cx-vuf2i a { padding-left: 1rem; font-weight: 400; opacity: 0.55; }
.cx-y3y4w 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-b7cjs {
        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-15tzf {
        max-height: 0;
        overflow: hidden;
        padding: 0 0.75rem;
        transition: max-height 0.35s ease, padding 0.3s ease;
    }

    .cx-b7cjs.toc-expanded .cx-15tzf {
        max-height: 800px;
        padding: 0.4rem 0.75rem 0.65rem;
    }

    /* Repurpose close button as toggle */
    .cx-ima2b { display: none; }

    .cx-j6aav {
        cursor: pointer;
    }

    .cx-j6aav::after {
        content: '›';
        font-size: 1.1rem;
        opacity: 0.5;
        transition: transform var(--transition);
    }

    .cx-b7cjs.toc-expanded .cx-j6aav::after {
        transform: rotate(90deg);
        opacity: 0.9;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.cx-9w1sw {
    background-color: var(--header-footer);
    color: var(--menu-text);
    padding: 1.5rem 1.5rem 1.25rem;
    margin-top: auto;
}

.cx-reu24 { display: flex; justify-content: center; margin-bottom: 0.85rem; }

.cx-reu24 img {
    height: 32px; object-fit: contain; opacity: 0.8;
    transition: opacity var(--transition);
}

.cx-reu24 img:hover { opacity: 1; }

.cx-762j8 {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 0.2rem 0; margin-bottom: 0.85rem;
}

.cx-762j8 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-762j8 a:hover {
    background: rgba(255,255,255,0.06); color: var(--accent);
    text-decoration: none; opacity: 1;
}

.cx-b1u2v {
    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-b1u2v a, .cx-b1u2v 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-b1u2v a:hover { opacity: 1; background: #fff; }

.cx-b1u2v img { height: 44px; width: auto; object-fit: contain; display: block; }

.cx-uqx87 {
    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-168s5 {
        position: fixed; top: 0; left: -280px; width: 280px;
        transition: left 0.3s ease; z-index: 300;
    }

    .cx-168s5.open { left: 0; }

    .cx-fg3jl { margin-left: 0; overflow-x: clip; }

    .cx-sr571 {
        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-sr571 .cx-fky7y img { height: 36px; width: auto; display: block; }

    .cx-wzloq {
        font-size: 1.4rem; background: none; border: none;
        color: var(--menu-text); cursor: pointer;
        padding: 0.2rem 0.4rem; line-height: 1;
    }

    .cx-sr571 .cx-srmr3 { display: flex; gap: 0.4rem; }

    h1 {
        text-align: center; margin: 1.25rem 0 1rem;
        word-wrap: break-word; overflow-wrap: break-word;
    }

    .cx-02n9j { padding: 0 1rem; }

    .cx-xmt4n {
        padding: 1.1rem 0.9rem;
        word-wrap: break-word; overflow-wrap: break-word;
    }

    .cx-zai79 { grid-template-columns: auto 48px 1fr; gap: 0.65rem; }
    .single-offer .cx-zai79 { grid-template-columns: 48px 1fr; }
    .cx-i7d3v { grid-column: 1 / -1; }
    .cx-i7d3v a { display: block; width: 100%; text-align: center; }

    /* Banner: already full-width (outside .cx-02n9j) */
    .cx-l5fj8 { padding: 2.5rem 1.25rem; }
    .cx-e7fb7 { font-size: clamp(1.5rem, 7vw, 2.2rem); }
    .cx-762gw { width: 100%; text-align: center; }
    .cx-dkp4x::after { display: none; }

    .cx-xmt4n table { font-size: 0.8rem; }
    .cx-762j8 a { font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .cx-02n9j { padding: 0 0.75rem; }
}