/* ============================================================
   Betzillo Review Template
   Palette extracted from the "beautiful" Betzillo Pokies site,
   layout cues from the operator Betzillo sportsbook.
   ============================================================ */

:root {
    /* surfaces */
    --bg:           #0b0b0b;
    --bg-elev-1:    #131419;
    --bg-elev-2:    #1a1c24;
    --bg-elev-3:    #1d2029;
    --card:         #2d3042;
    --card-2:       #2e3045;
    --border:       #2a2c38;
    --border-soft:  rgba(193,190,223,0.10);

    /* text */
    --text:         #ffffff;
    --text-muted:   #c1bedf;
    --text-dim:     #9595a8;
    --text-faded:   #626475;

    /* accents */
    --yellow:       #f8d51e;
    --yellow-hover: #f8ea1e;
    --yellow-deep:  #fae307;
    --yellow-soft:  #f6df59;
    --purple:       #9e13cf;
    --purple-soft:  #b240e0;

    /* states */
    --good:         #3fd17b;
    --bad:          #ff5775;

    /* radii / shadow */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
    --shadow-pop:  0 12px 40px rgba(248,213,30,0.18);

    --container: 1240px;
    --gutter: 24px;
}

/* ------------ Reset / base ------------ */
*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img, picture { max-width: 100%; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--yellow-hover); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--text); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.125rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ol, ul { margin: 0 0 1em; padding-left: 1.25em; }
ol li, ul li { margin-bottom: .35em; }

.wrapper {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ------------ Buttons ------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: .65em 1.25em;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--yellow);
    color: #1a1c24;
    box-shadow: 0 6px 18px rgba(248,213,30,.25);
}
.btn-primary:hover { background: var(--yellow-hover); color: #000; transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--text-muted);
}
.btn-outline:hover { color: var(--yellow); border-color: var(--yellow); }
.btn-lg {
    padding: .9em 1.75em;
    font-size: 1rem;
}
.btn-header {
    padding: .7em 1.5em;
    font-size: 1rem;
    border-width: 1.5px;
}

/* ------------ Header ------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11,11,11,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}
.header-row {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}
.brand { display: inline-flex; }
.brand img { height: 26px; width: auto; }
.primary-nav { flex: 1; }
.primary-nav ul {
    display: flex;
    gap: 28px;
    margin: 0; padding: 0;
    list-style: none;
}
.primary-nav a {
    color: var(--text-muted);
    font-size: .95rem;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--yellow); border-color: var(--yellow); }
.header-cta { display: flex; gap: 10px; }
.hamburger {
    display: none;
    background: none;
    border: 0;
    width: 36px; height: 36px;
    position: relative;
}
.hamburger span {
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.hamburger span:nth-child(1) { top: 11px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 23px; }
.hamburger.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ------------ Hero slider ------------ */
.hero-slider {
    padding: 28px 0 32px;
    background:
        radial-gradient(900px 500px at 12% 0%, rgba(158,19,207,0.18), transparent 60%),
        radial-gradient(800px 500px at 95% 0%, rgba(248,213,30,0.14), transparent 60%),
        linear-gradient(180deg, #131419 0%, var(--bg) 100%);
}
.slider {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
}
.slides {
    position: relative;
    aspect-ratio: 1240 / 460;
    min-height: 360px;
    background: var(--bg-elev-1);
}
.slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 48px 56px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease, transform .55s ease;
    transform: scale(1.01);
}
.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}
.slide-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}
.slide-eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(248,213,30,.4);
    border-radius: 999px;
    background: rgba(248,213,30,.06);
}
.slide-title {
    color: var(--text);
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.1;
    margin: 0 0 28px;
    font-weight: 800;
}
.slide-title .hl {
    color: var(--yellow);
    text-shadow: 0 4px 22px rgba(248,213,30,.35);
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.slide-art {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 62%;
    z-index: 0;
    pointer-events: none;
}
.slide-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    /* Horizontal fade: left edge of image bleeds into the slide background, right edge sits flush with the slider's clipped corner */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(11,11,11,0.55);
    border: 1px solid var(--border-soft);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.slider-arrow:hover {
    background: var(--yellow);
    color: #1a1c24;
    border-color: var(--yellow);
}
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.slider-arrow:active { transform: translateY(-50%) scale(.94); }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.dot {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    border: 0;
    background: rgba(193,190,223,.3);
    cursor: pointer;
    transition: background .2s ease, width .2s ease;
}
.dot:hover { background: rgba(193,190,223,.55); }
.dot.active {
    background: var(--yellow);
    width: 44px;
}

/* ------------ Slot section ------------ */
.slot-section { padding: 32px 0; }
.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}
.section-head h2 { margin: 0; }
.more-link {
    color: var(--yellow);
    font-weight: 600;
    font-size: .95rem;
    border-bottom: 1px dashed currentColor;
    padding-bottom: 2px;
}
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.slot-item {
    color: var(--text);
    background: var(--card);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    display: flex;
    flex-direction: column;
}
.slot-item:hover {
    transform: translateY(-3px);
    border-color: var(--yellow);
    box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 0 1px var(--yellow);
}
.slot-image {
    position: relative;
    display: block;
    aspect-ratio: 220 / 294;
    overflow: hidden;
}
.slot-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.slot-item:hover .slot-image img { transform: scale(1.06); }
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,11,0) 50%, rgba(11,11,11,.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
}
.slot-item:hover .overlay { opacity: 1; }
.play-btn {
    background: var(--yellow);
    color: #1a1c24;
    font-weight: 700;
    padding: .55em 1.2em;
    border-radius: 999px;
    font-size: .9rem;
}
.slot-title {
    display: -webkit-box;
    padding: 12px 14px 14px;
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Reserve exactly 2 lines so providers and rows align across the grid */
    min-height: calc(1.25em * 2 + 26px);
    box-sizing: border-box;
}

