:root {
    --bg:          #150a1c;
    --bg-2:        #1f1029;
    --surface:     #2a1738;
    --surface-2:   #351f47;
    --border:      #4d3266;
    --text:        #f9f2ff;
    --text-muted:  #cdbede;
    --text-dim:    #93829f;
    --gold:        #ffb347;
    --gold-2:      #ffd58f;
    --gold-ink:    #2b1700;
    --lime:        #ffd166;
    --teal:        #ff7a59;
    --rose:        #ff7a59;
    --violet:      #c77dff;
    --danger:      #ff5a5a;
    --ok:          #4ade80;

    --radius:      8px;
    --radius-sm:   9px;
    --maxw:        1180px;
    --gap:         clamp(1rem, 2.2vw, 1.6rem);
    --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    --dots: radial-gradient(currentColor 1.4px, transparent 1.6px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0; font-family: var(--font); background: var(--bg); color: var(--text);
    line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; color: #fff; margin: 0 0 .6rem; font-weight: 800; }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gap); }
.narrow { max-width: 820px; margin-inline: auto; }
.eyebrow {
    color: var(--gold); font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    font-size: .76rem; margin: 0 0 .8rem;
}
.dot-rule { height: 6px; color: var(--gold); background: var(--dots); background-size: 12px 6px; opacity: .5; }

.visually-hidden, .skip-link {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed; top: 10px; left: 10px; width: auto; height: auto; clip: auto; z-index: 1000;
    padding: .6rem 1rem; background: var(--gold); color: var(--gold-ink); border-radius: var(--radius-sm);
}
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap;
    padding: .72rem 1.3rem; border-radius: 999px; border: 1px solid transparent;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--gold-ink); }
.btn--primary:hover { filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--gold); color: #fff; }
.btn--lg { padding: .92rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.badge { display: inline-flex; align-items: center; justify-content: center; font-weight: 800; border-radius: 999px; line-height: 1; }
.badge--age { background: var(--danger); color: #fff; padding: .26rem .56rem; font-size: .8rem; border: 2px solid rgba(255,255,255,.25); }
.badge--age--lg { font-size: 1rem; padding: .42rem .72rem; }

.icon { width: 1.05em; height: 1.05em; fill: currentColor; vertical-align: -.13em; flex: 0 0 auto; }
.icon--sm { width: .85em; height: .85em; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(21,10,28,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header__inner { display: flex; align-items: center; gap: 1.2rem; padding-block: .7rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: #fff; font-weight: 800; }
.brand:hover { text-decoration: none; }
.brand__logo { width: 34px; height: 34px; display: block; }
.brand__name { font-size: 1.18rem; letter-spacing: .14em; text-transform: uppercase; }
.brand__name b { color: var(--gold); font-weight: 800; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.site-nav__link { color: var(--text-muted); font-weight: 600; font-size: .96rem; padding: .4rem 0; position: relative; }
.site-nav__link:hover, .site-nav__link[aria-current="page"] { color: #fff; text-decoration: none; }
.site-nav__link[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold); border-radius: 2px; }
.site-header__cta { display: inline-flex; align-items: center; gap: .8rem; margin-left: .4rem; }
.site-nav__toggle { display: none; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); width: 44px; height: 40px; cursor: pointer; color: var(--text); }

@media (max-width: 900px) {
    .site-header__cta .btn--primary { display: none; }
    .site-nav { margin-left: auto; }
    .site-nav__toggle { display: grid; place-items: center; order: 3; }
    .site-nav__list {
        position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0;
        background: var(--bg-2); border-bottom: 1px solid var(--border); padding: .4rem var(--gap);
        max-height: 0; overflow: hidden; transition: max-height .25s ease;
    }
    .site-nav__list--open { max-height: 70vh; }
    .site-nav__list li { border-top: 1px solid var(--border); }
    .site-nav__link { display: block; padding: .85rem .2rem; }
}

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--border); background:
    radial-gradient(900px 360px at 88% -8%, rgba(255,179,71,.16), transparent 60%), linear-gradient(180deg, var(--bg-2), var(--bg)); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.hero__title { font-size: clamp(2.1rem, 5.4vw, 3.5rem); }
.hero__title .gold { color: var(--gold); }
.hero__lead { color: var(--text-muted); font-size: 1.12rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0 1.1rem; }
.hero__note { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; color: var(--text-dim); font-size: .9rem; }

@media (max-width: 860px) {
    .hero__inner { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(2.4rem, 6vw, 4rem); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--border); }
.section__head { max-width: 60ch; margin-bottom: 1.8rem; }
.section__title { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
.section__lead { color: var(--text-muted); }

.cat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--gap); }
.cat {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.3rem; border-top: 3px solid var(--gold); transition: transform .14s ease, border-color .14s;
}
.cat:hover { transform: translateY(-3px); }
.cat__title { font-size: 1.12rem; }
.cat__text { color: var(--text-muted); margin: 0; font-size: .95rem; }

.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap); }
.feature { display: flex; gap: .9rem; align-items: flex-start; }
.feature__ic { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,179,71,.12); color: var(--gold); }
.feature__title { font-size: 1.05rem; margin-bottom: .25rem; }
.feature__text { color: var(--text-muted); margin: 0; font-size: .92rem; }

/* protection band */
.protect { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center; }
.protect__icon { width: 56px; height: 56px; }
.protect__text h2 { font-size: 1.35rem; margin-bottom: .3rem; }
.protect__text p { color: var(--text-muted); margin: 0; }
@media (max-width: 720px) { .protect { grid-template-columns: 1fr; text-align: center; } .protect__icon { margin: 0 auto; } }

/* ---------- Legal / content (two-column) ---------- */
.legal { padding-block: clamp(2rem, 5vw, 3.4rem); }
.legal__grid { display: grid; grid-template-columns: 230px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.legal__toc { position: sticky; top: 88px; }
.legal__toc h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); }
.legal__toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.legal__toc a { display: block; padding: .32rem 0; color: var(--text-muted); font-size: .92rem; }
.legal__toc a:hover { color: var(--gold-2); text-decoration: none; }
.legal__header { border-bottom: 1px solid var(--border); padding-bottom: 1.1rem; margin-bottom: 1.4rem; }
.legal__icon { margin-bottom: .7rem; }
.legal__title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.legal__intro { color: var(--text-muted); font-size: 1.05rem; }
.legal__updated { color: var(--text-dim); font-size: .85rem; margin: 0; }
.legal__section { margin-bottom: 1.9rem; }
.legal__section h2 { font-size: 1.28rem; }
.legal__list { padding-left: 1.2rem; color: var(--text); }
.legal__list li { margin-bottom: .45rem; }
.legal__callout { background: var(--surface); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 1rem 1.1rem; color: var(--text); }
.legal__demo-note { margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed var(--border); color: var(--text-dim); font-size: .85rem; }
@media (max-width: 820px) { .legal__grid { grid-template-columns: 1fr; } .legal__toc { position: static; } }

