:root {
    --bg:          #070908;
    --bg-2:        #0d1210;
    --surface:     #141b18;
    --surface-2:   #1b2520;
    --border:      #2a3630;
    --text:        #f2f7ee;
    --text-muted:  #b4beb3;
    --text-dim:    #7f8a82;
    --gold:        #caff5f;
    --gold-2:      #f4ffb8;
    --gold-ink:    #182200;
    --lime:        #caff5f;
    --teal:        #55e6c3;
    --rose:        #ff6f91;
    --violet:      #8f7cff;
    --danger:      #ff6b6b;
    --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(10,11,18,.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(230,180,80,.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(230,180,80,.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; }
.legal__table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: .85rem; }
.legal__table th, .legal__table td { border: 1px solid var(--border); padding: .5rem .6rem; text-align: left; vertical-align: top; }
.legal__table th { background: var(--surface); color: var(--text); font-weight: 700; }
.legal__table td { color: var(--text-dim); }
@media (max-width: 640px) { .legal__table, .legal__table thead, .legal__table tbody, .legal__table tr, .legal__table th, .legal__table td { display: block; } .legal__table thead { display: none; } .legal__table tr { margin-bottom: .75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .25rem; } .legal__table td { border: none; } }
@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(230,180,80,.4); background: rgba(230,180,80,.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(230,180,80,.12), var(--surface)); border: 1px solid rgba(230,180,80,.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(5,6,10,.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; flex-wrap: wrap; }
.cookie-banner__custom { flex: 1 1 100%; display: flex; flex-direction: column; gap: .5rem; margin: .2rem 0; padding-top: .6rem; border-top: 1px solid var(--border); }
.cookie-banner__custom .check { font-size: .88rem; color: var(--text-muted); }
.footer-link-btn { background: none; border: 0; padding: 0; cursor: pointer; color: var(--text-muted); font: inherit; font-size: .92rem; }
.footer-link-btn:hover { color: var(--gold-2); }

/* ---------- Ollywood Casino premium skin ---------- */
body {
    background:
        linear-gradient(90deg, rgba(202,255,95,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(85,230,195,.035) 1px, transparent 1px),
        radial-gradient(900px 520px at 76% 0%, rgba(202,255,95,.18), transparent 58%),
        linear-gradient(180deg, #050706 0%, var(--bg) 42%, #0a0d0b 100%);
    background-size: 44px 44px, 44px 44px, auto, auto;
}

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

.site-header {
    background: rgba(6, 9, 7, .78);
    border-bottom-color: rgba(202,255,95,.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(202,255,95,.36)); }
.brand__name { letter-spacing: .08em; }
.brand__name b { color: var(--lime); text-shadow: 0 0 18px rgba(202,255,95,.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(202,255,95,.08);
    border-color: rgba(202,255,95,.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: #07100c;
    border-color: rgba(255,255,255,.32);
}
.btn--ghost {
    background: rgba(255,255,255,.035);
    border-color: rgba(202,255,95,.24);
}
.btn--ghost:hover {
    background: rgba(202,255,95,.08);
    border-color: var(--lime);
}

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

.hero {
    position: relative;
    overflow: hidden;
    border-bottom-color: rgba(202,255,95,.16);
    background:
        linear-gradient(115deg, rgba(202,255,95,.14), transparent 34%),
        linear-gradient(180deg, rgba(11,17,13,.2), rgba(6,8,7,.72)),
        #070908;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -18% 44% auto auto;
    width: 48vw;
    height: 82vh;
    background: conic-gradient(from 200deg, transparent 0 22%, rgba(202,255,95,.22) 28%, rgba(85,230,195,.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(7,9,8,.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(202,255,95,.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(202,255,95,.16);
    border-radius: 999px;
}
.hero__stats strong { color: #fff; }

.hero-stage {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(202,255,95,.2);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(85,230,195,.12), transparent 36%),
        linear-gradient(150deg, rgba(202,255,95,.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(202,255,95,.34);
    border-radius: 50%;
    transform: perspective(700px) rotateX(64deg);
    background:
        repeating-radial-gradient(ellipse at center, rgba(202,255,95,.1) 0 2px, transparent 2px 18px),
        rgba(5,30,19,.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(10,14,12,.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(202,255,95,.22), rgba(85,230,195,.1)),
        rgba(10,14,12,.78);
}
.stage-card--slot {
    right: 8%;
    top: 31%;
    width: 190px;
    height: 136px;
    border-color: rgba(143,124,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: #07100c;
    font-weight: 900;
    border: 8px dashed rgba(7,16,12,.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, #ffdf70, 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(85,230,195,.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), #ffdf70); }
.feature__ic {
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(202,255,95,.16), rgba(85,230,195,.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(202,255,95,.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(202,255,95,.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(11,12,16,.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__igo { display: inline-flex; align-items: center; height: 30px; padding: .25rem .45rem; background: #fff; border-radius: var(--radius-sm); }
.topbar__igo-logo { display: block; height: 100%; width: auto; }
.topbar__spacer { flex: 1 1 auto; }
@media (max-width: 560px) { .topbar__igo { display: none; } }
.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(202,255,95,.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--popular { background: rgba(0,0,0,.62); 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(202,255,95,.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(202,255,95,.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(202,255,95,.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; }