/* ------------ Generic mixed section ------------ */
.intro { padding: 32px 0; background: var(--bg); }
.intro .block-title { margin-bottom: 18px; }
.intro-text p { font-size: 1.05rem; }
.intro .btn { margin-top: 4px; }

.block-title {
    color: var(--text);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 14px;
}
.block-title::after {
    content: "";
    display: block;
    width: 56px; height: 3px;
    background: var(--yellow);
    border-radius: 3px;
    position: absolute;
    bottom: 0; left: 0;
}

.mixed { padding: 32px 0; }
.mixed.dark-bg { background: #08080a; }
.mixed .copy p { color: var(--text-muted); }

.section-title {
    color: var(--text);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 14px;
}
.section-title::after {
    content: "";
    display: block;
    width: 56px; height: 3px;
    background: var(--yellow);
    border-radius: 3px;
    position: absolute;
    bottom: 0; left: 0;
}
.heading3 {
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.heading3::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

/* Ordered list pretty numbers */
.mixed .copy ol { counter-reset: step; list-style: none; padding-left: 0; margin: 16px 0; }
.mixed .copy ol li {
    counter-increment: step;
    position: relative;
    padding: 12px 14px 12px 52px;
    background: rgba(45,48,66,.45);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    margin-bottom: 10px;
}
.mixed .copy ol li::before {
    content: counter(step);
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--yellow);
    color: #1a1c24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
}

/* TOC */
.toc {
    margin-top: 36px;
    padding: 18px 22px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
}
.toc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.toc-head::-webkit-details-marker { display: none; }
.toc-head::marker { content: ""; }
.toc-arrow { margin-left: auto; transition: transform .2s ease; }
.toc[open] .toc-arrow { transform: rotate(180deg); }
.toc ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    columns: 2;
    column-gap: 24px;
}
.toc li { margin: 0 0 8px; break-inside: avoid; }
.toc a {
    color: var(--text-muted);
    font-size: .95rem;
    border-bottom: 1px dotted rgba(193,190,223,.25);
    padding-bottom: 2px;
}
.toc a:hover { color: var(--yellow); border-color: var(--yellow); }