/* ---------- Forms (register / contact / support) ---------- */
.auth { padding-block: clamp(2rem, 5vw, 3.4rem); }
.auth__inner { max-width: 680px; margin: 0 auto; }
.auth__header { margin-bottom: 1.4rem; }
.auth__title { font-size: clamp(1.7rem, 4vw, 2.3rem); }
.auth__subtitle { color: var(--text-muted); }
.rg-statement { background: var(--surface); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.4rem; color: var(--text); }
.auth__form { display: grid; gap: 1.1rem; }
.auth__step { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; background: var(--surface); }
.auth__step--rg { border-color: rgba(255,179,71,.4); background: rgba(255,179,71,.05); }
.auth__step-title { font-size: 1.05rem; margin-bottom: .9rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; margin: 0 0 .2rem; }
.field__label { font-weight: 600; font-size: .92rem; }
.field__hint { color: var(--text-dim); font-size: .82rem; }
.field__input { font: inherit; color: var(--text); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .65rem .75rem; }
.field__input:focus { border-color: var(--gold); outline: none; }
.field__error { color: #ffb4b4; font-size: .85rem; }
.check { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .6rem; }
.check__input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--gold); flex: 0 0 auto; }
.check__opt { color: var(--gold-2); font-weight: 700; }
.auth__error { background: rgba(255,107,107,.12); border: 1px solid var(--danger); color: #ffd9d9; border-radius: var(--radius-sm); padding: .8rem 1rem; }
.auth__success { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.auth__success-icon { width: 56px; height: 56px; color: var(--ok); margin-bottom: .6rem; }
.auth__note { background: var(--bg-2); border: 1px dashed var(--border); border-radius: var(--radius-sm); padding: .8rem 1rem; color: var(--text-muted); font-size: .9rem; }
.auth__rg-reminder { color: var(--text-muted); font-size: .92rem; }

/* contact grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; }
.info-card h3 { font-size: 1.05rem; }
.info-card p { color: var(--text-muted); margin: 0 0 .5rem; }

/* FAQ */
.faq { display: grid; gap: .7rem; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 1.1rem; }
.faq__item summary { cursor: pointer; padding: 1rem 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-weight: 800; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { color: var(--text-muted); padding-bottom: 1rem; margin: 0; }

/* RG help block */
.rg-help { background: linear-gradient(160deg, rgba(255,179,71,.12), var(--surface)); border: 1px solid rgba(255,179,71,.3); border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1.8rem; }
.rg-help__channels { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 0; margin: .6rem 0 0; }
.rg-help__channels li { display: flex; flex-direction: column; }
.rg-help__channels span { color: var(--text-dim); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.rg-help__channels a { font-weight: 700; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); margin-top: 2.5rem; }
.rg-bar { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.rg-bar__icon { flex: 0 0 auto; }
.rg-bar__text { margin: 0; color: var(--text-muted); font-size: .9rem; flex: 1 1 320px; }
.rg-bar__text strong { color: var(--text); }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--gap); padding-block: 2rem; }
@media (max-width: 820px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin-bottom: .8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: var(--text-muted); font-size: .92rem; }
.footer-col a:hover { color: var(--gold-2); }
.footer-about__brand { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem; }
.footer-about p { color: var(--text-muted); font-size: .9rem; }

.regulator-badges { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: flex-start; padding-block: 1.4rem; border-top: 1px solid var(--border); }
.regulator-badges__item { display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--text-muted); }
.regulator-badges__item:hover { text-decoration: none; color: #fff; }
.regulator-badges__img { display: block; height: 50px; width: auto; padding: .4rem .6rem; background: #fff; border-radius: var(--radius-sm); object-fit: contain; }
.regulator-badges__logo-box { display: flex; align-items: center; height: 50px; padding: .4rem .6rem; background: #fff; border-radius: var(--radius-sm); }
.regulator-badges__logo { display: block; height: 100%; width: auto; }
.regulator-badges__badge { display: block; height: 50px; width: auto; }
.regulator-badges__caption { font-size: .76rem; color: var(--text-dim); text-align: center; }

.site-footer__legal { border-top: 1px solid var(--border); padding-block: 1.2rem; color: var(--text-dim); font-size: .82rem; }
.site-footer__demo { color: var(--gold); }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-bottom: 1.2rem; }
.site-social { display: flex; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.site-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--text-muted); }
.site-social a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Age gate / cookie ---------- */
.age-gate, .age-block { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; background: rgba(12,6,17,.82); backdrop-filter: blur(6px); }
.age-gate__box, .age-block__box { max-width: 460px; width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.age-gate__icon { margin-bottom: .4rem; }
.age-gate__title { font-size: 1.5rem; }
.age-gate__desc { color: var(--text-muted); }
.age-gate__actions { display: grid; gap: .7rem; margin: 1.3rem 0 1rem; }
.age-gate__help { color: var(--text-dim); font-size: .85rem; margin: 0; }
.age-block__box { text-align: center; }

.cookie-banner { position: fixed; left: var(--gap); right: var(--gap); bottom: var(--gap); z-index: 150; max-width: 760px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.2rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; box-shadow: 0 16px 50px rgba(0,0,0,.55); }
.cookie-banner__text { margin: 0; flex: 1 1 300px; color: var(--text-muted); font-size: .9rem; }
.cookie-banner__actions { display: flex; gap: .6rem; }

/* ---------- Ollywood Casino premium skin ---------- */
body {
    background:
        linear-gradient(90deg, rgba(255,179,71,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,122,89,.035) 1px, transparent 1px),
        radial-gradient(900px 520px at 76% 0%, rgba(255,179,71,.18), transparent 58%),
        linear-gradient(180deg, #120718 0%, var(--bg) 42%, #1a0e23 100%);
    background-size: 44px 44px, 44px 44px, auto, auto;
}

a { color: var(--lime); }

.site-header {
    background: rgba(21, 10, 28, .78);
    border-bottom-color: rgba(255,179,71,.18);
    box-shadow: 0 12px 40px rgba(0,0,0,.32);
}

.site-header__inner { padding-block: .85rem; }
.brand__logo { filter: drop-shadow(0 0 18px rgba(255,179,71,.36)); }
.brand__name { letter-spacing: .08em; }
.brand__name b { color: var(--lime); text-shadow: 0 0 18px rgba(255,179,71,.46); }

.site-nav__link {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: .44rem .72rem;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
    background: rgba(255,179,71,.08);
    border-color: rgba(255,179,71,.18);
}
.site-nav__link[aria-current="page"]::after { display: none; }

.btn {
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.btn--primary {
    background: linear-gradient(135deg, var(--lime), var(--teal));
    color: #2b1700;
    border-color: rgba(255,255,255,.32);
}
.btn--ghost {
    background: rgba(255,255,255,.035);
    border-color: rgba(255,179,71,.24);
}
.btn--ghost:hover {
    background: rgba(255,179,71,.08);
    border-color: var(--lime);
}

.badge--age {
    background: linear-gradient(135deg, var(--rose), #ffb347);
    box-shadow: 0 0 0 4px rgba(255,122,89,.12);
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom-color: rgba(255,179,71,.16);
    background:
        linear-gradient(115deg, rgba(255,179,71,.14), transparent 34%),
        linear-gradient(180deg, rgba(26,13,36,.2), rgba(21,10,28,.72)),
        #150a1c;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -18% 44% auto auto;
    width: 48vw;
    height: 82vh;
    background: conic-gradient(from 200deg, transparent 0 22%, rgba(255,179,71,.22) 28%, rgba(255,122,89,.16) 35%, transparent 45% 100%);
    transform: rotate(10deg);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 88px;
    background: linear-gradient(180deg, transparent, rgba(21,10,28,.9));
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 1;
    min-height: min(760px, calc(100vh - 70px));
}
.eyebrow {
    color: var(--teal);
    letter-spacing: .12em;
}
.hero__title {
    max-width: 9.5ch;
    font-size: clamp(3rem, 8vw, 6.8rem);
    letter-spacing: 0;
    line-height: .9;
}
.hero__title .gold {
    color: var(--lime);
    text-shadow: 0 0 34px rgba(255,179,71,.32);
}
.hero__lead {
    max-width: 54ch;
    font-size: clamp(1rem, 1.8vw, 1.22rem);
}
.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.25rem;
}
.hero__stats span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    min-height: 38px;
    padding: .42rem .72rem;
    color: var(--text-muted);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,179,71,.16);
    border-radius: 999px;
}
.hero__stats strong { color: #fff; }

.hero-stage {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255,179,71,.2);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(255,122,89,.12), transparent 36%),
        linear-gradient(150deg, rgba(255,179,71,.12), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
    box-shadow: 0 30px 90px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04);
}
.hero-stage::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 14%;
    height: 34%;
    border: 2px solid rgba(255,179,71,.34);
    border-radius: 50%;
    transform: perspective(700px) rotateX(64deg);
    background:
        repeating-radial-gradient(ellipse at center, rgba(255,179,71,.1) 0 2px, transparent 2px 18px),
        rgba(31,16,41,.55);
}
.hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0 18%, rgba(255,255,255,.12) 18.3%, transparent 23%, transparent 100%);
    opacity: .7;
}
.stage-card {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .2rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(26,13,36,.72);
    box-shadow: 0 18px 44px rgba(0,0,0,.32);
    backdrop-filter: blur(12px);
}
.stage-card--main {
    left: 9%;
    top: 12%;
    width: min(310px, 72%);
    height: 180px;
    background:
        linear-gradient(135deg, rgba(255,179,71,.22), rgba(255,122,89,.1)),
        rgba(26,13,36,.78);
}
.stage-card--slot {
    right: 8%;
    top: 31%;
    width: 190px;
    height: 136px;
    border-color: rgba(199,125,255,.32);
}
.stage-card--mini {
    left: 18%;
    bottom: 12%;
    width: 190px;
    height: 88px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: var(--lime);
}
.stage-card--mini .icon { width: 1.4rem; height: 1.4rem; }
.stage-card__label {
    color: var(--text-dim);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.stage-card__value {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 850;
    line-height: .95;
}
.stage-card__meta {
    color: var(--teal);
    font-weight: 700;
}
.chip {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    color: #2b1700;
    font-weight: 900;
    border: 8px dashed rgba(21,10,28,.32);
    background: linear-gradient(135deg, var(--lime), var(--teal));
    box-shadow: 0 18px 42px rgba(0,0,0,.38);
}
.chip--one { right: 15%; top: 8%; transform: rotate(14deg); }
.chip--two { right: 28%; bottom: 14%; transform: rotate(-18deg); background: linear-gradient(135deg, #ffd166, var(--rose)); }
.stage-rail {
    position: absolute;
    z-index: 1;
    left: 10%;
    right: 10%;
    bottom: 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}
.stage-rail span {
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-weight: 800;
}

.dot-rule {
    height: 9px;
    color: var(--lime);
    background-size: 14px 9px;
}
.section--alt {
    background:
        linear-gradient(90deg, rgba(255,122,89,.06), transparent),
        var(--bg-2);
}
.section__title {
    letter-spacing: 0;
}
.cat {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border-top: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
        var(--surface);
}
.cat::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--teal));
}
.cat--teal::before { background: linear-gradient(90deg, var(--teal), var(--violet)); }
.cat--rose::before { background: linear-gradient(90deg, var(--rose), #ffd166); }
.feature__ic {
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,179,71,.16), rgba(255,122,89,.12));
    color: var(--lime);
}
.protect,
.auth__step,
.info-card,
.legal__callout,
.rg-help,
.age-gate__box,
.age-block__box,
.cookie-banner {
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.protect {
    background:
        linear-gradient(110deg, rgba(255,179,71,.13), transparent 42%),
        linear-gradient(180deg, var(--surface), var(--bg-2));
}

@media (max-width: 860px) {
    .hero__inner { min-height: 0; padding-block: 2.2rem 3rem; }
    .hero__title { max-width: 10ch; font-size: clamp(2.6rem, 15vw, 4.8rem); }
    .hero-stage { min-height: 420px; }
    .stage-card--slot { right: 6%; top: 36%; width: 165px; }
    .chip { width: 64px; height: 64px; border-width: 6px; }
}

@media (max-width: 560px) {
    .site-header__inner { gap: .65rem; }
    .brand__name { font-size: 1rem; }
    .site-header__cta { gap: .45rem; }
    .hero__title { font-size: clamp(2.35rem, 13vw, 3.8rem); }
    .hero__lead { font-size: .98rem; line-height: 1.55; }
    .hero__stats { gap: .45rem; margin-top: 1rem; }
    .hero__stats span { min-height: 34px; padding: .34rem .58rem; font-size: .88rem; }
    .hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
    .hero__actions .btn { width: 100%; min-height: 56px; padding-inline: .7rem; white-space: normal; line-height: 1.15; }
    .hero__note { display: block; font-size: .82rem; line-height: 1.55; }
    .hero__note .badge { margin: 0 .4rem .4rem 0; vertical-align: middle; }
    .hero-stage { min-height: 300px; margin-top: 1.25rem; }
    .stage-card--main { left: 6%; top: 10%; width: 78%; height: 150px; }
    .stage-card--slot { right: 6%; top: 48%; width: 148px; height: 108px; }
    .stage-card--mini { left: 6%; bottom: 11%; width: 168px; }
    .chip--one { right: 7%; top: 9%; }
    .chip--two { right: 9%; bottom: 12%; }
    .stage-rail { display: none; }
    .cookie-banner__actions { width: 100%; flex-direction: column; }
    .cookie-banner__actions .btn { width: 100%; }
}

/* ============================================================
   Casino app shell (sidebar + topbar) + lobby + tiles + stage
   ============================================================ */
.app { display: flex; align-items: flex-start; min-height: 100vh; }
.app__main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; min-height: 100vh; }
.content { flex: 1 0 auto; width: 100%; max-width: 1320px; margin-inline: auto; padding: clamp(1rem, 2.4vw, 1.9rem); }

/* Sidebar */
.sidebar {
    position: sticky; top: 0; align-self: flex-start; height: 100vh; flex: 0 0 250px; width: 250px; overflow-y: auto;
    background: var(--bg-2); border-right: 1px solid var(--border); padding: .85rem .7rem; display: flex; flex-direction: column; gap: .25rem;
}
.sidebar__brand { display: flex; align-items: center; gap: .55rem; padding: .35rem .6rem .85rem; color: #fff; font-weight: 800; }
.sidebar__brand:hover { text-decoration: none; }
.sidebar__brand-name { font-size: 1.16rem; letter-spacing: .12em; text-transform: uppercase; }
.sidebar__nav { display: flex; flex-direction: column; gap: .12rem; }
.sidebar__label { margin: .95rem .7rem .25rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); }
.side-link { display: flex; align-items: center; gap: .7rem; padding: .58rem .7rem; border-radius: 10px; color: var(--text-muted); font-weight: 600; font-size: .95rem; }
.side-link:hover { background: var(--surface); color: #fff; text-decoration: none; }
.side-link .icon { width: 1.25em; height: 1.25em; color: var(--text-dim); flex: 0 0 auto; }
.side-link.is-active { background: linear-gradient(90deg, rgba(255,179,71,.16), transparent); color: #fff; box-shadow: inset 3px 0 0 var(--gold); }
.side-link.is-active .icon { color: var(--gold); }
.sidebar__foot { margin-top: auto; padding-top: .6rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .12rem; }
.side-link--muted { font-size: .87rem; }

/* Topbar */
.topbar {
    position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: .65rem;
    padding: .55rem clamp(.8rem, 2vw, 1.3rem); min-height: 62px;
    background: rgba(26,13,36,.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.topbar__toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 10px; width: 42px; height: 40px; color: var(--text); cursor: pointer; place-items: center; }
.topbar__brand { display: none; align-items: center; gap: .5rem; color: #fff; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.topbar__brand b { color: var(--gold); }
.topbar__brand:hover { text-decoration: none; }
.topbar__spacer { flex: 1 1 auto; }
.topbar__acct { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.topbar__acct .icon { width: 1.3em; height: 1.3em; }
.app__scrim { position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,.55); }

@media (max-width: 980px) {
    .sidebar { position: fixed; z-index: 120; left: 0; top: 0; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 0 0 60px rgba(0,0,0,.6); }
    .app.is-sidebar-open .sidebar { transform: none; }
    .topbar__toggle { display: grid; }
    .topbar__brand { display: flex; }
    .topbar__login { display: none; }
}

/* Promo hero (home) */
.promo-hero {
    position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 18px;
    padding: clamp(1.4rem, 3vw, 2.4rem); margin-bottom: 1.5rem;
    background: radial-gradient(700px 280px at 86% -25%, rgba(255,179,71,.16), transparent 60%), linear-gradient(180deg, var(--surface), var(--bg-2));
}
.promo-hero__glow { position: absolute; right: -70px; top: -70px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, var(--gold), transparent 65%); opacity: .16; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(14px); } }
.promo-hero__body { position: relative; }
.promo-hero__title { font-size: clamp(1.6rem, 4vw, 2.55rem); max-width: 20ch; }
.promo-hero__title .gold { color: var(--gold); }
.promo-hero__lead { color: var(--text-muted); max-width: 56ch; }
.promo-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.1rem; }
.promo-hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; position: relative; }
.promo-hero__chips .chip { position: static; width: auto; height: auto; display: inline-flex; align-items: center; place-items: center; gap: .4rem; padding: .4rem .8rem; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,.06); box-shadow: none; font-size: .82rem; font-weight: 600; color: var(--text-muted); }
.promo-hero__chips .chip .icon { color: var(--gold); }

/* Lobby + filters */
.lobby { margin-top: .4rem; }
.lobby__head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .8rem 1rem; margin-bottom: 1.1rem; }
.lobby__title { display: flex; align-items: center; gap: .5rem; font-size: 1.45rem; margin: 0; }
.lobby__title .icon { color: var(--gold); width: 1.2em; height: 1.2em; }
.lobby__filters { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .6rem; margin-left: auto; }
.ctrl { display: inline-flex; flex-direction: column; gap: .2rem; font-size: .68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .07em; }
.ctrl > span { display: inline-flex; align-items: center; gap: .3rem; }
.ctrl select { font: inherit; font-size: .85rem; text-transform: none; letter-spacing: 0; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: .42rem .6rem; cursor: pointer; }
.lobby__count { color: var(--text-dim); font-size: .82rem; padding-bottom: .3rem; }
.lobby__empty { text-align: center; color: var(--text-dim); padding: 2.4rem; }
.lobby__disclaimer { margin-top: 1.5rem; color: var(--text-dim); font-size: .82rem; }

/* Game grid + tiles */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(184px, 1fr)); gap: clamp(.7rem, 1.5vw, 1.1rem); }
.game-grid--compact { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); margin-top: .4rem; }
.tile { display: flex; flex-direction: column; gap: .5rem; color: var(--text); }
.tile:hover { text-decoration: none; }
.tile__art { position: relative; display: block; aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, var(--c1, #333), var(--c2, #111)); }
.tile__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.tile:hover .tile__img { transform: scale(1.06); }
.tile__ph { position: absolute; inset: 0; display: grid; place-items: center; font-size: 2.2rem; font-weight: 800; color: rgba(255,255,255,.92); }
.tile__art::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); opacity: 0; transition: opacity .2s; }
.tile:hover .tile__art::after { opacity: 1; }
.tile__tag { position: absolute; top: .5rem; left: .5rem; z-index: 2; padding: .16rem .5rem; border-radius: 999px; font-size: .64rem; font-weight: 800; letter-spacing: .05em; }
.tile__tag--hot { background: var(--danger); color: #fff; }
.tile__tag--new { background: var(--gold); color: var(--gold-ink); }
.tile__jackpot { position: absolute; top: .5rem; right: .5rem; z-index: 2; display: inline-flex; align-items: center; gap: .25rem; padding: .18rem .5rem; border-radius: 999px; background: rgba(0,0,0,.62); color: var(--gold-2); font-size: .7rem; font-weight: 800; }
.tile__play { position: absolute; inset: 0; margin: auto; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,179,71,.94); color: #111; opacity: 0; transform: scale(.7); transition: .2s ease; }
.tile__play .icon { width: 1.5em; height: 1.5em; }
.tile:hover .tile__play, .tile:focus-visible .tile__play { opacity: 1; transform: scale(1); }
.tile__meta { display: flex; flex-direction: column; gap: .08rem; }
.tile__name { font-weight: 700; font-size: .92rem; line-height: 1.2; }
.tile__prov { color: var(--text-dim); font-size: .78rem; }
.tile__bet { color: var(--text-muted); font-size: .78rem; }

/* Game launch / stage */
.crumbs { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; color: var(--text-dim); font-size: .85rem; margin-bottom: 1rem; }
.crumbs a { color: var(--text-muted); }
.crumbs .icon { color: var(--text-dim); }
.stage { position: relative; aspect-ratio: 16 / 9; max-height: 560px; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); display: grid; place-items: center; background: linear-gradient(135deg, var(--c1, #222), var(--c2, #111)); }
.stage__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(8px) brightness(.5); transform: scale(1.1); }
.stage__scrim { position: absolute; inset: 0; background: radial-gradient(circle at 50% 38%, rgba(0,0,0,.28), rgba(0,0,0,.8)); }
.stage__gate { position: relative; text-align: center; max-width: 460px; padding: 1.5rem; }
.stage__lock { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,179,71,.16); border: 1px solid var(--gold); color: var(--gold); margin-bottom: .8rem; }
.stage__lock .icon { width: 1.8em; height: 1.8em; }
.stage__title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: .1rem; color: #fff; }
.stage__prov { color: var(--text-dim); margin-bottom: .8rem; }
.stage__msg { color: var(--text-muted); }
.stage__actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin: 1.1rem 0 .6rem; }
.stage__demo { color: var(--text-dim); font-size: .78rem; }

.game-info { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.4rem; margin: 1.6rem 0; }
.game-info__main h2 { font-size: 1.3rem; }
.game-info__rg { display: flex; gap: .5rem; align-items: flex-start; color: var(--text-muted); font-size: .9rem; }
.game-info__rg .icon { color: var(--gold); flex: 0 0 auto; margin-top: .15rem; }
.game-info__specs { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: .6rem 1.2rem; margin: 0; }
.game-info__specs > div { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--border); }
.game-info__specs > div:last-child { border-bottom: none; }
.game-info__specs dt { color: var(--text-dim); }
.game-info__specs dd { margin: 0; font-weight: 700; }
.game-launch__more-title { font-size: 1.2rem; margin: 1.6rem 0 .2rem; }
@media (max-width: 760px) { .game-info { grid-template-columns: 1fr; } }

/* Footer inside app shell */
.site-footer { padding: 1.6rem clamp(.8rem, 2vw, 1.3rem) 2rem; border-top: 1px solid var(--border); background: var(--bg-2); }
.site-footer > * { max-width: 1320px; margin-inline: auto; }
.site-footer__operator { color: var(--text-dim); font-size: .82rem; line-height: 1.6; }
.footer-about__age { color: var(--text-muted); font-size: .85rem; }

/* Account / auth extras */
.topbar__acct--named { width: auto; border-radius: 999px; gap: .4rem; padding: 0 .8rem 0 .55rem; height: 40px; font-weight: 700; font-size: .9rem; }
.topbar__acct-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 560px) { .topbar__acct-name { display: none; } }
.stage__lock--ok { background: rgba(255,179,71,.2); }
.auth--narrow .auth__inner { max-width: 460px; margin-inline: auto; }
.auth__alt { text-align: center; color: var(--text-muted); margin-top: 1rem; }
.rg-statement--sm { margin-top: 1.2rem; font-size: .85rem; }

/* ============================================================
   iRevegas — neon sidebar-only theme (overrides)
   ============================================================ */
:root {
    --bg:         #150a1c;
    --bg-2:       #1f1029;
    --surface:    #2a1738;
    --surface-2:  #351f47;
    --border:     #4d3266;
    --text:       #f9f2ff;
    --text-muted: #cdbede;
    --text-dim:   #93829f;
    --gold:       #ffb347;
    --gold-2:     #ffd58f;
    --gold-ink:   #2b1700;
    --lime:       #ffd166;
    --teal:       #ff7a59;
    --violet:     #c77dff;
    --rose:       #ff7a59;
    --danger:     #ff5a5a;
    --neon:       0 0 22px rgba(255,179,71,.45);
}
body { background:
    radial-gradient(1100px 520px at 14% -10%, rgba(199,125,255,.22), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255,122,89,.14), transparent 55%), var(--bg); }

a { color: var(--gold-2); }
.btn--primary { box-shadow: 0 8px 24px rgba(255,122,89,.32); }
.btn--primary:hover { box-shadow: 0 10px 30px rgba(255,122,89,.5); }
.btn--ghost:hover { border-color: var(--gold); color: #fff; }

/* ---- Sidebar-only layout ---- */
.app--sidebar .sidebar { flex-basis: 268px; width: 268px; background:
    linear-gradient(180deg, rgba(199,125,255,.14), transparent 30%), var(--bg-2);
    border-right: 1px solid var(--border); box-shadow: 1px 0 30px rgba(199,125,255,.12); }
.app--sidebar .content { padding-top: clamp(1.2rem, 2.4vw, 2rem); }

.sidebar__brand { gap: .65rem; padding: .5rem .5rem 1rem; }
.sidebar__brand-logo { display: inline-grid; place-items: center; filter: drop-shadow(0 4px 14px rgba(255,122,89,.5)); animation: bob 4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-3px) } }
.sidebar__brand-name { font-size: 1.3rem; letter-spacing: .02em; text-transform: none; }
.sidebar__brand-name b { color: var(--gold); }