/* Plain table */
.plain-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    margin: 18px 0 24px;
}
.plain-table thead th {
    background: var(--bg-elev-2);
    color: var(--text);
    text-align: left;
    padding: 14px 18px;
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--border-soft);
}
.plain-table tbody td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-muted);
    vertical-align: top;
}
.plain-table tbody tr:last-child td { border-bottom: 0; }
.plain-table tbody tr:hover td { background: rgba(248,213,30,.03); }
.plain-table tbody td:first-child {
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

/* Payments grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 18px 0 8px;
}
.payment-col {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md);
    padding: 22px;
}
.payment-col .heading3 { margin-top: 0; }
.payment-row {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.payment-row li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.payment-row img {
    max-height: 42px;
    max-width: 90px;
    height: auto;
    width: auto;
    display: block;
    transition: transform .15s ease, opacity .15s ease;
}
.payment-row img:hover { transform: translateY(-1px); }
.footer-payments .payment-row { gap: 18px; }
.footer-payments .payment-row img { max-height: 36px; max-width: 80px; }

/* Provider strip — display logos at native PNG size, no chip background, like the operator original */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px 40px;
    margin-top: 24px;
}
.provider-strip img {
    max-height: 42px;
    max-width: 96px;
    height: auto;
    width: auto;
    display: block;
    opacity: .85;
    transition: opacity .15s ease, transform .15s ease;
}
.provider-strip img:hover { opacity: 1; transform: translateY(-1px); }
.provider-strip.small { gap: 24px 28px; }
.provider-strip.small img { max-height: 32px; max-width: 76px; }
.footer-providers .provider-strip { gap: 24px 32px; }