.side-link { border-radius: 12px; position: relative; }
.side-link .icon { color: var(--text-dim); transition: color .15s, transform .15s; }
.side-link:hover { background: var(--surface); color: #fff; }
.side-link:hover .icon { color: var(--gold-2); transform: scale(1.12); }
.side-link.is-active { background: linear-gradient(90deg, rgba(255,122,89,.22), rgba(199,125,255,.08)); color: #fff; box-shadow: inset 3px 0 0 var(--gold), var(--neon); }
.side-link.is-active .icon { color: var(--gold); }
.side-link__tag { margin-left: auto; font-size: .58rem; font-weight: 800; letter-spacing: .06em; color: var(--gold-ink); background: var(--gold); padding: .1rem .38rem; border-radius: 999px; }

.sidebar__label { color: var(--text-dim); }
.sidebar__account { margin-top: 1rem; padding: .9rem .2rem; border-block: 1px solid var(--border); display: flex; flex-direction: column; gap: .5rem; }
.btn--block { width: 100%; }
.sidebar__user { display: flex; align-items: center; gap: .6rem; padding: .5rem .6rem; border-radius: 12px; background: var(--surface); color: #fff; }
.sidebar__user:hover { text-decoration: none; background: var(--surface-2); }
.sidebar__user .icon { width: 1.6em; height: 1.6em; color: var(--gold-2); }
.sidebar__user span { display: flex; flex-direction: column; line-height: 1.15; }
.sidebar__user-name { font-weight: 700; }
.sidebar__user-sub { font-size: .72rem; color: var(--text-dim); }
.sidebar__foot { margin-top: 1rem; }
.sidebar__age { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--text-dim); padding: .2rem .6rem .7rem; }

/* Floating drawer toggle (mobile only) */
.drawer-toggle { display: none; position: fixed; z-index: 60; top: 14px; left: 14px; width: 46px; height: 46px;
    border-radius: 12px; border: 1px solid var(--border); background: rgba(21,12,38,.9); backdrop-filter: blur(8px);
    color: #fff; cursor: pointer; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.drawer-toggle .icon { width: 1.4em; height: 1.4em; }
@media (max-width: 980px) {
    .drawer-toggle { display: grid; }
    .app--sidebar .content { padding-top: 4.6rem; }
}

/* ---- Maxed effects: hero, tiles, carousels ---- */
.promo-hero { border-color: rgba(255,122,89,.3);
    background: radial-gradient(680px 300px at 88% -30%, rgba(255,122,89,.22), transparent 60%),
                radial-gradient(520px 280px at 0% 120%, rgba(199,125,255,.25), transparent 60%),
                linear-gradient(180deg, var(--surface), var(--bg-2)); box-shadow: 0 24px 60px rgba(199,125,255,.18); }
.promo-hero__glow { background: radial-gradient(circle, var(--gold), transparent 65%); opacity: .22; }
.promo-hero__title .gold { color: var(--gold); text-shadow: 0 0 26px rgba(255,122,89,.5); }
.promo-hero__chips .chip .icon { color: var(--gold-2); }
.promo-hero::after { content: ""; position: absolute; left: -40px; bottom: -60px; width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, var(--violet), transparent 65%); opacity: .25; animation: floaty 7s ease-in-out infinite reverse; pointer-events: none; }

.lobby__title .icon { color: var(--gold); filter: drop-shadow(0 0 8px rgba(255,122,89,.6)); }
.tile__art { transition: transform .2s ease, box-shadow .2s ease; }
.tile:hover .tile__art { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(255,122,89,.28), 0 0 0 1px rgba(255,122,89,.4); }
.tile__play { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #fff; box-shadow: var(--neon); }
.tile__tag--hot { background: var(--danger); box-shadow: 0 0 14px rgba(255,122,89,.7); }
.tile__tag--new { background: var(--gold); color: var(--gold-ink); }
.tile__jackpot { color: #ffe7b3; }
.tile__name { transition: color .15s; }
.tile:hover .tile__name { color: var(--gold-2); }

/* Home carousels (different grid arrangement) */
.shelf { margin: 0 0 1.8rem; }
.shelf__head { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.shelf__title { display: flex; align-items: center; gap: .5rem; font-size: 1.2rem; margin: 0; }
.shelf__title .icon { color: var(--gold); width: 1.15em; height: 1.15em; }
.shelf__more { margin-left: auto; font-size: .82rem; color: var(--text-muted); }
.shelf__nav { display: inline-flex; gap: .3rem; }
.shelf__btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center; }
.shelf__btn:hover { border-color: var(--gold); color: #fff; box-shadow: var(--neon); }
.shelf__btn[data-rail-prev] .icon { transform: rotate(180deg); }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .6rem; scrollbar-width: thin; }
.rail .tile { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 8px; } .rail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }

/* Featured grid on category pages: first tile spans 2x2 */
.game-grid--featured .tile:first-child { grid-column: span 2; grid-row: span 2; }
@media (max-width: 620px) { .game-grid--featured .tile:first-child { grid-column: span 1; grid-row: span 1; } }

/* Pulsing 19+ badge */
.badge--age { box-shadow: 0 0 0 0 rgba(255,122,89,.5); animation: pulse19 2.6s infinite; }
@keyframes pulse19 { 0% { box-shadow: 0 0 0 0 rgba(255,122,89,.5) } 70% { box-shadow: 0 0 0 8px rgba(255,122,89,0) } 100% { box-shadow: 0 0 0 0 rgba(255,122,89,0) } }

/* ============================================================
   iRevegas — glass "Dynamic Island" top nav (replaces sidebar)
   ============================================================ */
.island-layout .content--island { max-width: 1200px; margin-inline: auto; padding: 94px clamp(1rem, 2.5vw, 1.8rem) 2.5rem; }

.island-dock { position: fixed; top: 14px; left: 0; right: 0; z-index: 100; display: flex; flex-direction: column; align-items: center; gap: 10px; padding-inline: 12px; pointer-events: none; }
.island { pointer-events: auto; display: flex; align-items: center; gap: .45rem; max-width: 100%;
    padding: .4rem .5rem .4rem .85rem;
    background: rgba(28,16,46,.55); backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
    border: 1px solid rgba(255,255,255,.13); border-radius: 999px;
    box-shadow: 0 14px 44px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.18), 0 0 34px rgba(255,122,89,.2);
    animation: islandIn .5s cubic-bezier(.22,1,.36,1); }
@keyframes islandIn { from { opacity: 0; transform: translateY(-16px) scale(.9); } to { opacity: 1; transform: none; } }
.island__brand { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 800; padding-right: .3rem; }
.island__brand:hover { text-decoration: none; }
.island__brand img { filter: drop-shadow(0 2px 8px rgba(255,122,89,.6)); }
.island__brand-name { font-size: 1.02rem; letter-spacing: .01em; }
.island__brand-name b { color: var(--gold); }
.island__nav { display: flex; align-items: center; gap: .1rem; }
.island__link { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .8rem; border-radius: 999px;
    color: var(--text-muted); font-weight: 600; font-size: .92rem; background: none; border: none; cursor: pointer; font: inherit; }
.island__link:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.island__link.is-active { background: rgba(255,122,89,.18); color: #fff; }
.island__link .icon { color: var(--gold-2); }
.island__games[aria-expanded="true"] { background: rgba(255,122,89,.22); color: #fff; }
.island__games svg:last-child { transition: transform .22s; }
.island__games[aria-expanded="true"] svg:last-child { transform: rotate(180deg); }
.island__divider { width: 1px; height: 24px; background: rgba(255,255,255,.15); margin-inline: .25rem; }
.island__account { display: flex; align-items: center; gap: .45rem; }
.btn--pill { padding: .5rem 1rem; border-radius: 999px; }
.island__age { margin-right: .1rem; }
.island__avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; }
.island__avatar .icon { width: 1.3em; height: 1.3em; }

.island-panel { pointer-events: auto; width: min(700px, 94vw); padding: 1rem 1.1rem 1.1rem;
    background: rgba(26,15,42,.72); backdrop-filter: blur(26px) saturate(1.4); -webkit-backdrop-filter: blur(26px) saturate(1.4);
    border: 1px solid rgba(255,255,255,.13); border-radius: 26px;
    box-shadow: 0 26px 64px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.15);
    animation: islandDrop .22s ease; }
@keyframes islandDrop { from { opacity: 0; transform: translateY(-10px) scale(.97); } to { opacity: 1; transform: none; } }
.island-panel__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--text-dim); margin: .1rem .2rem .7rem; }
.island-panel__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .55rem; }
.island-cat { display: flex; flex-direction: column; align-items: center; gap: .45rem; padding: .85rem .5rem; border-radius: 16px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--text-muted); font-size: .82rem; text-align: center; transition: transform .15s, background .15s; }
.island-cat:hover { background: rgba(255,122,89,.16); color: #fff; text-decoration: none; transform: translateY(-3px); }
.island-cat.is-active { border-color: var(--gold); color: #fff; box-shadow: var(--neon); }
.island-cat__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.06); }
.island-cat__ic .icon { width: 1.4em; height: 1.4em; color: var(--gold-2); }
.island-panel__foot { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1rem; padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.island-panel__foot a { display: inline-flex; align-items: center; gap: .4rem; color: var(--text-muted); }
.island-panel__foot a:hover { color: #fff; }
.island-scrim { position: fixed; inset: 0; z-index: 90; }

@media (max-width: 760px) {
    .island__brand-name { display: none; }
    .island__link span { display: none; }
    .island__login { display: none; }
    .island-layout .content--island { padding-top: 84px; }
    .island-panel__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 470px) { .island-panel__grid { grid-template-columns: repeat(2, 1fr); } .island__divider { display: none; } }

/* ---- Themed scrollbars (neon) ---- */
* { scrollbar-width: thin; scrollbar-color: var(--gold) rgba(255,255,255,.05); }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,.04); border-radius: 10px; }
::-webkit-scrollbar-thumb {
    border-radius: 10px; border: 3px solid transparent; background-clip: padding-box;
    background-color: var(--violet);
    background-image: linear-gradient(180deg, var(--gold), var(--violet));
}
::-webkit-scrollbar-thumb:hover { background-image: linear-gradient(180deg, var(--gold-2), var(--gold)); }
::-webkit-scrollbar-corner { background: transparent; }

/* Carousel rails — slimmer themed bar */
.rail { scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 8px; margin-inline: 2px; }
.rail::-webkit-scrollbar-thumb { border: 2px solid transparent; background-image: linear-gradient(90deg, var(--gold), var(--violet)); background-clip: padding-box; border-radius: 8px; }
.rail::-webkit-scrollbar-thumb:hover { background-image: linear-gradient(90deg, var(--gold-2), var(--gold)); }

/* ============================================================
   Asinodays — Material Design theme (overrides G141 chrome)
   ============================================================ */
:root {
    --bg:         #150a1c;
    --bg-2:       #1f1029;
    --surface:    #2a1738;
    --surface-2:  #351f47;
    --border:     #4d3266;
    --text:       #f9f2ff;
    --text-muted: #cdbede;
    --text-dim:   #93829f;
    --gold:       #ffb347;   /* rich amber primary */
    --gold-2:     #ffd58f;
    --gold-ink:   #2b1700;
    --lime:       #ffd166;
    --teal:       #ff7a59;   /* sunset coral secondary */
    --violet:     #c77dff;
    --rose:       #ff7a59;
    --danger:     #ff5a5a;
    --neon:       0 2px 10px rgba(255,179,71,.4);
    --md-e1: 0 1px 3px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.4);
    --md-e2: 0 3px 8px rgba(0,0,0,.5);
    --md-e3: 0 10px 22px rgba(0,0,0,.55);
}
body { font-family: "Roboto", system-ui, -apple-system, Arial, sans-serif; background: var(--bg); }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: 0; }

/* ---- Navigation drawer ---- */
.app--md { align-items: flex-start; }
.md-drawer { position: sticky; top: 0; height: 100vh; flex: 0 0 280px; width: 280px; overflow-y: auto;
    background: var(--surface); border-right: 1px solid var(--border); padding: .4rem .6rem 1.2rem; z-index: 45; }
.md-drawer__brand { display: flex; align-items: center; gap: .6rem; padding: 1rem .8rem 1.1rem; color: #fff; font-size: 1.25rem; font-weight: 700; }
.md-drawer__brand:hover { text-decoration: none; }
.md-drawer__brand b { color: var(--gold); }
.md-drawer__nav { display: flex; flex-direction: column; gap: 2px; }
.md-subheader { font-size: .7rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--text-dim); padding: .95rem .95rem .35rem; margin: 0; }
.md-divider { border: none; border-top: 1px solid var(--border); margin: .55rem .3rem; }
.md-item { display: flex; align-items: center; gap: .9rem; height: 48px; padding: 0 1rem; border-radius: 26px; color: var(--text-muted); font-weight: 500; font-size: .93rem; }
.md-item .icon { width: 1.3em; height: 1.3em; color: var(--text-dim); flex: 0 0 auto; }
.md-item:hover { background: rgba(255,179,71,.09); color: #fff; text-decoration: none; }
.md-item.is-active { background: rgba(255,179,71,.20); color: #fff; }
.md-item.is-active .icon { color: var(--gold); }

/* ---- Top app bar ---- */
.md-appbar { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: .55rem; height: 64px;
    padding: 0 clamp(.6rem, 1.5vw, 1rem); background: var(--surface); box-shadow: var(--md-e1); }
.md-iconbtn { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: none; background: none; color: var(--text); cursor: pointer; }
.md-iconbtn:hover { background: rgba(255,255,255,.08); }
.md-iconbtn .icon { width: 1.4em; height: 1.4em; }
.md-appbar__brand { display: none; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: 1.1rem; }
.md-appbar__brand b { color: var(--gold); }
.md-appbar__brand:hover { text-decoration: none; }
.md-appbar__spacer { flex: 1 1 auto; }
.app--md .md-iconbtn { display: none; }

.md-btn { display: inline-flex; align-items: center; gap: .4rem; height: 40px; padding: 0 1.3rem; border-radius: 20px; font: inherit; font-weight: 500; font-size: .9rem; cursor: pointer; border: none; transition: box-shadow .15s, background .15s, filter .15s; white-space: nowrap; }
.md-btn--filled { background: var(--gold); color: var(--gold-ink); }
.md-btn--filled:hover { box-shadow: var(--md-e2); filter: brightness(1.06); text-decoration: none; }
.md-btn--text { background: none; color: var(--gold-2); }
.md-btn--text:hover { background: rgba(255,179,71,.12); text-decoration: none; }
.md-chip { display: inline-flex; align-items: center; height: 30px; padding: 0 .7rem; border-radius: 8px; font-weight: 700; font-size: .8rem; line-height: 1; }
.md-chip--age { background: var(--danger); color: #2a0008; }
.md-chip--lg { height: 36px; font-size: .95rem; padding: 0 .85rem; }
.md-avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,179,71,.2); color: var(--gold-2); }
.md-avatar .icon { width: 1.35em; height: 1.35em; }

.md-content { width: 100%; max-width: 1320px; margin-inline: auto; padding: clamp(1rem, 2.5vw, 1.9rem); }

/* ---- Material game cards + buttons (override neon) ---- */
.tile__art { border-radius: 12px; border: none; box-shadow: var(--md-e1); transition: box-shadow .18s ease, transform .18s ease; }
.tile:hover .tile__art { transform: translateY(-3px); box-shadow: var(--md-e3); }
.tile__play { background: var(--gold); color: var(--gold-ink); box-shadow: var(--md-e2); }
.tile__tag--hot { background: var(--danger); color: #2a0008; box-shadow: none; }
.tile__tag--new { background: var(--teal); color: #2a0d00; }
.tile:hover .tile__name { color: var(--gold-2); }

.btn { border-radius: 20px; font-weight: 500; }
.btn--primary { background: var(--gold); color: var(--gold-ink); box-shadow: none; }
.btn--primary:hover { box-shadow: var(--md-e2); filter: brightness(1.05); }
.btn--ghost { background: none; border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: var(--gold); color: #fff; }

/* ---- Material promo hero + section accents ---- */
.promo-hero { border: 1px solid var(--border); box-shadow: var(--md-e2);
    background: radial-gradient(640px 300px at 88% -30%, rgba(255,179,71,.22), transparent 60%),
                radial-gradient(520px 280px at -5% 120%, rgba(255,122,89,.14), transparent 60%),
                linear-gradient(180deg, var(--surface-2), var(--surface)); }
.promo-hero__glow { background: radial-gradient(circle, var(--gold), transparent 65%); opacity: .18; }
.promo-hero::after { background: radial-gradient(circle, var(--teal), transparent 65%); opacity: .14; }
.promo-hero__title .gold { color: var(--gold); text-shadow: none; }
.promo-hero__chips .chip { background: var(--surface); border-color: var(--border); }
.promo-hero__chips .chip .icon { color: var(--gold); }
.lobby__title .icon, .shelf__title .icon { color: var(--gold); filter: none; }
.badge--age { animation: none; }
.shelf__btn:hover, .ctrl select:focus { border-color: var(--gold); box-shadow: var(--neon); }

@media (max-width: 980px) {
    .md-drawer { position: fixed; z-index: 120; left: 0; top: 0; transform: translateX(-100%); transition: transform .22s ease; box-shadow: var(--md-e3); }
    .app.is-sidebar-open .md-drawer { transform: none; }
    .app--md .md-iconbtn { display: grid; }
    .md-appbar__brand { display: flex; }
    .md-appbar__login { display: none; }
}

/* ============================================================
   Asinodays v2 — dark gray + red, bottom-nav layout
   ============================================================ */
:root {
    --bg:         #150a1c;   /* deep plum/black */
    --bg-2:       #1f1029;
    --surface:    #2a1738;
    --surface-2:  #351f47;
    --border:     #4d3266;
    --text:       #f9f2ff;
    --text-muted: #cdbede;
    --text-dim:   #93829f;
    --gold:       #ffb347;   /* rich amber primary */
    --gold-2:     #ffd58f;
    --gold-ink:   #2b1700;
    --lime:       #ffd166;   /* golden yellow accent */
    --teal:       #ff7a59;   /* sunset coral accent */
    --violet:     #c77dff;   /* orchid accent */
    --rose:       #ff7a59;
    --danger:     #ff5a5a;
    --neon:       0 2px 12px rgba(255,179,71,.4);
}
body { background: radial-gradient(900px 480px at 82% -10%, rgba(255,122,89,.08), transparent 60%), var(--bg); }

/* Drawer as overlay; main full width; clear bottom nav */
.app--md { display: block; }
.app--md .app__main { width: 100%; min-height: 100vh; display: flex; flex-direction: column; }
.md--bottomnav .app__main { padding-bottom: 80px; }
.md-drawer { position: fixed; z-index: 120; left: 0; top: 0; height: 100vh; width: 286px; flex: none;
    transform: translateX(-100%); transition: transform .24s ease; box-shadow: var(--md-e3); }
.app.is-sidebar-open .md-drawer { transform: none; }
.md-drawer__brand b { color: var(--gold); }
.md-item.is-active { background: rgba(255,122,89,.18); }
.md-item.is-active .icon { color: var(--gold); }
.md-drawer__account { display: flex; flex-direction: column; gap: .5rem; padding: .5rem .3rem 0; }
.md-btn--block { width: 100%; justify-content: center; }
.md-drawer__user { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 500; padding: .5rem .6rem; }
.md-drawer__user .icon { color: var(--gold-2); }

/* Slim top bar (brand + 19+ + sign up) */
.md-appbar { display: none; }
.md-topbar { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: .6rem; height: 56px;
    padding: 0 clamp(.7rem, 2vw, 1.2rem); background: var(--surface); box-shadow: var(--md-e1); }
.md-topbar__brand { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: 1.12rem; }
.md-topbar__brand:hover { text-decoration: none; }
.md-topbar__brand b { color: var(--gold); }
.md-topbar__spacer { flex: 1 1 auto; }
.md-topbar__cta { height: 38px; }

/* Bottom navigation */
.md-bottomnav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; height: 72px;
    background: var(--surface); border-top: 1px solid var(--border); box-shadow: 0 -4px 18px rgba(0,0,0,.5); }
.md-tab { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    border: none; background: none; color: var(--text-dim); font: inherit; font-size: .7rem; font-weight: 500; cursor: pointer; position: relative; }
.md-tab .icon { width: 1.5em; height: 1.5em; transition: transform .15s; }
.md-tab:hover { color: var(--text); text-decoration: none; }
.md-tab.is-active { color: var(--gold); }
.md-tab.is-active .icon { transform: translateY(-1px); }
.md-tab.is-active::before { content: ""; position: absolute; top: 8px; width: 44px; height: 30px; border-radius: 16px; background: rgba(255,122,89,.18); z-index: -1; }

/* Red accents on cards/hero */
.tile__play { background: var(--gold); color: #fff; }
.tile__tag--hot { background: var(--gold); color: #fff; }
.tile__tag--new { background: var(--teal); color: #2a0d00; }
.promo-hero { background:
    radial-gradient(640px 300px at 88% -30%, rgba(255,122,89,.22), transparent 60%),
    radial-gradient(520px 280px at -5% 120%, rgba(255,122,89,.12), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface)); }
.promo-hero__glow { background: radial-gradient(circle, var(--gold), transparent 65%); }
.promo-hero::after { background: radial-gradient(circle, var(--gold-2), transparent 65%); }
.md-chip--age { background: var(--gold); color: #fff; }

/* ============================================================
   Asinodays v3 — "Casino Glam" flair layer (gold + neon, motion)
   Additive overlay: glossy CTAs, neon glow, shine sweeps, jackpot
   pulse. Sits on top of the red v2 base. Respects reduced-motion.
   ============================================================ */
:root {
    --gold-rich: #ffd166;
    --gold-deep: #e98a2b;
    --gold-soft: #ffe9c4;
    --neon-pink: #ff7a59;   /* sunset coral */
    --neon-cyan: #c77dff;   /* orchid */
    --glow-gold: 0 0 18px rgba(255,179,71,.55);
    --grad-gold: linear-gradient(135deg, #ffe9c4 0%, #ffd166 32%, #ffb347 64%, #c8791a 100%);
    --grad-neon: linear-gradient(120deg, var(--neon-pink), var(--gold-rich) 45%, var(--neon-cyan));
}

@keyframes ad-shine  { 0% { transform: translateX(-160%) skewX(-18deg); } 100% { transform: translateX(260%) skewX(-18deg); } }
@keyframes ad-sheen  { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes ad-float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes ad-jackpot{ 0%,100% { box-shadow: 0 0 14px rgba(255,179,71,.45); } 50% { box-shadow: 0 0 26px rgba(255,179,71,.85); } }
@keyframes ad-ring   { to { transform: rotate(1turn); } }

/* ---- Ambient backdrop: layered casino glows ---- */
body {
    background:
        radial-gradient(900px 480px at 82% -10%, rgba(255,122,89,.12), transparent 60%),
        radial-gradient(720px 440px at 4% 6%,  rgba(255,122,89,.07), transparent 60%),
        radial-gradient(640px 520px at 96% 92%, rgba(199,125,255,.05), transparent 60%),
        var(--bg);
}

/* ---- Brand wordmark: gilded "Asino" + neon "days" ---- */
.md-topbar__brand span, .md-drawer__brand span {
    background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    filter: drop-shadow(0 0 8px rgba(255,179,71,.35)); letter-spacing: .01em;
}
.md-topbar__brand b, .md-drawer__brand b {
    color: var(--neon-pink); -webkit-text-fill-color: var(--neon-pink);
    text-shadow: 0 0 12px rgba(255,122,89,.55);
}

/* ---- Animated neon hairline under the top bar ---- */
.md-topbar { position: sticky; }
.md-topbar::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--gold-rich), var(--neon-cyan), transparent);
    background-size: 200% 100%; animation: ad-sheen 6s linear infinite; opacity: .75;
}

/* ---- Glossy gold CTAs with shine sweep ---- */
.btn--primary, .md-btn--filled, .md-topbar__cta {
    position: relative; overflow: hidden;
    background: var(--grad-gold); color: #2b1700; font-weight: 700;
    box-shadow: 0 6px 18px rgba(233,138,43,.35), var(--glow-gold);
}
.btn--primary:hover, .md-btn--filled:hover, .md-topbar__cta:hover {
    filter: brightness(1.05);
    box-shadow: 0 9px 28px rgba(233,138,43,.5), 0 0 26px rgba(255,179,71,.7);
}
.btn--primary::after, .md-btn--filled::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 45%; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
    transform: translateX(-160%) skewX(-18deg);
}
.btn--primary:hover::after, .md-btn--filled:hover::after { animation: ad-shine .85s ease-out; }
.btn--primary .icon, .md-btn--filled .icon { color: #2b1700; }

/* ---- Hero: animated gradient ring + neon title ---- */
.promo-hero { position: relative; overflow: hidden; }
.promo-hero::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; z-index: 0; pointer-events: none;
    background: var(--grad-neon); background-size: 300% 300%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: ad-sheen 8s linear infinite; opacity: .7;
}
.promo-hero__body, .promo-hero__chips { position: relative; z-index: 2; }
.promo-hero__glow { opacity: .26; filter: blur(2px); }
.eyebrow { color: var(--gold-rich); letter-spacing: .14em; text-shadow: 0 0 12px rgba(255,179,71,.35); }
.promo-hero__title .gold {
    background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    filter: drop-shadow(0 0 14px rgba(255,179,71,.5));
}
.promo-hero__chips .chip {
    border-color: rgba(255,179,71,.35); background: rgba(255,179,71,.07);
    color: var(--text); box-shadow: 0 0 14px rgba(255,179,71,.12);
    animation: ad-float 5s ease-in-out infinite;
}
.promo-hero__chips .chip:nth-child(2) { animation-delay: .5s; }
.promo-hero__chips .chip:nth-child(3) { animation-delay: 1s; }
.promo-hero__chips .chip .icon { color: var(--gold-rich); }

/* ---- Game tiles: neon hover ring, shine sweep, gold play ---- */
.tile__art::before {
    content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 38%; z-index: 3; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
    transform: translateX(-160%) skewX(-18deg); opacity: 0;
}
.tile:hover .tile__art::before { opacity: 1; animation: ad-shine .9s ease-out; }
.tile:hover .tile__art {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0,0,0,.5), 0 0 0 1px rgba(255,179,71,.6), 0 0 22px rgba(255,122,89,.32);
}
.tile__play {
    background: var(--grad-gold); color: #2b1700;
    box-shadow: 0 0 0 4px rgba(255,179,71,.18), var(--glow-gold);
}
.tile:hover .tile__name { color: var(--gold-rich); }
.tile__tag--hot { box-shadow: 0 0 14px rgba(255,122,89,.7); }
.tile__jackpot {
    background: linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,0,0,.55));
    color: var(--gold-soft); border: 1px solid rgba(255,179,71,.5);
    animation: ad-jackpot 2.2s ease-in-out infinite;
}
.tile__jackpot .icon { color: var(--gold-rich); }

/* ---- Shelves & rails ---- */
.shelf__title .icon, .lobby__title .icon { color: var(--gold-rich); filter: drop-shadow(0 0 6px rgba(255,179,71,.45)); }
.shelf__more { color: var(--gold-2); font-weight: 600; }
.shelf__more:hover { color: var(--gold-rich); text-shadow: 0 0 10px rgba(255,179,71,.5); text-decoration: none; }
.shelf__btn:hover { border-color: var(--gold-rich); box-shadow: 0 0 14px rgba(255,179,71,.45); }

/* ---- Bottom nav: brand-red glow on active tab ---- */
.md-tab.is-active .icon { filter: drop-shadow(0 0 6px rgba(255,122,89,.6)); }
.md-tab.is-active::before { box-shadow: 0 0 16px rgba(255,122,89,.5); }

/* ---- 19+ chip: keep red, add neon ring ---- */
.md-chip--age { box-shadow: 0 0 0 1px rgba(255,122,89,.5), 0 0 14px rgba(255,122,89,.55); }

/* ---- Footer RG bar + regulator badges ---- */
.rg-bar { position: relative; }
.rg-bar::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-rich), transparent); opacity: .5;
}
.rg-bar__icon { filter: drop-shadow(0 0 8px rgba(255,179,71,.4)); }
.regulator-badges__item { transition: filter .18s ease, transform .18s ease; }
.regulator-badges__item:hover { filter: drop-shadow(0 0 8px rgba(255,179,71,.35)); transform: translateY(-2px); }