/* Pros & cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 18px 0 8px;
}
.pros, .cons {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md);
    padding: 22px 24px;
    border-top: 4px solid;
}
.pros { border-top-color: var(--good); }
.cons { border-top-color: var(--yellow); }
.pros-cons-title {
    color: var(--text);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pros li, .cons li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.45;
}
.pros li::before, .cons li::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    line-height: 18px;
}
.pros li::before { content: "✓"; background: rgba(63,209,123,.18); color: var(--good); }
.cons li::before { content: "!"; background: rgba(248,213,30,.18); color: var(--yellow); }

/* CTA banner */
.cta-banner {
    padding: 40px 0;
    background:
        radial-gradient(600px 320px at 80% 50%, rgba(248,213,30,0.20), transparent 60%),
        radial-gradient(500px 300px at 10% 50%, rgba(158,19,207,0.18), transparent 60%),
        #08080a;
}
.cta-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    background: var(--card);
    border-radius: var(--r-lg);
    padding: 36px 40px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-pop);
}
.cta-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.cta-copy p { margin: 0; color: var(--text-muted); max-width: 56ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* FAQ */
.faq-section { padding: 32px 0 48px; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 64px 18px 22px;
    position: relative;
    transition: background .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    /* h3 default styling removed — inherits clickability from <summary> */
}
.faq-item summary::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--yellow);
    /* Cross drawn geometrically with two background gradients — perfectly centered, no glyph quirks */
    background-image:
        linear-gradient(#1a1c24 0 0),
        linear-gradient(#1a1c24 0 0);
    background-size: 12px 2px, 2px 12px;
    background-position: center, center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    transition: background-size .25s ease;
}
/* On open: collapse the vertical bar to zero → "+" morphs into "−" */
.faq-item[open] summary::after { background-size: 12px 2px, 0 12px; }
.faq-item[open] summary { background: rgba(248,213,30,.05); }
.faq-body { padding: 0 22px 18px; color: var(--text-muted); }
.faq-body p { margin: 0; }

/* ------------ Footer ------------ */
.site-footer {
    background: #050507;
    border-top: 1px solid var(--border-soft);
    padding: 40px 0 24px;
    margin-top: 32px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-soft);
}
.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0; padding: 0;
    gap: 8px 22px;
}
.footer-nav a {
    color: var(--text-muted);
    font-size: .9rem;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-providers,
.footer-payments {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-soft);
    flex-wrap: wrap;
}
.footer-label {
    color: var(--text-dim);
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .1em;
    min-width: 80px;
}
.footer-providers .provider-strip {
    flex: 1;
    margin-top: 0;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.footer-payments .payment-row { flex: 1; margin: 0; gap: 12px; }
.footer-payments .payment-row img { height: 22px; }
.footer-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 22px;
}
.footer-18 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: .82rem;
    flex: 1;
    min-width: 240px;
}
.footer-18 img { flex: 0 0 30px; }
.footer-copy {
    color: var(--text-faded);
    font-size: .78rem;
    width: 100%;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 800px) {
    /* Switch provider strip to a uniform grid so items don't break to a single orphan row */
    .provider-strip {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 22px 18px;
        justify-items: center;
        align-items: center;
    }
    .provider-strip img { max-width: 100%; }
    .footer-providers .provider-strip {
        grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
        gap: 18px 14px;
    }
    .primary-nav {
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: #0b0b0b;
        border-bottom: 1px solid var(--border-soft);
        padding: 16px var(--gutter);
        display: none;
    }
    .primary-nav.open { display: block; }
    .primary-nav ul { flex-direction: column; gap: 14px; }
    .hamburger { display: block; }
    /* Push the action cluster (Log in + Sign up) and the burger to the far right */
    .header-cta {
        margin-left: auto;
        gap: 8px;
    }
    .header-cta .btn { padding: .6em 1.1em; font-size: .92rem; }
    .toc ul { columns: 1; }
    .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
    .hero-slider { padding: 20px 0 24px; }
    .slides { aspect-ratio: auto; min-height: 0; }
    .slide {
        position: relative;
        inset: auto;
        display: none;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 32px 56px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .slide.active { display: grid; }
    .slide-art {
        position: relative;
        inset: auto;
        width: auto;
        height: 200px;
        order: -1;
        z-index: 0;
        /* Cancel slide padding so banner bleeds to the slider's clipped edges */
        margin: -32px -32px 0;
    }
    .slide-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
                mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    }
    .slider-arrow { width: 36px; height: 36px; }
    .slider-arrow.prev { left: 8px; }
    .slider-arrow.next { right: 8px; }
    .cta-wrap { grid-template-columns: 1fr; padding: 28px; }
    .cta-actions { justify-content: stretch; }
    .cta-actions .btn { flex: 1; }
}

@media (max-width: 560px) {
    :root { --gutter: 16px; }
    h1 { font-size: 2rem; }
    .header-row { gap: 8px; height: 60px; }
    .brand img { height: 18px; }
    .primary-nav { top: 60px; }
    .header-cta .btn { padding: .55em .9em; font-size: .85rem; }
    .hamburger { width: 32px; height: 32px; margin-left: 2px; }
    .slide { padding: 28px 22px 48px; }
    .slide-art {
        height: 180px;
        margin: -28px -22px 0;
    }
    .slide-actions .btn { flex: 1 1 0; min-width: 0; padding-left: 1em; padding-right: 1em; }
    .slider-arrow { display: none; }
    .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .slot-title { padding: 10px 12px; font-size: .85rem; }
    .play-btn { padding: .45em 1em; font-size: .8rem; }
    .section-title { font-size: 1.4rem; }
    /* Compact tabular layout on mobile — same structure as desktop, just smaller */
    .plain-table {
        font-size: .8rem;
        table-layout: fixed;
    }
    .plain-table thead th {
        padding: 10px 8px;
        font-size: .68rem;
    }
    .plain-table tbody td {
        padding: 10px 8px;
        vertical-align: top;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }
    .plain-table tbody td:first-child {
        color: var(--yellow);
        font-weight: 700;
        white-space: normal;
    }
    /* Hide the data-label prefix on mobile — column headers carry the meaning */
    .plain-table tbody td[data-label]::before { content: none; }
    .footer-providers, .footer-payments { flex-direction: column; align-items: flex-start; }
    .footer-providers .provider-strip { width: 100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