/* ============================================================
   Asinodays v4 — luxury polish + persistent sidebar + more motion
   ============================================================ */
@keyframes ad-textsheen { to { background-position: 200% 50%; } }
@keyframes ad-cta { 0%,100% { box-shadow: 0 6px 18px rgba(233,138,43,.35), 0 0 14px rgba(255,179,71,.4); }
                    50%     { box-shadow: 0 8px 24px rgba(233,138,43,.5),  0 0 28px rgba(255,179,71,.85); } }
@keyframes ad-flicker { 0%,17%,21%,24%,55%,100% { opacity: 1; text-shadow: 0 0 12px rgba(255,122,89,.6); }
                        19%,23%,56% { opacity: .55; text-shadow: none; } }
@keyframes ad-coin { 0%,100% { transform: rotateY(0); } 50% { transform: rotateY(180deg); } }

/* ---- Persistent left sidebar on desktop (off-canvas stays on mobile) ---- */
@media (min-width: 1024px) {
    .app--md { display: flex; align-items: flex-start; }
    .app--md .app__main { flex: 1 1 auto; width: auto; min-width: 0; }
    .md-drawer {
        position: sticky; top: 0; height: 100vh; flex: 0 0 286px; width: 286px;
        transform: none !important; overflow-y: auto;
    }
    .app__scrim { display: none !important; }
    .md-bottomnav { display: none; }
    .md--bottomnav .app__main { padding-bottom: 0; }
    .md-topbar__brand { display: none; }   /* brand lives in the sidebar now */
}

/* ---- Luxury surfaces: velvet drawer, gold trim, glass top bar ---- */
.md-drawer {
    background: linear-gradient(180deg, #241430 0%, #190d22 70%);
    border-right: 1px solid rgba(255,179,71,.14);
    box-shadow: inset -1px 0 0 rgba(255,179,71,.05), var(--md-e3);
}
.md-drawer__brand { border-bottom: 1px solid rgba(255,179,71,.12); margin-bottom: .35rem; }
.md-item { position: relative; }
.md-item:hover { background: rgba(255,179,71,.08); }
.md-item.is-active { background: linear-gradient(90deg, rgba(255,179,71,.16), rgba(255,179,71,.03)); color: #fff; }
.md-item.is-active .icon { color: var(--gold-rich); }
.md-item.is-active::after {
    content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px;
    border-radius: 0 3px 3px 0; background: var(--grad-gold); box-shadow: var(--glow-gold);
}
.md-topbar {
    background: rgba(26,13,36,.72); backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border-bottom: 1px solid rgba(255,179,71,.10);
}
body::before {
    content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background: radial-gradient(120% 70% at 50% -8%, rgba(255,179,71,.05), transparent 60%);
}

/* ---- More gambling motion ---- */
.promo-hero__title .gold {
    background: linear-gradient(100deg, #c8791a, #ffd166 35%, #fff3e0 50%, #ffd166 65%, #c8791a);
    background-size: 200% 100%; -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    filter: drop-shadow(0 0 14px rgba(255,179,71,.5));
    animation: ad-textsheen 4.5s linear infinite;
}
.md-drawer__brand b, .md-topbar__brand b { animation: ad-flicker 7s steps(1) infinite; }
.btn--primary.btn--lg, .md-topbar__cta { animation: ad-cta 2.6s ease-in-out infinite; }
.tile__jackpot .icon { animation: ad-coin 3s ease-in-out infinite; transform-style: preserve-3d; }

/* ---- Respect users who prefer reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .md-topbar::after, .promo-hero::before, .promo-hero__chips .chip, .tile__jackpot,
    .tile:hover .tile__art::before, .btn--primary:hover::after, .md-btn--filled:hover::after,
    .promo-hero__title .gold, .md-drawer__brand b, .md-topbar__brand b,
    .btn--primary.btn--lg, .md-topbar__cta, .tile__jackpot .icon { animation: none !important; }
}

/* ============================================================
   Asinodays v5 — "Golden Hour Carnival" (plum dusk + amber lights)
   Hero banner, promo carousel, wide banners, festive marquee trim.
   ============================================================ */

/* ---- Festive light-bulb marquee twinkle (CSS only) ---- */
@keyframes ad-bulbs { 0%, 49% { background-position: 0 0; } 50%, 100% { background-position: 13px 0; } }

/* ---- Hero banner (image layer + scrim, gradient fallback) ---- */
.hero-banner {
    position: relative; overflow: hidden; isolation: isolate;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: clamp(320px, 38vw, 440px);
    border-radius: 22px; border: 1px solid rgba(255,179,71,.28);
    margin-bottom: 1.4rem;
    box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 38px rgba(255,179,71,.10);
    background: /* plum dusk + amber glow fallback — looks finished without an image */
        radial-gradient(720px 340px at 86% -12%, rgba(255,179,71,.32), transparent 62%),
        radial-gradient(560px 320px at 6% 112%, rgba(255,122,89,.24), transparent 62%),
        radial-gradient(440px 280px at 52% 18%, rgba(199,125,255,.16), transparent 60%),
        linear-gradient(160deg, #3d2452 0%, #1f1029 55%, #150a1c 100%);
}
.hero-banner::before { /* marquee bulb string along the top */
    content: ""; position: absolute; left: 14px; right: 14px; top: 10px; height: 8px; z-index: 3; pointer-events: none;
    background: radial-gradient(circle 3.2px at 6px 4px, #ffe9c4 0 1.6px, rgba(255,209,102,.9) 2.2px, rgba(255,179,71,.22) 2.8px, transparent 3.4px);
    background-size: 26px 8px; background-repeat: repeat-x;
    filter: drop-shadow(0 0 7px rgba(255,179,71,.85));
    animation: ad-bulbs 1.4s steps(1) infinite;
}
.hero-banner__img {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
}
.hero-banner__scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(180deg, rgba(21,10,28,.12) 0%, rgba(21,10,28,.42) 52%, rgba(21,10,28,.88) 100%),
        linear-gradient(90deg, rgba(21,10,28,.66), rgba(21,10,28,.22) 55%, transparent);
}
.hero-banner__body { position: relative; z-index: 2; max-width: 760px; padding: clamp(1.6rem, 4vw, 2.8rem) clamp(1.4rem, 4vw, 2.8rem) .4rem; }
.hero-banner__chips { position: relative; z-index: 2; padding: 0 clamp(1.4rem, 4vw, 2.8rem) clamp(1.3rem, 3vw, 2rem); margin-top: .9rem; }
.hero-banner .eyebrow { color: var(--lime); text-shadow: 0 1px 10px rgba(21,10,28,.8), 0 0 14px rgba(255,209,102,.35); }
.hero-banner .promo-hero__lead { text-shadow: 0 1px 8px rgba(21,10,28,.75); }
.hero-banner .promo-hero__title { text-shadow: 0 2px 16px rgba(21,10,28,.85); }

/* ---- Promo carousel ---- */
.promo-carousel { position: relative; margin-bottom: 1.9rem; }
.promo-carousel__viewport {
    overflow: hidden; border-radius: 18px; border: 1px solid rgba(255,179,71,.20);
    box-shadow: 0 16px 40px rgba(0,0,0,.40), 0 0 24px rgba(255,179,71,.07);
}
.promo-carousel__track { display: flex; transition: transform .5s cubic-bezier(.33,.8,.33,1); }
.promo-slide {
    flex: 0 0 100%; min-width: 100%; position: relative; isolation: isolate; overflow: hidden;
    display: flex; align-items: center; min-height: clamp(200px, 26vw, 280px);
}
.promo-slide__img { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.promo-slide__scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(90deg, rgba(21,10,28,.86) 0%, rgba(21,10,28,.52) 52%, rgba(21,10,28,.12) 100%);
}
.promo-slide__body { position: relative; z-index: 2; max-width: 640px; padding: clamp(1.2rem, 3vw, 2rem) clamp(3.4rem, 5vw, 4rem); }
.promo-slide__kicker {
    margin: 0 0 .35rem; font-size: .74rem; font-weight: 800;
    letter-spacing: .16em; text-transform: uppercase; color: var(--teal);
    text-shadow: 0 0 12px rgba(255,122,89,.35);
}
.promo-slide__title { font-size: clamp(1.35rem, 2.9vw, 1.95rem); margin-bottom: .35rem; text-shadow: 0 2px 12px rgba(21,10,28,.8); }
.promo-slide__text { color: var(--text-muted); max-width: 48ch; margin: 0 0 1rem; text-shadow: 0 1px 8px rgba(21,10,28,.7); }
/* gradient fallbacks per slide (image absent) */
.promo-slide--slots { background:
    radial-gradient(540px 260px at 88% -20%, rgba(255,209,102,.30), transparent 62%),
    radial-gradient(420px 240px at 18% 120%, rgba(255,122,89,.20), transparent 60%),
    linear-gradient(150deg, #3d2452 0%, #241430 60%, #1f1029 100%); }
.promo-slide--live { background:
    radial-gradient(540px 260px at 86% -16%, rgba(255,122,89,.30), transparent 62%),
    radial-gradient(440px 240px at 12% 118%, rgba(255,179,71,.18), transparent 60%),
    linear-gradient(150deg, #43203a 0%, #241430 58%, #1f1029 100%); }
.promo-slide--rewards { background:
    radial-gradient(540px 260px at 88% -18%, rgba(199,125,255,.30), transparent 62%),
    radial-gradient(440px 240px at 14% 120%, rgba(255,179,71,.22), transparent 60%),
    linear-gradient(150deg, #38204f 0%, #241430 58%, #1f1029 100%); }
.promo-carousel__btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center;
    border: 1px solid rgba(255,179,71,.38); background: rgba(21,10,28,.62); color: var(--gold-2);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: border-color .15s, color .15s, box-shadow .15s, background .15s;
}
.promo-carousel__btn:hover, .promo-carousel__btn:focus-visible {
    border-color: var(--teal); color: #fff; background: rgba(255,122,89,.22);
    box-shadow: 0 0 18px rgba(255,122,89,.45);
}
.promo-carousel__btn--prev { left: .7rem; }
.promo-carousel__btn--prev .icon { transform: rotate(180deg); }
.promo-carousel__btn--next { right: .7rem; }
.promo-carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: .75rem; }
.promo-carousel__dot {
    width: 12px; height: 12px; padding: 0; border-radius: 999px; border: none; cursor: pointer;
    background: var(--border); transition: background .18s, width .18s, box-shadow .18s;
}
.promo-carousel__dot:hover { background: var(--teal); }
.promo-carousel__dot[aria-current="true"] {
    width: 26px; background: var(--grad-gold); box-shadow: 0 0 12px rgba(255,179,71,.55);
}

/* ---- Wide promo banners ---- */
.promo-banners { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin: 2.1rem 0 1.2rem; }
@media (max-width: 760px) { .promo-banners { grid-template-columns: 1fr; } }
.promo-wide {
    position: relative; overflow: hidden; isolation: isolate;
    display: flex; align-items: flex-end; min-height: 210px;
    border-radius: 18px; border: 1px solid rgba(255,179,71,.22);
    box-shadow: 0 14px 36px rgba(0,0,0,.38);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.promo-wide:hover {
    transform: translateY(-4px); border-color: rgba(255,122,89,.5);
    box-shadow: 0 20px 44px rgba(0,0,0,.5), 0 0 26px rgba(255,179,71,.26);
}
.promo-wide__img { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform .35s ease; }
.promo-wide:hover .promo-wide__img { transform: scale(1.04); }
.promo-wide__scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(21,10,28,.16) 0%, rgba(21,10,28,.5) 50%, rgba(21,10,28,.9) 100%);
}
.promo-wide__body { position: relative; z-index: 2; padding: 1.3rem 1.4rem 1.35rem; }
.promo-wide__title { display: flex; align-items: center; gap: .5rem; font-size: 1.25rem; margin-bottom: .25rem; text-shadow: 0 2px 10px rgba(21,10,28,.8); }
.promo-wide__title .icon { color: var(--gold); filter: drop-shadow(0 0 7px rgba(255,179,71,.55)); }
.promo-wide__text { color: var(--text-muted); font-size: .93rem; max-width: 52ch; margin: 0 0 .9rem; text-shadow: 0 1px 8px rgba(21,10,28,.7); }
.promo-wide--live { background:
    radial-gradient(440px 240px at 84% -16%, rgba(255,122,89,.30), transparent 60%),
    linear-gradient(155deg, #43203a 0%, #241430 60%, #1f1029 100%); }
.promo-wide--rewards { background:
    radial-gradient(440px 240px at 84% -16%, rgba(255,179,71,.30), transparent 60%),
    radial-gradient(360px 220px at 8% 116%, rgba(199,125,255,.20), transparent 60%),
    linear-gradient(155deg, #38204f 0%, #241430 60%, #1f1029 100%); }

/* ---- Game tile hover: lift + amber glow ---- */
.tile:hover .tile__art, .tile:focus-visible .tile__art {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,.5), 0 0 0 1px rgba(255,179,71,.6), 0 0 26px rgba(255,179,71,.3);
}
.tile:hover .tile__name { color: var(--gold-2); }
.shelf__more:hover { color: var(--teal); text-shadow: 0 0 10px rgba(255,122,89,.45); }
.shelf__btn:hover { border-color: var(--teal); box-shadow: 0 0 14px rgba(255,122,89,.4); }

/* ---- Promotions page: subtle warm restyle ---- */
.page--promos .section__head .eyebrow { color: var(--teal); }
.page--promos .cat {
    border: 1px solid rgba(255,179,71,.18);
    background: linear-gradient(180deg, rgba(255,179,71,.07), transparent 46%), var(--surface);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.page--promos .cat::before { background: var(--grad-gold); }
.page--promos .cat:hover {
    transform: translateY(-4px); border-color: rgba(255,122,89,.42);
    box-shadow: 0 14px 30px rgba(0,0,0,.38), 0 0 18px rgba(255,179,71,.18);
}
.page--promos .legal__callout { border-left-color: var(--teal); }

/* ---- Reduced motion: no marquee twinkle (carousel autoplay is disabled in JS) ---- */
@media (prefers-reduced-motion: reduce) {
    .hero-banner::before, .promo-wide__img { animation: none !important; transition: none !important; }
}

/* ============================================================
   Asinodays v6 — "Carnival Midway" homepage restructure
   Asymmetric ticket-booth hero + arch window, zigzag ticket-stub
   feature strip (replaces the carousel), bunting shelf header,
   and a tilted show-poster duo at the end of the page.
   ============================================================ */

/* ---- Split hero: ticket-booth card (≈55%) + arch window (≈45%) ---- */
.booth-hero {
    display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.4vw, 1.6rem);
    align-items: stretch; margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.booth-hero__card {
    position: relative; overflow: hidden; isolation: isolate;
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(1.7rem, 3.6vw, 2.8rem) clamp(1.3rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.2rem);
    border-radius: 20px;
    border: 1px solid rgba(255,179,71,.30);
    border-top: 2px solid rgba(255,179,71,.55);
    box-shadow: 0 22px 56px rgba(0,0,0,.45), 0 0 30px rgba(255,179,71,.10);
    background:
        radial-gradient(560px 280px at 94% -22%, rgba(255,179,71,.20), transparent 62%),
        radial-gradient(440px 260px at -8% 112%, rgba(255,122,89,.15), transparent 60%),
        radial-gradient(380px 240px at 64% 122%, rgba(199,125,255,.10), transparent 60%),
        linear-gradient(168deg, #341d49 0%, #241430 55%, #1f1029 100%);
}
.booth-hero__card::before { /* amber marquee-bulb string across the booth top */
    content: ""; position: absolute; left: 12px; right: 12px; top: 9px; height: 8px; z-index: 3; pointer-events: none;
    background: radial-gradient(circle 3.2px at 6px 4px, #ffe9c4 0 1.6px, rgba(255,209,102,.9) 2.2px, rgba(255,179,71,.22) 2.8px, transparent 3.4px);
    background-size: 26px 8px; background-repeat: repeat-x;
    filter: drop-shadow(0 0 7px rgba(255,179,71,.85));
    animation: ad-bulbs 1.4s steps(1) infinite;
}
.booth-hero__title { max-width: 18ch; }
.booth-hero__chips { margin-top: 1.25rem; }
.booth-hero__arch {
    order: -1; /* arch stacks above the booth card on mobile */
    position: relative; overflow: hidden; isolation: isolate;
    min-height: clamp(230px, 52vw, 320px);
    border-radius: clamp(110px, 17vw, 200px) clamp(110px, 17vw, 200px) 18px 18px;
    border: 2px solid rgba(255,209,102,.62);
    box-shadow:
        0 20px 50px rgba(0,0,0,.5),
        0 0 36px rgba(255,179,71,.24),
        inset 0 0 0 1px rgba(21,10,28,.55);
    background: linear-gradient(195deg, #241430, #150a1c);
}
.booth-hero__arch::after { /* thin inner golden frame, mirror-style */
    content: ""; position: absolute; inset: 9px; z-index: 2; pointer-events: none;
    border: 1px solid rgba(255,209,102,.42);
    border-radius: clamp(100px, 16vw, 190px) clamp(100px, 16vw, 190px) 12px 12px;
}
.booth-hero__arch-img {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
}
.booth-hero__arch--fallback { /* plum → amber gradient when hero-main.jpg is absent */
    background:
        radial-gradient(420px 300px at 50% -4%, rgba(255,209,102,.38), transparent 64%),
        radial-gradient(360px 260px at 12% 112%, rgba(255,122,89,.30), transparent 60%),
        linear-gradient(180deg, #3d2452 0%, #241430 46%, #7a4413 130%);
}
@media (min-width: 861px) {
    .booth-hero { grid-template-columns: minmax(0, 11fr) minmax(0, 9fr); } /* ≈55 / 45 */
    .booth-hero__arch { order: 2; min-height: clamp(360px, 32vw, 460px); }
}

/* ---- Zigzag "Carnival Midway" feature strip (replaces the carousel) ---- */
.midway { display: flex; flex-direction: column; gap: clamp(1.5rem, 3.4vw, 2.6rem); margin-bottom: clamp(1.8rem, 3.4vw, 2.8rem); }
.midway-row {
    display: grid; grid-template-columns: 1fr; gap: clamp(1.1rem, 2.8vw, 2.4rem);
    align-items: center;
}
.midway-row__stub {
    position: relative; isolation: isolate; overflow: hidden;
    min-height: clamp(190px, 44vw, 250px); border-radius: 16px;
    border: 1px solid rgba(255,209,102,.42);
    box-shadow: 0 16px 40px rgba(0,0,0,.45), 0 0 22px rgba(255,179,71,.12);
    background-size: cover; background-position: center;
    transform: rotate(-1.4deg);
    transition: transform .25s ease, box-shadow .25s ease;
}
.midway-row--flip .midway-row__stub { transform: rotate(1.2deg); }
.midway-row:hover .midway-row__stub,
.midway-row:focus-within .midway-row__stub {
    transform: rotate(0);
    box-shadow: 0 20px 48px rgba(0,0,0,.5), 0 0 28px rgba(255,179,71,.22);
}
.midway-row__stub::before { /* inner perforation line, ticket-stub style */
    content: ""; position: absolute; top: 0; bottom: 0; left: 15px; right: 15px; z-index: 1; pointer-events: none;
    border-inline: 2px dashed rgba(255,233,196,.38);
}
.midway-row__stub::after { /* punched holes down both edges */
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background-image:
        radial-gradient(circle at 0 50%, #150a1c 0 5px, transparent 5.5px),
        radial-gradient(circle at 100% 50%, #150a1c 0 5px, transparent 5.5px);
    background-position: left top, right top;
    background-size: 12px 26px, 12px 26px;
    background-repeat: repeat-y, repeat-y;
}
.midway-row__ribbon { /* rotated corner ribbon label */
    position: absolute; top: 17px; left: -40px; z-index: 3; width: 158px;
    transform: rotate(-45deg); text-align: center; padding: .28rem 0;
    font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
    background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--gold-ink);
    box-shadow: 0 6px 16px rgba(0,0,0,.42);
}
.midway-row--flip .midway-row__ribbon { left: auto; right: -40px; transform: rotate(45deg); }
/* gradient fallbacks per booth (image absent) */
.midway-row__stub--slots { background-color: #241430; background-image:
    radial-gradient(540px 260px at 88% -20%, rgba(255,209,102,.30), transparent 62%),
    radial-gradient(420px 240px at 18% 120%, rgba(255,122,89,.20), transparent 60%),
    linear-gradient(150deg, #3d2452 0%, #241430 60%, #1f1029 100%); }
.midway-row__stub--live { background-color: #241430; background-image:
    radial-gradient(540px 260px at 86% -16%, rgba(255,122,89,.30), transparent 62%),
    radial-gradient(440px 240px at 12% 118%, rgba(255,179,71,.18), transparent 60%),
    linear-gradient(150deg, #43203a 0%, #241430 58%, #1f1029 100%); }
.midway-row__stub--rewards { background-color: #241430; background-image:
    radial-gradient(540px 260px at 88% -18%, rgba(199,125,255,.30), transparent 62%),
    radial-gradient(440px 240px at 14% 120%, rgba(255,179,71,.22), transparent 60%),
    linear-gradient(150deg, #38204f 0%, #241430 58%, #1f1029 100%); }
/* stubs with a real photo keep it on top of the fallback gradient */
.midway-row__stub[style] { background-size: cover; }
.midway-row__body { padding: .2rem .3rem; }
.midway-row__kicker {
    margin: 0 0 .4rem; font-size: .74rem; font-weight: 800;
    letter-spacing: .16em; text-transform: uppercase; color: var(--teal);
    text-shadow: 0 0 12px rgba(255,122,89,.3);
}
.midway-row__title { font-size: clamp(1.35rem, 2.8vw, 1.85rem); margin-bottom: .4rem; }
.midway-row__text { color: var(--text-muted); max-width: 52ch; margin: 0 0 1.05rem; }
@media (min-width: 761px) {
    .midway-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .midway-row--flip .midway-row__stub { order: 2; }
    .midway-row--flip .midway-row__body { order: 1; text-align: right; }
    .midway-row--flip .midway-row__text { margin-left: auto; }
}

/* ---- Festive shelf header: bunting garland + bulb string ---- */
.midway-head { position: relative; text-align: center; margin: clamp(2rem, 4vw, 3rem) auto 1.7rem; max-width: 760px; padding-top: 34px; }
.midway-head::before { /* pennant bunting strung across the top */
    content: ""; position: absolute; left: 6%; right: 6%; top: 0; height: 18px; pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,233,196,.55) 0 2px, transparent 2px),
        conic-gradient(from 330deg at 50% 100%, var(--gold) 0 60deg, transparent 0) 0 2px / 48px 16px repeat-x,
        conic-gradient(from 330deg at 50% 100%, var(--teal) 0 60deg, transparent 0) 16px 2px / 48px 16px repeat-x,
        conic-gradient(from 330deg at 50% 100%, var(--violet) 0 60deg, transparent 0) 32px 2px / 48px 16px repeat-x;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}
.midway-head__eyebrow { margin-bottom: .35rem; }
.midway-head__title { font-size: clamp(1.5rem, 3.2vw, 2rem); margin-bottom: .35rem; }
.midway-head__sub { color: var(--text-muted); max-width: 56ch; margin: 0 auto; }
.midway-head__lights { /* short bulb string under the subheading */
    width: min(320px, 64%); height: 8px; margin: 1rem auto 0;
    background: radial-gradient(circle 3.2px at 6px 4px, #ffe9c4 0 1.6px, rgba(255,209,102,.9) 2.2px, rgba(255,179,71,.22) 2.8px, transparent 3.4px);
    background-size: 26px 8px; background-repeat: repeat-x; background-position: center;
    filter: drop-shadow(0 0 7px rgba(255,179,71,.85));
    animation: ad-bulbs 1.4s steps(1) infinite;
}

/* ---- End-of-page "carnival duo": tilted vintage show posters ---- */
.carnival-duo {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.2rem);
    margin: clamp(2.2rem, 4vw, 3rem) 0 1.4rem; padding-inline: .5rem;
}
@media (max-width: 760px) { .carnival-duo { grid-template-columns: 1fr; } }
.duo-poster {
    border: 2px solid rgba(255,209,102,.6); border-radius: 14px; min-height: 230px;
    box-shadow: 0 18px 44px rgba(0,0,0,.45), 0 0 24px rgba(255,179,71,.14);
    transform: rotate(-1.3deg);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.duo-poster--tilt-right { transform: rotate(1.3deg); }
.duo-poster:hover, .duo-poster:focus-within {
    transform: rotate(0) translateY(-4px);
    border-color: rgba(255,209,102,.85);
    box-shadow: 0 24px 52px rgba(0,0,0,.55), 0 0 32px rgba(255,179,71,.3);
}
.duo-poster__frame { /* inner golden frame for the vintage poster look */
    position: absolute; inset: 9px; z-index: 2; pointer-events: none;
    border: 1px solid rgba(255,209,102,.45); border-radius: 8px;
}

/* ---- Reduced motion: no bulbs, no tilt/straighten transforms ---- */
@media (prefers-reduced-motion: reduce) {
    .booth-hero__card::before, .midway-head__lights { animation: none !important; }
    .midway-row__stub, .midway-row--flip .midway-row__stub,
    .midway-row:hover .midway-row__stub, .midway-row:focus-within .midway-row__stub,
    .duo-poster, .duo-poster--tilt-right,
    .duo-poster:hover, .duo-poster:focus-within { transform: none !important; transition: none !important; }
}
