/* The hidden attribute only works through the UA rule [hidden]{display:none}, which loses to any
   class selector that sets display. .button is inline-flex and .balance-pill is grid, so marking
   them hidden from JS set the attribute but changed nothing on screen: a signed-in visitor saw
   Login, Join AND Account at once. Make the attribute authoritative. */
[hidden] { display: none !important; }

:root {
  --ink: #171821;
  --ink-2: #242331;
  --plum: #3b243d;
  --plum-soft: #72506b;
  --coral: #ff6b4a;
  --coral-deep: #dc4934;
  --cobalt: #5066ff;
  --green: #8fd150;
  --gold: #e8b879;
  --cream: #fff7e8;
  --paper: #f6efe5;
  --muted: #726c75;
  --line: rgba(23,24,33,.14);
  --shadow: 0 24px 60px rgba(23,24,33,.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); font-size: 15px; line-height: 1.55; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; background: radial-gradient(circle at 90% 10%, rgba(255,107,74,.1), transparent 28%), radial-gradient(circle at 8% 70%, rgba(80,102,255,.07), transparent 30%); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .56; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.site-header { background: var(--ink); color: var(--cream); position: sticky; top: 0; z-index: 30; box-shadow: 0 8px 28px rgba(23,24,33,.2); }
.header-inner { max-width: 1380px; min-height: 76px; margin: 0 auto; padding: 10px 34px; display: flex; align-items: center; gap: 32px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; min-width: 210px; }
.brand-lockup img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 7px 10px rgba(255,107,74,.2)); }
.brand-lockup span { display: grid; line-height: .9; letter-spacing: .14em; font-size: 13px; }
.brand-lockup b { font-weight: 900; }
.brand-lockup em { font-style: normal; color: var(--coral); font-size: 11px; letter-spacing: .34em; margin-top: 4px; }
.main-nav { display: flex; gap: 24px; margin-right: auto; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.main-nav a, .mobile-nav a { opacity: .72; transition: opacity .2s ease, color .2s ease; }
.main-nav a:hover, .mobile-nav a:hover { opacity: 1; color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.balance-pill { border: 1px solid rgba(255,247,232,.25); min-width: 112px; border-radius: 999px; padding: 6px 12px; display: grid; line-height: 1; text-align: right; background: rgba(255,255,255,.07); }
.balance-pill span { color: var(--gold); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.balance-pill strong { font-size: 14px; margin-top: 4px; }
.button { border: 0; border-radius: 999px; display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 14px 22px; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(23,24,33,.16); }
.button-small { padding: 10px 15px; font-size: 10px; }
.button-coral { color: #fff; background: var(--coral); }
.button-coral:hover { background: var(--coral-deep); }
.button-ghost { color: var(--cream); background: transparent; border: 1px solid rgba(255,247,232,.3); }
.button-light { color: var(--ink); background: var(--cream); }
.button-ink { color: var(--cream); background: var(--ink); }
.button-google { width: 100%; color: var(--ink); background: #fff; border: 1px solid var(--line); }
.menu-toggle { display: none; color: var(--cream); border: 1px solid rgba(255,247,232,.3); border-radius: 99px; background: transparent; padding: 9px 12px; font-size: 11px; }
.mobile-nav { max-width: 1380px; margin: 0 auto; padding: 0 34px 14px; display: flex; gap: 20px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.hero-scene { min-height: 640px; max-width: 1540px; margin: 0 auto; position: relative; overflow: hidden; background: var(--ink); color: var(--cream); isolation: isolate; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -3; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(23,24,33,.98) 0%, rgba(23,24,33,.92) 27%, rgba(23,24,33,.28) 60%, rgba(23,24,33,.08) 100%); }
.hero-copy { max-width: 560px; padding: 132px 7%; position: relative; z-index: 2; }
.hero-copy h1 { margin: 10px 0 18px; font-size: clamp(45px, 6vw, 82px); line-height: .96; letter-spacing: -.055em; max-width: 620px; }
.hero-copy h1 em { color: var(--coral); font-style: normal; }
.hero-copy > p:not(.eyebrow):not(.hero-boundary) { color: rgba(255,247,232,.76); max-width: 430px; font-size: 17px; }
.eyebrow { margin: 0 0 8px; color: var(--coral-deep); font-size: 10px; font-weight: 900; letter-spacing: .22em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-light { color: var(--gold); }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero-boundary { margin-top: 28px; color: rgba(255,247,232,.65); font-size: 11px; }
.hero-boundary strong { color: var(--green); }
.hero-chip-trail { position: absolute; right: 12%; bottom: 26%; width: 30px; height: 30px; z-index: 3; }
.hero-chip-trail i { position: absolute; display: block; width: 20px; height: 20px; border: 4px solid var(--coral); border-radius: 50%; box-shadow: 0 0 0 3px var(--gold), 0 0 20px rgba(255,107,74,.72); animation: chip-hop 4.4s ease-in-out infinite; }
.hero-chip-trail i:nth-child(1) { left: 0; top: 110px; animation-delay: -.4s; }
.hero-chip-trail i:nth-child(2) { left: 64px; top: 70px; animation-delay: -.9s; transform: scale(.8); }
.hero-chip-trail i:nth-child(3) { left: 120px; top: 32px; animation-delay: -1.3s; transform: scale(.62); }
.hero-chip-trail i:nth-child(4) { left: 162px; top: 0; animation-delay: -1.9s; transform: scale(.44); }
@keyframes chip-hop { 50% { transform: translateY(-15px) rotate(22deg); } }
.steps-strip { max-width: 1180px; margin: -1px auto 0; padding: 24px 28px; display: grid; grid-template-columns: 1fr 30px 1fr 30px 1fr; gap: 20px; align-items: center; background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; z-index: 4; }
.steps-strip > div:not(.step-divider) { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.steps-strip span { grid-row: span 2; color: var(--coral); font-size: 24px; font-weight: 900; }
.steps-strip b { font-size: 13px; text-transform: uppercase; letter-spacing: .11em; }
.steps-strip small { color: var(--muted); font-size: 12px; }
.step-divider { height: 40px; border-left: 1px solid var(--line); transform: skew(-18deg); }
.cue-module { max-width: 1180px; margin: 86px auto 100px; padding: 0 28px; display: grid; grid-template-columns: 1fr 430px; gap: 50px; align-items: center; }
.cue-copy h2, .section-heading h2, .boundary-band h2, .final-cta h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 54px); letter-spacing: -.05em; line-height: 1.02; }
.cue-copy > p:not(.eyebrow):not(.cue-result) { color: var(--muted); max-width: 500px; }
.cue-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 12px; }
.cue-buttons button, .preference-grid button, .care-actions button { background: transparent; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.cue-buttons button.active, .preference-grid button.active { color: var(--cream); background: var(--plum); border-color: var(--plum); }
.cue-result { color: var(--plum-soft); font-size: 12px; min-height: 20px; }
.cue-visual { height: 410px; position: relative; display: grid; place-items: center; background: radial-gradient(circle, rgba(255,107,74,.18), transparent 58%); }
.cue-visual img { height: 420px; max-width: 95%; object-fit: contain; filter: drop-shadow(0 22px 17px rgba(23,24,33,.26)); position: relative; z-index: 2; }
.cue-orbit { position: absolute; border: 1px solid rgba(80,102,255,.32); border-radius: 50%; transform: rotate(-22deg); }
.orbit-one { width: 350px; height: 120px; }
.orbit-two { width: 300px; height: 260px; border-color: rgba(255,107,74,.34); transform: rotate(28deg); }
.catalogue-preview { max-width: 1180px; margin: 0 auto 100px; padding: 0 28px; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 28px; }
.text-link { display: inline-block; color: var(--plum); font-size: 12px; font-weight: 900; letter-spacing: .07em; }
.text-link:hover { color: var(--coral-deep); }
.game-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.game-card { min-width: 0; overflow: hidden; background: rgba(255,247,232,.92); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(23,24,33,.07); transition: transform .22s ease, box-shadow .22s ease; }
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.game-cover-link { aspect-ratio: 1.52; display: block; position: relative; overflow: hidden; background: var(--plum); }
.game-cover-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.game-card:hover .game-cover-link img { transform: scale(1.04); }
.cover-stamp { position: absolute; left: 12px; bottom: 10px; background: var(--cream); color: var(--ink); padding: 4px 7px; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.game-card-body { padding: 15px 16px 17px; }
.game-card-body h3 { margin: 5px 0 5px; font-size: 20px; line-height: 1.04; letter-spacing: -.04em; }
.game-card-body p:not(.game-kicker) { margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.game-kicker { margin: 0; color: var(--coral-deep); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.game-card .text-link { font-size: 10px; }
.boundary-band { max-width: 1180px; margin: 0 auto 100px; padding: 36px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; background: var(--cobalt); color: #fff; position: relative; overflow: hidden; }
.boundary-band::after { content: ""; width: 300px; height: 300px; border-radius: 50%; border: 35px solid rgba(255,255,255,.08); position: absolute; right: -110px; top: -120px; }
.boundary-band .eyebrow { color: var(--gold); }
.boundary-band h2 { font-size: 34px; margin: 0; }
.boundary-band > p { color: rgba(255,255,255,.8); font-size: 13px; }
.final-cta { max-width: 1180px; margin: 0 auto 100px; display: flex; align-items: center; gap: 25px; padding: 30px; background: var(--cream); border: 1px solid var(--line); }
.final-cta img { width: 74px; height: 74px; object-fit: contain; }
.final-cta h2 { font-size: 33px; margin-bottom: 6px; }
.final-cta p { margin: 0; color: var(--muted); font-size: 13px; }
.final-cta .button { margin-left: auto; white-space: nowrap; }
.page-shell { max-width: 1180px; padding: 76px 28px 110px; margin: 0 auto; }
.page-intro { max-width: 760px; margin-bottom: 42px; }
.page-intro h1 { margin: 0 0 12px; font-size: clamp(40px, 6vw, 74px); line-height: .95; letter-spacing: -.065em; }
.page-intro > p:not(.eyebrow) { color: var(--muted); font-size: 17px; max-width: 660px; }
.catalogue-tools { margin-bottom: 28px; padding: 18px; background: var(--cream); border: 1px solid var(--line); display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.search-field { display: grid; gap: 6px; width: 300px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 7px; padding: 12px 13px; background: rgba(255,255,255,.7); color: var(--ink); }
textarea { min-height: 140px; resize: vertical; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: end; gap: 7px; }
.filter-row button { border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 8px 11px; color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.filter-row button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.notice { max-width: 720px; padding: 14px 16px; border-left: 3px solid var(--coral); background: rgba(255,107,74,.09); color: var(--muted); font-size: 12px; }
.game-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 50px; align-items: center; }
.detail-art-wrap { position: relative; background: var(--plum); box-shadow: var(--shadow); }
.detail-cover { display: block; width: 100%; aspect-ratio: 1.1; object-fit: cover; }
.detail-ribbon { position: absolute; top: 18px; left: 18px; padding: 7px 10px; background: var(--coral); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.detail-copy h2 { margin: 0 0 15px; font-size: clamp(32px, 5vw, 60px); line-height: .98; letter-spacing: -.06em; }
.detail-copy p { color: var(--muted); }
.detail-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0; }
.detail-facts span { padding: 7px 9px; border: 1px solid var(--line); color: var(--plum); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.detail-copy h3 { font-size: 19px; margin-bottom: 4px; }
.loading-card, .loading-stage { padding: 40px; border: 1px dashed var(--line); color: var(--muted); text-align: center; grid-column: 1 / -1; }
.empty-stage { padding: 48px 22px; border: 1px dashed var(--line); color: var(--muted); text-align: center; }
.panel { background: rgba(255,247,232,.85); border: 1px solid var(--line); padding: 25px; box-shadow: 0 10px 30px rgba(23,24,33,.06); }
.panel h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.04em; }
.panel h3 { margin: 22px 0 4px; font-size: 16px; }
.reading { color: var(--ink); }
.reading p { color: var(--muted); }
.legal-copy { max-width: 900px; }
.legal-copy h2 { margin-top: 28px; font-size: 21px; }
.legal-copy h2:first-child { margin-top: 0; }
.two-column, .auth-layout, .care-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 25px; align-items: start; }
.form-card { display: grid; gap: 14px; }
.form-card label:not(.check-row) { display: grid; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-row { display: flex; gap: 10px; align-items: start; color: var(--muted); font-size: 12px; line-height: 1.35; }
.check-row input { width: 18px; height: 18px; flex: 0 0 auto; margin: 0; accent-color: var(--coral); }
.check-row.disabled { opacity: .55; }
.form-status { min-height: 20px; margin: 0; color: var(--muted); font-size: 12px; }
.form-status[data-kind="error"] { color: var(--coral-deep); }
.form-status[data-kind="success"] { color: #3d7d34; }
.form-links { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.oauth-slot { border-top: 1px solid var(--line); padding-top: 15px; }
.oauth-disabled { margin: 0; color: var(--muted); font-size: 11px; }
.auth-art { min-height: 420px; padding: 24px; background: var(--ink); color: var(--cream); position: relative; overflow: hidden; display: flex; align-items: end; }
.auth-art::before { content: ""; position: absolute; width: 380px; height: 380px; border: 38px solid rgba(255,107,74,.12); border-radius: 50%; top: -160px; right: -120px; }
.auth-art img { position: absolute; right: 0; top: 4%; height: 93%; max-width: 72%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 22px 15px rgba(0,0,0,.35)); }
.auth-art > div { position: relative; max-width: 280px; z-index: 2; }
.auth-art h2 { color: var(--cream); }
.auth-art p:not(.eyebrow) { color: rgba(255,247,232,.7); font-size: 13px; }
.auth-art-register img { height: 53%; top: 2%; right: 8%; }
.auth-gate { display: flex; align-items: center; gap: 20px; max-width: 720px; }
.auth-gate img { width: 120px; height: 120px; object-fit: contain; }
.account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.account-identity { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; }
.account-avatar { width: 76px; height: 76px; object-fit: contain; }
.account-identity h2 { margin: 0; }
.account-identity p:not(.eyebrow) { color: var(--muted); margin: 4px 0 0; }
.account-balance { margin-left: auto; padding-left: 20px; border-left: 1px solid var(--line); display: grid; text-align: right; }
.account-balance small { color: var(--coral-deep); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.account-balance strong { font-size: 30px; line-height: 1; }
.account-balance span { color: var(--muted); font-size: 10px; margin-top: 4px; }
.preference-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.activity-panel { grid-row: span 2; }
.activity-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.activity-row:last-child { border-bottom: 0; }
.activity-row b { display: block; text-transform: capitalize; font-size: 12px; }
.activity-row small { color: var(--muted); font-size: 10px; }
.activity-row strong { font-size: 16px; }
.activity-row strong.positive { color: #398638; }
.care-actions { display: grid; gap: 8px; }
.care-actions button { text-align: left; border-radius: 7px; }
.care-actions button:hover { background: var(--plum); color: var(--cream); }
.play-page { max-width: 1250px; margin: 0 auto; padding: 58px 28px 100px; }
.play-top { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 25px; }
.play-top h1 { margin: 0; font-size: clamp(38px, 6vw, 68px); line-height: .95; letter-spacing: -.06em; }
.play-top p:not(.eyebrow) { color: var(--muted); }
.play-balance { text-align: right; display: grid; }
.play-balance small { color: var(--coral-deep); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.play-balance strong { font-size: 34px; }
.cabinet-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 20px; align-items: start; }
.cabinet-frame { padding: 24px; background: var(--ink); border: 8px solid var(--plum); box-shadow: var(--shadow); }
.cabinet-lights { height: 12px; margin: -4px 0 16px; background: repeating-linear-gradient(90deg, var(--coral) 0 10px, var(--gold) 10px 20px, var(--cobalt) 20px 30px); }
.reel-window { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(3, minmax(74px, 1fr)); gap: 7px; padding: 11px; background: #0e1018; border: 3px solid var(--gold); min-height: 320px; }
.reel-cell { display: grid; place-items: center; background: radial-gradient(circle at 50% 38%, rgba(255,107,74,.27), rgba(54,31,58,.95)); border: 1px solid rgba(232,184,121,.55); overflow: hidden; }
.reel-cell img { width: 84%; height: 84%; object-fit: contain; }
.reel-cell strong { color: var(--gold); }
.grid-empty { grid-column: 1 / -1; grid-row: 1 / -1; display: grid; place-items: center; color: rgba(255,247,232,.55); }
.cabinet-controls { display: grid; grid-template-columns: 190px 1fr; gap: 12px; align-items: end; margin-top: 18px; }
.cabinet-controls label { display: grid; gap: 6px; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.cabinet-controls select { background: #262331; color: var(--cream); border-color: rgba(255,247,232,.28); }
.spin-button { min-height: 50px; font-size: 15px; }
.cabinet-controls .form-status { grid-column: 1 / -1; color: rgba(255,247,232,.7); }
.play-notes { background: var(--cream); }
.panel-mark { width: 68px; height: 68px; object-fit: contain; float: right; margin: -10px -10px 0 10px; }
.site-footer { max-width: 1540px; margin: 0 auto; padding: 0 28px 28px; color: var(--muted); }
.footer-rule { border-top: 1px solid var(--line); }
.footer-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 26px 0; }
.trust-block { display: grid; grid-template-columns: 46px 1fr; column-gap: 11px; align-items: center; }
.trust-icon { grid-row: span 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--cream); background: var(--plum); font-size: 13px; font-weight: 900; }
.trust-block b { color: var(--ink); font-size: 11px; letter-spacing: .13em; }
.trust-block small { font-size: 11px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 28px; padding: 32px 0; }
.footer-lead { display: flex; gap: 13px; align-items: start; }
.footer-lead img { width: 60px; height: 60px; object-fit: contain; }
.footer-lead strong { color: var(--ink); font-size: 16px; }
.footer-lead p { max-width: 240px; margin: 6px 0 0; font-size: 12px; }
.footer-label { margin: 0 0 9px; color: var(--coral-deep); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 7px 0; font-size: 12px; }
.footer-grid a:hover, .footer-bottom a:hover { color: var(--coral-deep); }
.footer-boundary { max-width: 980px; margin: 0 auto; padding: 20px 0; text-align: center; font-size: 11px; line-height: 1.55; }
.footer-boundary strong { color: var(--coral-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 11px; }
.noscript-panel { max-width: 750px; margin: 60px auto; padding: 32px; background: var(--cream); border: 1px solid var(--line); }
.cookie-banner { position: fixed; z-index: 50; left: 20px; right: 20px; bottom: 20px; max-width: 980px; margin: auto; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--cream); background: var(--ink); border: 1px solid rgba(255,247,232,.2); box-shadow: 0 18px 45px rgba(23,24,33,.28); }
.cookie-banner strong { color: var(--gold); font-size: 13px; }
.cookie-banner p { margin: 3px 0 0; color: rgba(255,247,232,.7); font-size: 11px; }
.cookie-actions { display: flex; align-items: center; justify-content: end; gap: 8px; flex-wrap: wrap; }
.cookie-actions a { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ssr-home-fallback { max-width: 1180px; min-height: 390px; margin: 0 auto; padding: 90px 28px; background: linear-gradient(110deg, var(--ink), var(--plum)); color: var(--cream); }
.ssr-home-fallback h1 { max-width: 580px; margin: 0 0 15px; font-size: clamp(42px, 6vw, 70px); line-height: .95; letter-spacing: -.06em; }
.ssr-home-fallback h1 em { color: var(--coral); font-style: normal; }
.ssr-home-fallback p:not(.eyebrow) { max-width: 500px; color: rgba(255,247,232,.76); }
@media (max-width: 920px) {
  .header-inner { padding: 8px 18px; gap: 12px; }
  .brand-lockup { min-width: 0; margin-right: auto; }
  .main-nav { display: none; }
  .header-actions .balance-pill, .header-actions .button-ghost { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { padding: 0 18px 14px; }
  .hero-scene { min-height: 670px; }
  .hero-art { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(23,24,33,.85) 0%, rgba(23,24,33,.4) 42%, rgba(23,24,33,.96) 100%); }
  .hero-copy { padding: 56px 24px 40px; max-width: 520px; }
  .hero-copy h1 { font-size: clamp(42px, 12vw, 65px); }
  .hero-chip-trail { right: 10%; bottom: 19%; }
  .steps-strip { margin: 0 18px; grid-template-columns: 1fr; gap: 15px; padding: 21px; }
  .step-divider { width: 48px; height: 1px; border-top: 1px solid var(--line); border-left: 0; transform: none; }
  .cue-module { grid-template-columns: 1fr; margin: 70px auto 80px; }
  .cue-visual { order: -1; height: 300px; }
  .cue-visual img { height: 320px; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .boundary-band { grid-template-columns: 1fr; margin: 0 18px 75px; }
  .boundary-band .button { justify-self: start; }
  .final-cta { margin: 0 18px 75px; flex-wrap: wrap; }
  .final-cta .button { margin-left: 0; }
  .catalogue-preview { padding: 0 18px; }
  .page-shell { padding: 56px 18px 80px; }
  .catalogue-tools { align-items: stretch; flex-direction: column; }
  .search-field { width: auto; }
  .filter-row { justify-content: start; }
  .game-detail, .two-column, .auth-layout, .care-grid, .cabinet-layout { grid-template-columns: 1fr; }
  .auth-art { min-height: 370px; }
  .account-grid { grid-template-columns: 1fr; }
  .activity-panel { grid-row: auto; }
  .play-top { align-items: start; flex-direction: column; }
  .play-balance { text-align: left; }
  .site-footer { padding: 0 18px 18px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-lead { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .brand-lockup img { width: 44px; height: 44px; }
  .brand-lockup span { font-size: 11px; }
  .header-actions .button { padding: 9px 11px; font-size: 9px; }
  .hero-copy { padding: 46px 18px 32px; }
  .hero-copy > p:not(.eyebrow):not(.hero-boundary) { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-scene { min-height: 710px; }
  .hero-art { object-position: 68% center; }
  .game-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .auth-art { min-height: 420px; }
  .auth-art img { max-width: 80%; height: 88%; right: -3%; }
  .auth-art-register img { height: 46%; right: 6%; }
  .account-identity { align-items: start; flex-wrap: wrap; }
  .account-balance { width: 100%; margin-left: 0; padding: 15px 0 0; border-left: 0; border-top: 1px solid var(--line); text-align: left; }
  .reel-window { min-height: 250px; padding: 7px; gap: 4px; }
  .cabinet-controls { grid-template-columns: 1fr; }
  .footer-trust { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Security/readiness accessibility and Player Care surfaces. */
.skip-link { position: fixed; z-index: 200; left: 14px; top: 10px; padding: 10px 14px; color: #05272b; background: #fed676; border-radius: 6px; font-weight: 850; transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }
.ssr-page-fallback { width: min(1180px, calc(100% - 56px)); min-height: 320px; margin: 0 auto; padding: 92px 0; }
.ssr-page-fallback h1 { max-width: 800px; color: var(--gold); font-size: clamp(36px, 5vw, 64px); line-height: 1; }
.ssr-page-fallback > p { max-width: 720px; color: var(--muted); }
.seo-container h2 { margin: 0; color: #fed676; font-size: clamp(16px, 1.65vw, 31px); font-weight: 700; line-height: 30px; }
.hero-dots .hero-motion-toggle { width: auto; min-width: 50px; height: 24px; margin: -8px 0 0 5px; padding: 0 9px; border-radius: 999px; color: #fed676; background: rgba(4, 29, 33, .74); font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.hero-dots .hero-motion-toggle[aria-pressed="true"] { color: #05272b; background: #fed676; }
.care-actions button.active, .care-actions button[aria-pressed="true"] { color: #05272b; border-color: #fed676; background: #fed676; }
.form-card hr { width: 100%; margin: 24px 0; border: 0; border-top: 1px solid var(--line); }
.session-reminder-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(1, 10, 12, .78); backdrop-filter: blur(8px); }
.session-reminder { position: relative; width: min(760px, 100%); min-height: 310px; padding: 42px 42px 42px 250px; display: flex; align-items: center; overflow: hidden; color: var(--cream); border: 1px solid rgba(254,214,118,.34); border-radius: 14px; background: radial-gradient(circle at 18% 42%, rgba(54,225,185,.25), transparent 35%), linear-gradient(135deg, #073236, #041d21); box-shadow: 0 30px 90px rgba(0,0,0,.56); }
.session-reminder > img { position: absolute; left: 8px; bottom: -70px; width: 230px; height: 360px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 20px 18px rgba(0,0,0,.42)); }
.session-reminder > div { position: relative; z-index: 2; }
.session-reminder h2 { margin: 3px 0 12px; color: #fed676; font-size: clamp(30px, 4vw, 48px); line-height: 1; }
.session-reminder p:not(.eyebrow) { color: #b9d8d1; line-height: 1.65; }
.reminder-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 743px) {
  .ssr-page-fallback { width: calc(100% - 32px); padding: 64px 0; }
  .seo-container h2 { flex-basis: 100%; font-size: 16px; line-height: 22px; }
  .hero-dots .hero-motion-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .session-reminder { min-height: 540px; padding: 270px 22px 26px; align-items: flex-end; }
  .session-reminder > img { left: 50%; top: -25px; bottom: auto; width: 230px; height: 315px; transform: translateX(-50%); }
  .reminder-actions { display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Reference-led lobby shell: compact dark header, gold actions and dense game rails. */
:root {
  --ink: #071d21;
  --ink-2: #0d2b2e;
  --plum: #0e5550;
  --plum-soft: #286f68;
  --coral: #18ae62;
  --coral-deep: #0d9250;
  --cobalt: #075b59;
  --green: #6ee7b7;
  --gold: #fed676;
  --cream: #f4fbf2;
  --paper: #061e22;
  --muted: #9eb4ae;
  --line: rgba(212, 239, 224, .14);
  --shadow: 0 22px 55px rgba(0, 0, 0, .25);
}
body { background: var(--paper); color: var(--cream); font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
body::before { background: radial-gradient(circle at 90% 4%, rgba(24,174,98,.18), transparent 28%), radial-gradient(circle at 8% 52%, rgba(254,214,118,.08), transparent 32%); }
.site-header { background: rgba(6,30,34,.98); border-bottom: 1px solid rgba(254,214,118,.14); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.header-inner { max-width: 1440px; min-height: 72px; padding: 8px 32px; gap: 22px; }
.brand-lockup { min-width: 206px; gap: 9px; }
.brand-lockup img { width: 50px; height: 50px; filter: drop-shadow(0 5px 12px rgba(24,174,98,.28)); }
.brand-lockup span { color: #fff; font-size: 12px; }
.brand-lockup em { color: var(--gold); }
.main-nav { display: none; gap: 22px; text-transform: none; letter-spacing: .01em; font-size: 13px; font-weight: 600; }
.main-nav a, .mobile-nav a { color: rgba(244,251,242,.78); opacity: 1; }
.main-nav a:hover, .mobile-nav a:hover { color: var(--gold); }
.header-actions { margin-left: auto; gap: 9px; }
.button { border-radius: 6px; letter-spacing: .03em; }
.button-small { padding: 10px 18px; font-size: 12px; }
.button-coral { color: var(--ink); background: var(--coral); }
.button-coral:hover { background: #1ccc73; }
.button-ghost { color: var(--cream); border-color: rgba(244,251,242,.38); }
.button-light { color: var(--ink); background: var(--gold); }
.balance-pill { border-color: rgba(254,214,118,.3); background: rgba(255,255,255,.05); }
.balance-pill span { color: var(--gold); }
.gamification-nav { display: flex; gap: 12px; margin-left: 5px; }
.gamification-item { display: grid; justify-items: center; gap: 1px; color: rgba(244,251,242,.72); font-size: 9px; line-height: 1.1; }
.gamification-item:hover { color: var(--gold); }
.gamification-icon { display: grid; place-items: center; width: 23px; height: 23px; color: var(--gold); border: 1px solid rgba(254,214,118,.5); border-radius: 50%; font-size: 12px; }
.language-switcher { display: inline-flex; align-items: center; gap: 7px; padding-left: 12px; border-left: 1px solid var(--line); color: rgba(244,251,242,.75); font-size: 11px; white-space: nowrap; }
.uk-flag { width: 20px; height: 13px; border-radius: 2px; background: linear-gradient(33deg, transparent 43%, #fff 43% 49%, #c8102e 49% 55%, #fff 55% 61%, transparent 61%), linear-gradient(-33deg, transparent 43%, #fff 43% 49%, #c8102e 49% 55%, #fff 55% 61%, transparent 61%), linear-gradient(#012169 0 42%, #fff 42% 58%, #c8102e 58% 64%, #fff 64% 70%, #012169 70%); box-shadow: 0 0 0 1px rgba(255,255,255,.2); }
.menu-toggle { order: -1; display: inline-grid; width: 30px; height: 30px; padding: 7px 5px; gap: 3px; border: 0; border-radius: 4px; }
.menu-toggle i { display: block; height: 2px; width: 20px; background: var(--cream); }
.mobile-nav { background: var(--ink-2); padding: 14px 32px; }
.mobile-bottom-nav { display: none; }
.desktop-bottom-nav { max-width: 1440px; margin: 0 auto; min-height: 42px; padding: 0 32px; display: flex; align-items: center; justify-content: center; gap: 34px; border-top: 1px solid rgba(244,251,242,.08); color: rgba(244,251,242,.65); }
.desktop-bottom-nav a { display: inline-flex; align-items: center; gap: 7px; padding: 10px 0; font-size: 11px; }
.desktop-bottom-nav a:hover { color: var(--gold); }
.desktop-bottom-nav .bottom-nav-icon { color: var(--gold); font-size: 13px; }
.hero-scene { max-width: none; min-height: 500px; margin: 0; border-radius: 0; background: var(--ink); }
.hero-art { object-position: center 48%; }
.hero-shade { background: linear-gradient(90deg, rgba(6,30,34,.94) 0%, rgba(6,30,34,.73) 32%, rgba(6,30,34,.08) 74%, rgba(6,30,34,.18) 100%); }
.hero-copy { max-width: 610px; padding: 105px max(6vw, 32px); }
.hero-copy h1 { font-size: clamp(44px, 5.4vw, 78px); }
.hero-copy h1 em { color: var(--gold); }
.hero-copy > p:not(.eyebrow):not(.hero-boundary) { color: rgba(244,251,242,.78); font-size: 16px; }
.eyebrow { color: var(--gold); letter-spacing: .16em; }
.eyebrow-light { color: var(--gold); }
.hero-boundary strong { color: var(--green); }
.steps-strip { max-width: 1180px; margin: 0 auto; padding: 20px 24px; background: var(--ink-2); border: 1px solid var(--line); border-top: 0; box-shadow: 0 14px 35px rgba(0,0,0,.22); }
.steps-strip span { color: var(--gold); }
.steps-strip b { color: var(--cream); font-size: 12px; }
.steps-strip small { color: var(--muted); }
.step-divider { border-color: rgba(254,214,118,.25); }
.seo-collapsible { width: min(1180px, calc(100% - 56px)); margin: 0 auto; padding: 21px 24px; border-bottom: 1px solid var(--line); }
.seo-container { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.seo-container h1 { margin: 0; color: var(--gold); font-size: 16px; font-weight: 600; }
.seo-toggle { margin-left: auto; border: 0; color: var(--gold); background: transparent; font-size: 12px; cursor: pointer; }
.seo-toggle span { display: inline-block; margin-left: 5px; font-size: 17px; transition: transform .2s ease; }
.seo-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.seo-content { flex-basis: 100%; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.seo-content p { margin: 0; }
.section-title-with-icon { display: flex; align-items: center; gap: 11px; }
.section-dot { display: grid; place-items: center; width: 36px; height: 36px; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: 17px; }
.casino-section { width: min(1180px, calc(100% - 56px)); padding: 32px 0; margin-bottom: 20px; }
.casino-section .section-heading { margin-bottom: 26px; }
.casino-section .section-heading h2 { margin-bottom: 0; font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.casino-section .section-heading .eyebrow { margin-bottom: 3px; font-size: 9px; }
.casino-section .game-grid.home-games { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.casino-section .game-card-body { padding: 9px 10px 11px; }
.casino-section .game-card-body h3 { margin: 4px 0 0; font-size: 14px; font-weight: 600; }
.casino-section .game-card .text-link { display: none; }
.runtime-section { padding-top: 15px; }
.cue-module { max-width: 1180px; margin: 42px auto 60px; padding: 0 28px; }
.cue-copy h2, .section-heading h2, .boundary-band h2, .final-cta h2 { color: var(--cream); }
.cue-copy > p:not(.eyebrow):not(.cue-result) { color: var(--muted); }
.cue-buttons button, .preference-grid button, .care-actions button { color: var(--cream); border-color: var(--line); }
.cue-buttons button.active, .preference-grid button.active { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.catalogue-preview { max-width: 1180px; margin: 0 auto 56px; padding: 0 28px; }
.home-catalogue { padding-top: 24px; }
.section-heading { margin-bottom: 20px; }
.section-heading h2 { font-size: clamp(26px, 3vw, 40px); }
.text-link { color: var(--gold); }
.text-link:hover { color: var(--green); }
.game-grid.home-games { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.game-card { background: var(--ink-2); border: 1px solid var(--line); box-shadow: 0 10px 25px rgba(0,0,0,.2); border-radius: 6px; }
.game-card:hover { box-shadow: 0 16px 30px rgba(0,0,0,.35); }
.game-cover-link { aspect-ratio: .92; background: #0a3b3d; }
.cover-stamp { left: 8px; bottom: 8px; padding: 3px 6px; color: var(--ink); background: var(--gold); border-radius: 3px; font-size: 8px; }
.game-card-body { padding: 10px 11px 12px; }
.game-card-body h3 { color: var(--cream); font-size: 15px; }
.game-card-body p:not(.game-kicker) { display: none; }
.game-kicker { color: var(--gold); font-size: 8px; }
.game-card .text-link { font-size: 9px; }
.catalogue-secondary { padding-top: 4px; }
.runtime-rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.runtime-rail a { min-height: 104px; padding: 16px; display: grid; grid-template-columns: 35px 1fr; column-gap: 10px; align-items: center; background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; }
.runtime-rail a:hover { border-color: rgba(254,214,118,.55); transform: translateY(-2px); }
.runtime-rail span { grid-row: span 2; display: grid; place-items: center; width: 33px; height: 33px; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: 16px; }
.runtime-rail b { color: var(--cream); font-size: 14px; }
.runtime-rail small { color: var(--muted); font-size: 11px; }
.boundary-band { max-width: 1180px; margin: 0 auto 56px; padding: 30px 34px; grid-template-columns: 1fr 1.2fr auto; background: #0a3b3d; border: 1px solid var(--line); border-radius: 8px; }
.boundary-band .eyebrow { color: var(--gold); }
.boundary-band h2 { font-size: 28px; }
.boundary-band > p { color: var(--muted); }
.button-ink { color: var(--ink); background: var(--gold); }
.final-cta { max-width: 1180px; margin: 0 auto 70px; padding: 24px 28px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 8px; }
.final-cta p { color: var(--muted); }
.page-shell { max-width: 1180px; }
.page-intro h1 { color: var(--cream); }
.page-intro > p:not(.eyebrow) { color: var(--muted); }
.catalogue-tools, .panel, .play-notes { background: var(--ink-2); border-color: var(--line); }
input, select, textarea { background: #092327; border-color: var(--line); color: var(--cream); }
.filter-row button { color: var(--muted); border-color: var(--line); }
.filter-row button.active { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.notice { background: rgba(24,174,98,.1); border-color: var(--coral); color: var(--muted); }
.detail-copy h2, .panel h2, .legal-copy h2 { color: var(--cream); }
.detail-copy p, .reading p, .panel p { color: var(--muted); }
.detail-facts span { color: var(--gold); border-color: rgba(254,214,118,.35); }
.auth-art { background: #0a3b3d; }
.auth-art::before { border-color: rgba(254,214,118,.12); }
.site-footer { max-width: 1180px; color: var(--muted); }
.footer-trust { grid-template-columns: repeat(4, 1fr); }
.trust-icon { color: var(--ink); background: var(--gold); }
.trust-block b, .footer-lead strong { color: var(--cream); }
.footer-label { color: var(--gold); }
.footer-boundary strong { color: var(--gold); }
.cookie-banner { color: var(--cream); background: var(--ink-2); border-color: var(--line); }
.ssr-home-fallback { max-width: none; min-height: 500px; margin: 0; padding-left: max(6vw, 32px); background: linear-gradient(110deg, var(--ink), var(--plum)); }
.ssr-register-fallback { max-width: 1180px; min-height: 420px; margin: 0 auto; padding: 110px 28px; background: linear-gradient(110deg, var(--ink), var(--plum)); color: var(--cream); }
.ssr-register-fallback h1 { margin: 0 0 14px; color: var(--gold); font-size: clamp(42px, 6vw, 70px); letter-spacing: -.06em; line-height: .95; }
.ssr-register-fallback p:not(.eyebrow) { max-width: 540px; color: rgba(244,251,242,.74); }
.auth-modal-backdrop { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 22px; background: rgba(1, 10, 12, .78); backdrop-filter: blur(8px); }
.auth-modal { position: relative; width: min(920px, 100%); max-height: min(760px, calc(100vh - 36px)); overflow: auto; display: grid; grid-template-columns: .82fr 1.18fr; background: var(--ink-2); border: 1px solid rgba(254,214,118,.35); border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.auth-modal-close { position: absolute; top: 12px; right: 14px; z-index: 2; width: 32px; height: 32px; border: 1px solid rgba(244,251,242,.35); border-radius: 50%; color: var(--cream); background: rgba(6,30,34,.55); font-size: 23px; line-height: 1; }
.auth-modal-close:hover { color: var(--gold); border-color: var(--gold); }
.auth-modal-art { min-height: 570px; padding: 32px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; position: relative; background: radial-gradient(circle at 50% 31%, rgba(24,174,98,.28), transparent 56%), #0a3b3d; }
.auth-modal-art img { position: absolute; top: 6%; left: 4%; width: 96%; height: 62%; object-fit: contain; object-position: center top; filter: drop-shadow(0 18px 15px rgba(0,0,0,.35)); }
.auth-modal-art h2 { margin: 3px 0 8px; color: var(--gold); font-size: 35px; line-height: 1; letter-spacing: -.05em; }
.auth-modal-art p:not(.eyebrow) { max-width: 210px; margin: 0; color: rgba(244,251,242,.72); font-size: 13px; }
.auth-modal > form { align-content: start; padding: 42px 36px 30px; }
.auth-modal > form h2 { margin: 0 0 4px; color: var(--cream); font-size: 30px; line-height: 1.05; letter-spacing: -.04em; }
.auth-modal .modal-lead { margin: 0 0 18px; color: var(--muted); font-size: 12px; }
.auth-modal .form-row { gap: 10px; }
.auth-modal label:not(.check-row) { color: var(--muted); }
.auth-modal .check-row { color: var(--muted); }
.auth-modal .oauth-slot { margin-top: 5px; }
.auth-modal .modal-login { margin: 6px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 290px; position: relative; padding: 25px; }
.feature-card h2 { margin: 0 0 10px; color: var(--cream); font-size: 25px; line-height: 1.05; }
.feature-card p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.feature-card .text-link { position: absolute; left: 25px; bottom: 23px; }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 22px; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: 14px; font-weight: 900; }
.challenge-board { max-width: 760px; }
.challenge-header, .challenge-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.challenge-header { padding-bottom: 12px; color: var(--gold); border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.challenge-row { grid-template-columns: 38px 1fr auto; padding: 17px 0; border-bottom: 1px solid var(--line); }
.challenge-row:last-of-type { margin-bottom: 20px; }
.challenge-medal { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(254,214,118,.4); border-radius: 50%; color: var(--gold); font-size: 11px; }
.challenge-row b { display: block; color: var(--cream); font-size: 14px; }
.challenge-row small { color: var(--muted); font-size: 11px; }
.challenge-row strong { color: var(--green); font-size: 11px; text-transform: uppercase; }
@media (max-width: 720px) {
  .auth-modal { display: block; max-height: calc(100vh - 22px); }
  .auth-modal-art { min-height: 175px; padding: 18px 22px; }
  .auth-modal-art img { top: -20px; left: auto; right: 2%; width: 52%; height: 175px; }
  .auth-modal-art h2 { max-width: 48%; font-size: 27px; }
  .auth-modal-art p:not(.eyebrow) { max-width: 48%; }
  .auth-modal > form { padding: 26px 22px 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 245px; }
}

@media (max-width: 1024px) {
  .gamification-nav, .language-switcher { display: none; }
  .game-grid.home-games { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .runtime-rail { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  body { padding-bottom: 63px; }
  .header-inner { min-height: 62px; padding: 7px 14px; }
  .brand-lockup { margin: 0 auto; }
  .brand-lockup img { width: 42px; height: 42px; }
  .brand-lockup span { font-size: 10px; }
  .main-nav { display: none; }
  .desktop-bottom-nav { display: none; }
  .header-actions { margin-left: 0; gap: 5px; }
  .header-actions .balance-pill, .header-actions .button-ghost { display: none; }
  .header-actions .button-small { padding: 8px 11px; font-size: 10px; }
  .menu-toggle { display: inline-grid; }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 35; display: grid; grid-template-columns: repeat(5, 1fr); height: 63px; background: #06191d; border-top: 1px solid rgba(254,214,118,.22); box-shadow: 0 -9px 24px rgba(0,0,0,.24); }
  .mobile-bottom-nav a { display: grid; place-items: center; align-content: center; gap: 3px; color: rgba(244,251,242,.68); font-size: 9px; }
  .mobile-bottom-nav a:hover, .mobile-bottom-nav a:focus-visible { color: var(--gold); }
  .bottom-nav-icon { color: var(--gold); font-size: 16px; line-height: 1; }
  .hero-scene { min-height: 610px; }
  .hero-shade { background: linear-gradient(180deg, rgba(6,30,34,.38), rgba(6,30,34,.88) 60%, rgba(6,30,34,.98)); }
  .hero-copy { padding: 275px 19px 32px; }
  .hero-copy h1 { font-size: clamp(41px, 12vw, 62px); }
  .hero-actions { flex-direction: row; }
  .hero-actions .button { width: auto; flex: 1; padding-left: 10px; padding-right: 10px; }
  .seo-collapsible, .casino-section { width: calc(100% - 28px); }
  .seo-container { align-items: flex-start; flex-wrap: wrap; gap: 8px; }
  .seo-container h1 { flex-basis: 100%; font-size: 15px; }
  .seo-toggle { margin-left: 0; padding-left: 0; }
  .casino-section { padding: 25px 0; }
  .casino-section .game-grid.home-games { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; }
  .steps-strip { margin: 0 12px; padding: 18px; }
  .catalogue-preview { padding: 0 14px; margin-bottom: 42px; }
  .game-grid.home-games { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; }
  .game-grid.home-games .game-card { min-width: 145px; max-width: 145px; scroll-snap-align: start; }
  .runtime-rail { display: flex; overflow-x: auto; gap: 10px; padding-bottom: 6px; }
  .runtime-rail a { min-width: 165px; }
  .boundary-band { margin: 0 12px 42px; padding: 25px 22px; grid-template-columns: 1fr; gap: 12px; }
  .boundary-band .button { justify-self: start; }
  .final-cta { margin: 0 12px 46px; }
  .footer-trust { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-lead { grid-column: 1 / -1; }
  .cookie-banner { left: 12px; right: 12px; bottom: 74px; flex-direction: column; align-items: stretch; }
}

/* Reference-faithful lobby shell. Product identity and copy remain Grasshopper Mania. */
html { background: #061e22; }
body { background: #061e22; color: #fff; font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
#app { min-height: 460px; padding-top: 108px; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 40; display: flex; flex-direction: column; background: #0a2b31; box-shadow: none; }
.header-inner { width: min(92%, 1760px); max-width: 1760px; height: 68px; min-height: 68px; margin: 0 auto; padding: 9px 0; gap: 24px; }
.brand-lockup { min-width: 188px; height: 100%; margin-right: auto; gap: 11px; }
.brand-lockup img { width: 46px; height: 46px; }
.brand-lockup span { font-size: 10px; line-height: 1; }
.brand-lockup em { color: #fed676; }
.menu-toggle { display: none; }
.header-actions { min-width: 0; margin-left: auto; gap: 12px; }
.auth-actions { display: flex; align-items: center; gap: 7px; padding-left: 13px; border-left: 1px solid rgba(254,214,118,.2); }
.balance-pill { min-width: 88px; padding: 4px 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.balance-pill span { color: #8fb4ac; }
.balance-pill strong { color: #fed676; }
.header-actions .button { min-width: 94px; height: 40px; padding: 0 18px; border: 1px solid transparent; border-radius: 8px; font-size: 12px; letter-spacing: .025em; box-shadow: 0 4px 12px rgba(0,0,0,.13); }
.header-actions .button-ghost { color: #36e1b9; background: #006559; }
.header-actions .button-ghost:hover { color: #06292b; background: #1bb692; }
.header-actions .button-coral { color: #00423b; background: #fed676; }
.header-actions .button-coral:hover { color: #00423b; background: #f7dd9f; }
.gamification-nav { display: flex; align-items: center; gap: 12px; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; }
.gamification-item { width: auto; min-width: 96px; height: 34px; padding: 4px 9px 4px 5px; display: flex; align-items: center; justify-content: flex-start; gap: 7px; border-radius: 6px; color: #d6ebe6; font-size: 10px; font-weight: 650; letter-spacing: .01em; }
.gamification-item:hover { color: #fed676; background: transparent; }
.gamification-icon { flex: 0 0 auto; width: 31px; height: 31px; padding: 0; border: 0; border-radius: 0; object-fit: contain; background: transparent; filter: drop-shadow(0 3px 4px rgba(0,0,0,.34)); transition: transform .2s ease, filter .2s ease; }
.gamification-item:hover .gamification-icon { transform: translateY(-1px) scale(1.07); filter: drop-shadow(0 5px 6px rgba(0,0,0,.38)); }
.language-switcher { min-width: 34px; height: 40px; margin: 0; padding: 0 2px; border: 0; border-radius: 0; display: inline-flex; align-items: center; justify-content: center; gap: 0; color: #d6ebe6; background: transparent; font-size: 0; font-weight: 650; }
.language-switcher .uk-flag, .mobile-language .uk-flag { width: 30px; height: 20px; border-radius: 0; object-fit: contain; background: none; box-shadow: none; filter: drop-shadow(0 3px 4px rgba(0,0,0,.35)); }
.desktop-bottom-nav { width: 100%; max-width: none; height: 40px; min-height: 40px; padding: 0; gap: 0; border-top: 0; background: #051214; }
.desktop-bottom-nav a { height: 100%; padding: 11px 24px; gap: 12px; color: #0f8d80; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.desktop-bottom-nav a:hover, .desktop-bottom-nav a:first-child { color: #fed676; }
.desktop-bottom-nav .bottom-nav-icon { color: currentColor; font-size: 14px; }
.mobile-bottom-nav, .mobile-nav-container { display: none; }

.hero-carousel { position: relative; width: 100%; aspect-ratio: 1942 / 809; overflow: hidden; background: #0a2b31; }
.hero-track, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { z-index: 0; opacity: 0; pointer-events: none; transition: opacity .42s ease; overflow: hidden; }
.hero-slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.hero-slide-stage { background: #071b21; }
.hero-art { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; max-height: 100%; object-fit: contain; object-position: center top; background: #071b21; }
.hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(4,19,22,.96), rgba(4,19,22,.72) 28%, rgba(4,19,22,.08) 67%, rgba(4,19,22,.18)); }
.hero-copy { position: relative; z-index: 2; width: 89%; max-width: 1920px; height: 100%; margin: 0 auto; padding: 4.2% 0 3%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-kicker { margin: 0 0 5px; color: #36e1b9; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.hero-copy h1, .hero-slide h2 { margin: 0 0 10px; color: #fff; font-size: clamp(30px, 3.25vw, 62px); line-height: .95; letter-spacing: -.045em; }
.hero-copy h1 em { color: #fed676; font-style: normal; }
.hero-copy > p:not(.hero-kicker) { max-width: 440px; margin: 0; color: #c9e4dd; font-size: clamp(11px, .95vw, 16px); }
.hero-actions { margin-top: 18px; gap: 8px; }
.hero-actions .button, .hero-slide > div .button { min-width: 135px; padding: 12px 20px; border-radius: 4px; font-size: 11px; }
.button-secondary { color: #36e1b9; background: #006559; }
.hero-arrow { position: absolute; z-index: 4; top: 50%; width: 42px; height: 64px; transform: translateY(-50%); border: 0; color: #fed676; background: rgba(6,30,34,.64); font-size: 36px; line-height: 1; }
.hero-arrow-prev { left: 0; border-radius: 0 5px 5px 0; }
.hero-arrow-next { right: 0; border-radius: 5px 0 0 5px; }
.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 12px; display: flex; gap: 7px; transform: translateX(-50%); }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 1px solid #fed676; border-radius: 50%; background: transparent; }
.hero-dots button.is-active { width: 24px; border-radius: 99px; background: #fed676; }
.hero-slide-collection { background: radial-gradient(circle at 72% 45%, #13877c 0, #0a3b3d 34%, #061e22 72%); }
.hero-collection-copy, .hero-care-copy { position: absolute; z-index: 2; left: 5.5%; top: 50%; max-width: 470px; transform: translateY(-50%); }
.hero-collection-copy p:not(.hero-kicker), .hero-care-copy p:not(.hero-kicker) { margin: 0 0 18px; color: #b9d8d1; font-size: 14px; }
.hero-cover-fan { position: absolute; right: 9%; top: 50%; width: 42%; height: 88%; transform: translateY(-50%); }
.hero-cover-fan img { position: absolute; top: 50%; width: 31%; aspect-ratio: 1; object-fit: cover; border: 3px solid #fed676; border-radius: 28px; box-shadow: 0 18px 34px rgba(0,0,0,.42); }
.hero-cover-fan img:nth-child(1) { left: 3%; transform: translateY(-50%) rotate(-10deg); }
.hero-cover-fan img:nth-child(2) { left: 34%; z-index: 2; transform: translateY(-56%); }
.hero-cover-fan img:nth-child(3) { left: 65%; transform: translateY(-50%) rotate(10deg); }
.hero-slide-care { background: radial-gradient(circle at 28% 45%, #1b8d70, #0a3b3d 38%, #061e22 76%); }
.hero-cutout { position: absolute; left: 9%; top: 4%; bottom: auto; height: 92%; max-width: 46%; object-fit: contain; object-position: center top; filter: drop-shadow(0 20px 20px rgba(0,0,0,.4)); }
.hero-care-copy { left: auto; right: 8%; }

.seo-collapsible { width: 100%; margin: 0; padding: 0; border: 0; background: #0a3b3d; }
.seo-container { width: 89%; max-width: 1920px; margin: 0 auto; padding: 16px 0 3px; display: block; }
.seo-container h1 { margin: 0; color: #fed676; font-size: clamp(16px, 1.65vw, 31px); font-weight: 700; line-height: 30px; }
.seo-copy-wrap { position: relative; }
.seo-content { margin-top: 5px; padding: 0 90px 0 0; border: 0; color: #36e1b9; font-size: 12px; line-height: 1.25; }
.seo-content p { margin: 0 0 12px; }
.seo-content.is-closed { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; }
.seo-toggle { position: absolute; right: 0; bottom: 0; margin: 0; padding: 3px 0 3px 30px; color: #fed676; background: linear-gradient(90deg, transparent, #0a3b3d 24%, #0a3b3d); font-size: 12px; }

.home-carousel-section { width: 89%; max-width: 1920px; margin: 64px auto 0; padding: 0; }
.home-carousel-section.carousel-panel { width: calc(89% + 80px); max-width: 2000px; padding: 32px 40px; border-radius: 8px; background: #0a3b3d; box-shadow: 5px 5px 10px rgba(0,0,0,.2); }
.carousel-header { min-height: 30px; margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.carousel-header h2 { margin: 0; color: #fed676; font-size: 18px; font-weight: 600; line-height: 1.2; }
.carousel-header h2 small { color: #36e1b9; font-size: 14px; font-weight: 400; }
.carousel-title { display: flex; align-items: center; gap: 12px; }
.carousel-section-icon { display: grid; place-items: center; width: 40px; height: 40px; color: #0a3b3d; background: #36e1b9; border-radius: 50%; font-size: 17px; }
.carousel-header-actions { display: flex; align-items: center; gap: 5px; }
.carousel-header-actions a { margin-right: 8px; color: #fed676; font-size: 14px; }
.carousel-header-actions button { width: 31px; height: 31px; padding: 0; border: 1px solid rgba(254,214,118,.28); border-radius: 4px; color: #fed676; background: #0a2b31; font-size: 22px; line-height: 1; }
.carousel-header-actions button:hover { background: #006559; }
.carousel-header-actions .carousel-motion-toggle { width: auto; min-width: 58px; padding: 0 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 750; letter-spacing: .07em; line-height: 1; text-transform: uppercase; }
.carousel-viewport { width: 100%; overflow: hidden; }
.game-carousel { display: flex; gap: 24px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
.game-carousel.is-auto-scrolling { scroll-snap-type: none; }
.game-carousel::-webkit-scrollbar { display: none; }
.game-carousel .carousel-card { flex: 0 0 calc((100% - 120px) / 6); min-width: 0; scroll-snap-align: start; background: transparent; border: 0; border-radius: 0; box-shadow: none; overflow: visible; }
.game-carousel .carousel-card:hover { transform: none; box-shadow: none; }
.card-image-wrap { position: relative; display: block; width: 100%; aspect-ratio: 1; margin-bottom: 16px; overflow: hidden; border: 2px solid #01786a; border-radius: 30px; background: #0a3b3d; }
.card-image-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(28,30,38,.85); opacity: 0; transition: opacity .2s ease; }
.play-icon { display: grid; place-items: center; width: 58px; height: 58px; padding-left: 4px; border-radius: 50%; color: #0c5040; background: #1bb692; font-size: 19px; }
.card-image-wrap:hover .card-overlay { opacity: 1; }
.card-image-wrap:hover img { transform: scale(1.035); }
.carousel-card-title { margin: 0 0 2px; overflow: hidden; color: #fed676; font-size: 14px; font-weight: 700; line-height: 17px; text-overflow: ellipsis; white-space: nowrap; }
.carousel-card-provider { margin: 0; color: #d1aa41; font-size: 14px; line-height: 20px; }
.top-picks .carousel-card-title, .top-picks .carousel-card-provider { color: #2fd1ad; }
.home-page { padding-bottom: 70px; }

.catalogue-page { width: 100%; max-width: none; padding: 38px 0 90px; }
.catalogue-page .page-intro, .catalogue-page .catalogue-tools, .catalogue-page .full-games, .catalogue-page > .notice { width: 89%; max-width: 1920px; margin-left: auto; margin-right: auto; }
.catalogue-page .page-intro { margin-bottom: 30px; }
.catalogue-page .page-intro h1 { font-size: clamp(34px, 4vw, 60px); }
.catalogue-page .catalogue-tools { position: sticky; top: 108px; z-index: 8; padding: 5px; border: 1px solid rgba(15,141,128,.2); border-radius: 6px; background: #0a3b3d; }
.catalogue-page .search-field { width: 30%; }
.catalogue-page .search-field > span { display: none; }
.catalogue-page .search-field input { padding: 14px 14px 14px 38px; border: 0; border-radius: 4px; color: #36e1b9; background: #0a2b31; }
.catalogue-page .filter-row { flex: 1; justify-content: flex-start; margin-left: 35px; gap: 8px; }
.catalogue-page .filter-row button { min-width: 104px; padding: 12px; border: 0; border-radius: 6px; color: #fed676; font-weight: 500; background: transparent; }
.catalogue-page .filter-row button:hover { background: #0a2b31; }
.catalogue-page .filter-row button.active { color: #00463e; background: #fed676; }
.full-games { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px 24px; }
.full-games .game-card { min-width: 0; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.full-games .game-card:hover { transform: none; box-shadow: none; }
.catalogue-page > .notice { margin-top: 34px; }

.site-footer { width: 100%; max-width: none; margin: 70px 0 0; padding: 0 0 40px; color: #93aca6; background: #081a1d; }
.footer-rule, .footer-trust, .footer-grid, .footer-boundary, .footer-bottom { width: 89%; max-width: 1920px; margin-left: auto; margin-right: auto; }
.footer-rule { border-color: rgba(54,225,185,.16); }
.footer-trust { padding: 28px 0; }
.trust-icon { color: #061e22; background: #36e1b9; }
.trust-block b { color: #fed676; }
.footer-grid { padding: 36px 0; }
.footer-lead strong { color: #fff; }
.footer-label { color: #fed676; }
.footer-grid a:hover, .footer-bottom a:hover { color: #36e1b9; }
.footer-boundary { border-top: 1px solid rgba(54,225,185,.12); border-bottom: 1px solid rgba(54,225,185,.12); }
.footer-boundary strong { color: #fed676; }
.footer-bottom { border-top: 0; }

@media (max-width: 1024px) {
  #app { padding-top: 47.5px; }
  .header-inner { width: calc(100% - 32px); height: 47.5px; min-height: 47.5px; padding: 6.5px 0; }
  .menu-toggle { order: 0; width: 24px; height: 20px; margin-right: 16px; padding: 2px; display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; border: 0; }
  .menu-toggle i { width: 20px; height: 2px; background: #fed676; }
  .brand-lockup { margin-right: auto; }
  .brand-lockup img { width: 34px; height: 34px; }
  .brand-lockup span { display: none; }
  .header-actions .button { min-width: 65px; padding: 10px 0; font-size: 12px; text-transform: uppercase; }
  .header-actions .balance-pill, .gamification-nav, .language-switcher { display: none; }
  .auth-actions { gap: 6px; padding-left: 0; border-left: 0; }
  .desktop-bottom-nav { display: none; }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; height: 52px; display: grid; grid-template-columns: repeat(5, 1fr); background: #0a2b31; }
  .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 7px 4px 5px; color: #0f8d80; font-size: 10px; }
  .mobile-bottom-nav a:first-child { color: #fed676; border-top: 1px solid #36e1b9; }
  .mobile-bottom-nav .bottom-nav-icon { color: currentColor; font-size: 14px; }
  .mobile-nav-container[hidden] { display: none; }
  .mobile-nav-container:not([hidden]) { position: fixed; inset: 47.5px 0 52px; z-index: 44; display: block; }
  .mobile-nav-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0,0,0,.5); }
  .mobile-nav-panel { position: relative; width: min(360px, 88%); height: 100%; overflow-y: auto; background: #0a2b31; box-shadow: 12px 0 32px rgba(0,0,0,.35); }
  .mobile-shortcuts { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 12px 18px; padding: 8px; border-radius: 9px; background: #0a3b3d; }
  .mobile-shortcuts a { display: grid; place-items: center; gap: 4px; min-height: 64px; color: #36e1b9; font-size: 11px; font-weight: 700; }
  .mobile-shortcuts span { font-size: 20px; }
  .mobile-shortcuts img { width: 40px; height: 38px; object-fit: contain; filter: drop-shadow(0 5px 7px rgba(0,0,0,.35)); }
  .mobile-menu-links { display: grid; }
  .mobile-menu-links a { padding: 17px 24px; color: #36e1b9; font-size: 14px; font-weight: 700; }
  .mobile-menu-links a:hover { color: #0a3b3d; background: #36e1b9; }
  .mobile-language { display: inline-flex; align-items: center; gap: 0; margin: 20px 24px; padding: 0; border: 0; border-radius: 0; color: #36e1b9; background: transparent; font-size: 0; }
  .hero-carousel { aspect-ratio: 1942 / 809; }
  .home-carousel-section { margin-top: 44px; }
  .game-carousel .carousel-card { flex-basis: calc((100% - 72px) / 4); }
  .home-carousel-section.carousel-panel { width: calc(89% + 48px); padding: 28px 24px; }
  .catalogue-page .catalogue-tools { top: 47.5px; width: calc(100% - 32px); align-items: stretch; flex-direction: column; padding: 5px; }
  .catalogue-page .search-field { width: 100%; }
  .catalogue-page .filter-row { margin-left: 0; overflow-x: auto; flex-wrap: nowrap; }
  .full-games { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 743px) {
  body { padding-bottom: 52px; }
  .hero-carousel { aspect-ratio: 601 / 541; }
  .hero-shade { background: linear-gradient(180deg, rgba(4,19,22,.12), rgba(4,19,22,.86) 58%, rgba(4,19,22,.98)); }
  .hero-art { inset: 0 0 auto; height: auto; max-height: none; aspect-ratio: 1942 / 809; object-fit: contain; object-position: center top; }
  .hero-copy { width: calc(100% - 32px); padding: 44% 0 8%; justify-content: flex-end; }
  .hero-copy h1, .hero-slide h2 { font-size: clamp(34px, 10vw, 54px); }
  .hero-copy > p:not(.hero-kicker) { max-width: 92%; font-size: 13px; }
  .hero-actions { width: 100%; margin-top: 13px; }
  .hero-actions .button { flex: 1; min-width: 0; padding: 11px 9px; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 8px; }
  .hero-collection-copy, .hero-care-copy { left: 18px; right: 18px; top: auto; bottom: 34px; max-width: none; transform: none; }
  .hero-cover-fan { right: 5%; top: 6%; width: 90%; height: 52%; transform: none; }
  .hero-cover-fan img { width: 31%; }
  .hero-cutout { left: auto; right: 3%; top: 3%; bottom: auto; height: 59%; max-width: 75%; object-position: center top; opacity: .84; }
  .hero-care-copy { z-index: 2; }
  .seo-container { width: calc(100% - 32px); padding-top: 12px; }
  .seo-container h1 { font-size: 16px; line-height: 22px; }
  .seo-content { padding-right: 82px; line-height: 1.2; }
  .home-carousel-section, .home-carousel-section.carousel-panel { width: 100%; margin-top: 32px; padding: 24px 0; border-radius: 0; }
  .top-picks { padding-top: 0; }
  .carousel-header { margin-bottom: 22px; padding: 0 16px; }
  .carousel-header h2 { font-size: 17px; }
  .carousel-header h2 small { display: block; margin-top: 2px; font-size: 12px; }
  .carousel-section-icon { width: 35px; height: 35px; }
  .carousel-header-actions a { margin-right: 0; font-size: 12px; }
  .carousel-header-actions button { display: none; }
  .carousel-header-actions .carousel-motion-toggle { min-width: 54px; padding: 0 8px; display: inline-flex; font-size: 9px; }
  .carousel-viewport { overflow: visible; }
  .game-carousel { gap: 16px; padding: 0 16px; }
  .game-carousel .carousel-card { flex-basis: 37%; }
  .card-image-wrap { margin-bottom: 10px; border-radius: 18px; }
  .carousel-card-title, .carousel-card-provider { font-size: 12px; line-height: 16px; }
  .site-footer { margin-top: 36px; padding-bottom: 20px; }
  .footer-rule, .footer-trust, .footer-grid, .footer-boundary, .footer-bottom { width: calc(100% - 32px); }
  .footer-trust { grid-template-columns: 1fr 1fr; gap: 20px 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-lead { grid-column: 1 / -1; }
  .catalogue-page { padding-top: 26px; }
  .catalogue-page .page-intro, .catalogue-page .full-games, .catalogue-page > .notice { width: calc(100% - 32px); }
  .full-games { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 16px; }
}

/* Premium 3D story layers and reference-shaped FAQ accordion. */
.page-intro-illustrated { position: relative; max-width: none; min-height: 230px; margin-bottom: 48px; padding: 42px min(31vw, 390px) 38px 0; display: flex; align-items: center; overflow: visible; border-bottom: 1px solid rgba(54,225,185,.14); }
.page-intro-illustrated > div { position: relative; z-index: 2; max-width: 760px; }
.page-intro-illustrated > div > p:not(.eyebrow) { max-width: 660px; color: var(--muted); font-size: 17px; }
.page-intro-cutout { position: absolute; z-index: 1; right: 0; bottom: -28px; width: min(30vw, 330px); height: 290px; object-fit: contain; object-position: center bottom; pointer-events: none; filter: drop-shadow(0 22px 22px rgba(0,0,0,.38)); animation: cutout-breathe 5.8s ease-in-out infinite; }
.catalogue-page .page-intro-illustrated { min-height: 290px; }
.catalogue-page .page-intro-cutout { right: 3.5%; width: min(30vw, 390px); height: 340px; }

.carousel-section-icon { width: 44px; height: 44px; padding: 0; border-radius: 0; object-fit: contain; color: transparent; background: transparent; filter: drop-shadow(0 7px 7px rgba(0,0,0,.34)); }
.carousel-section-token { transform: rotate(-9deg) scale(1.16); }
.home-carousel-section.carousel-panel { position: relative; isolation: isolate; overflow: hidden; }
.carousel-panel > .carousel-header, .carousel-panel > .carousel-viewport { position: relative; z-index: 2; }
.carousel-panel-flair { position: absolute; z-index: 1; top: -66px; right: -62px; width: 245px; height: 245px; object-fit: contain; opacity: .16; transform: rotate(18deg); pointer-events: none; filter: saturate(1.2); }
.carousel-panel-flair-left { top: auto; right: auto; bottom: -88px; left: -66px; transform: rotate(196deg); }

.home-story { position: relative; width: calc(89% + 80px); max-width: 2000px; min-height: 470px; margin: 72px auto 0; display: grid; grid-template-columns: minmax(350px, .86fr) minmax(0, 1.14fr); align-items: center; overflow: hidden; border: 1px solid rgba(254,214,118,.18); border-radius: 12px; background: radial-gradient(circle at 20% 42%, rgba(54,225,185,.25), transparent 35%), linear-gradient(112deg, #05272b 0%, #0a3b3d 48%, #071e22 100%); box-shadow: 0 28px 58px rgba(0,0,0,.28); }
.home-story::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(254,214,118,.1); border-radius: 8px; pointer-events: none; }
.home-story-art { position: relative; align-self: stretch; min-height: 470px; }
.story-curator { position: absolute; z-index: 2; left: 4%; bottom: -11%; width: 75%; height: 116%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 24px 22px rgba(0,0,0,.44)); animation: cutout-breathe 6.2s ease-in-out infinite; }
.story-token-trail { position: absolute; z-index: 1; right: -15%; top: -14%; width: 70%; height: 70%; object-fit: contain; opacity: .78; transform: rotate(19deg); filter: drop-shadow(0 18px 20px rgba(0,0,0,.28)); animation: token-drift 7s ease-in-out infinite; }
.home-story-copy { position: relative; z-index: 3; max-width: 720px; padding: 62px 7% 62px 4%; }
.home-story-copy h2 { max-width: 650px; margin: 4px 0 16px; color: #fed676; font-size: clamp(36px, 4vw, 64px); line-height: .96; letter-spacing: -.052em; }
.home-story-copy > p:not(.eyebrow) { max-width: 620px; margin: 0; color: #b9d8d1; font-size: 15px; line-height: 1.7; }
.story-facts { margin: 28px 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.story-facts span { min-height: 66px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(54,225,185,.16); border-radius: 8px; color: #a9c9c2; background: rgba(5,18,20,.35); font-size: 11px; }
.story-facts strong { color: #36e1b9; font-size: 25px; line-height: 1; }

.faq-section { width: calc(89% + 80px); max-width: 2000px; margin: 72px auto 0; }
.faq-shell { position: relative; min-height: 600px; padding: 44px 38px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 340px); gap: clamp(28px, 4vw, 64px); align-items: stretch; overflow: hidden; border: 1px solid rgba(254,214,118,.12); border-radius: 12px; background: linear-gradient(112deg, #0a3b3d 0%, #073236 66%, #052327 100%); box-shadow: 0 24px 54px rgba(0,0,0,.26); }
.faq-shell::before { content: ""; position: absolute; right: -120px; top: -150px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(54,225,185,.18), transparent 68%); pointer-events: none; }
.faq-heading { position: relative; z-index: 2; grid-column: 2; grid-row: 1; min-width: 0; min-height: 100%; padding: 22px 18px 0; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; overflow: hidden; border: 1px solid rgba(54,225,185,.16); border-radius: 10px; background: radial-gradient(circle at 50% 58%, rgba(54,225,185,.18), transparent 49%), rgba(3,25,29,.42); }
.faq-heading::after { content: ""; position: absolute; z-index: 1; left: 12%; right: 12%; bottom: 17px; height: 30px; border-radius: 50%; background: radial-gradient(ellipse, rgba(254,214,118,.34), rgba(54,225,185,.11) 42%, transparent 72%); filter: blur(3px); pointer-events: none; }
.faq-heading > div { position: relative; z-index: 3; width: auto; padding: 14px 15px 15px; border: 1px solid rgba(254,214,118,.2); border-radius: 8px; background: rgba(5,18,20,.72); backdrop-filter: blur(7px); }
.faq-heading .eyebrow { margin: 0 0 4px; font-size: 9px; }
.faq-heading h2 { margin: 0; color: #fed676; font-size: clamp(38px, 4vw, 54px); line-height: .92; }
.faq-heading p:not(.eyebrow) { margin: 8px 0 0; color: #36e1b9; font-size: 11px; font-style: italic; }
.faq-heading > img { position: relative; z-index: 2; align-self: center; flex: 1 1 auto; width: min(100%, 290px); min-height: 0; height: 430px; margin: 8px 0 -3px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 20px 17px rgba(0,0,0,.4)); animation: cutout-breathe 6.8s ease-in-out infinite; }
.faq-list { position: relative; z-index: 2; grid-column: 1; grid-row: 1; width: auto; align-self: center; display: grid; gap: 17px; }
.faq-item { overflow: hidden; border-radius: 6px; }
.faq-item h3 { margin: 0; }
.faq-item button { position: relative; z-index: 2; width: 100%; min-height: 51px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 0; border-radius: 6px; color: #36e1b9; background: #006559; font: 500 17px/1.35 Inter, ui-sans-serif, system-ui, sans-serif; text-align: left; cursor: pointer; }
.faq-item button:hover, .faq-item button:focus-visible { color: #fed676; background: #075b54; }
.faq-item button i { flex: 0 0 auto; width: 10px; height: 10px; margin: 0 6px 4px 0; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .3s ease; }
.faq-answer { position: relative; z-index: 1; display: grid; grid-template-rows: 0fr; color: #36e1b9; background: #043236; opacity: 0; transition: grid-template-rows .34s ease, opacity .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 22px 16px 24px; color: #b9d8d1; font-size: 15px; line-height: 1.65; }
.faq-item.open button { border-radius: 6px 6px 0 0; }
.faq-item.open button i { transform: rotate(225deg) translate(-2px, -2px); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; opacity: 1; }

/* Compact consent card: intentionally distinct from the full-width page bands. */
.cookie-banner { position: fixed; z-index: 70; left: 24px; right: auto; bottom: 24px; width: min(470px, calc(100vw - 48px)); max-width: none; margin: 0; padding: 18px; display: grid; grid-template-columns: 58px minmax(0, 1fr); align-items: center; gap: 14px; overflow: hidden; color: var(--cream); background: linear-gradient(145deg, rgba(10,59,61,.98), rgba(4,29,33,.98)); border: 1px solid rgba(254,214,118,.26); border-radius: 18px; box-shadow: 0 24px 64px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.06); backdrop-filter: blur(16px); }
.cookie-banner::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 9% 10%, rgba(54,225,185,.18), transparent 31%), linear-gradient(90deg, rgba(254,214,118,.07), transparent 34%); }
.cookie-emblem { position: relative; z-index: 1; width: 56px; height: 56px; display: block; border: 2px solid #fed676; border-radius: 50%; background: radial-gradient(circle at 34% 28%, #fff0b2 0 5%, #fed676 7% 24%, #b86c24 68%, #70401f 100%); box-shadow: inset -7px -9px 12px rgba(72,37,13,.45), inset 6px 6px 10px rgba(255,244,184,.26), 0 10px 18px rgba(0,0,0,.3); transform: rotate(-9deg); }
.cookie-emblem::after { content: ""; position: absolute; top: -5px; right: -6px; width: 24px; height: 24px; border-radius: 50%; background: #073236; box-shadow: -11px -3px 0 -6px #073236, -3px 12px 0 -7px #073236; }
.cookie-emblem i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #4b2d1c; box-shadow: inset 1px 1px 1px rgba(255,255,255,.18); }
.cookie-emblem i:nth-child(1) { left: 13px; top: 15px; }
.cookie-emblem i:nth-child(2) { left: 29px; top: 29px; }
.cookie-emblem i:nth-child(3) { left: 14px; top: 37px; }
.cookie-emblem i:nth-child(4) { left: 34px; top: 11px; }
.cookie-copy { position: relative; z-index: 1; min-width: 0; }
.cookie-copy > span { display: block; margin-bottom: 3px; color: #36e1b9; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cookie-banner .cookie-copy strong { display: block; color: #fed676; font-size: 16px; line-height: 1.2; }
.cookie-banner .cookie-copy p { margin: 6px 0 0; color: #b9d8d1; font-size: 11px; line-height: 1.45; }
.cookie-actions { position: relative; z-index: 1; grid-column: 1 / -1; margin-top: 2px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cookie-actions .button { min-width: 0; min-height: 40px; padding: 9px 12px; border-radius: 9px; font-size: 9px; letter-spacing: .04em; box-shadow: none; }
.cookie-actions .button-ghost { color: #d6ebe6; background: rgba(255,255,255,.055); border: 1px solid rgba(185,216,209,.24); }
.cookie-actions .button-ghost:hover { color: #fed676; background: rgba(255,255,255,.09); border-color: rgba(254,214,118,.4); }
.cookie-actions .button-coral { color: #05272b; background: #fed676; }
.cookie-actions .button-coral:hover { background: #ffe6a0; }
.cookie-actions a { grid-column: 1 / -1; padding: 4px 2px 0; display: flex; align-items: center; justify-content: space-between; color: #7be8cf; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.cookie-actions a:hover { color: #fed676; }
.cookie-actions a span { font-size: 15px; line-height: 1; }

.feature-card { overflow: hidden; min-height: 330px; padding-right: 118px; }
.feature-card::after { content: ""; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(54,225,185,.17), transparent 70%); pointer-events: none; }
.feature-cutout { position: absolute; z-index: 1; top: 12px; right: 10px; width: 104px; height: 104px; object-fit: contain; filter: drop-shadow(0 12px 12px rgba(0,0,0,.34)); }
.feature-card > :not(.feature-cutout) { position: relative; z-index: 2; }
.feature-card-care { padding-right: 145px; }
.feature-cutout-character { top: auto; right: -23px; bottom: -58px; width: 185px; height: 285px; opacity: .78; }
.challenge-board { position: relative; overflow: visible; }
.challenge-trophy { position: absolute; z-index: 2; top: -62px; right: -54px; width: 132px; height: 122px; object-fit: contain; filter: drop-shadow(0 16px 14px rgba(0,0,0,.38)); transform: rotate(8deg); }
.trust-icon-image { overflow: visible; background: transparent; }
.trust-icon-image img { width: 39px; height: 39px; object-fit: contain; filter: drop-shadow(0 6px 6px rgba(0,0,0,.32)); }

@keyframes cutout-breathe {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes token-drift {
  0%, 100% { transform: rotate(19deg) translate3d(0, 0, 0); }
  50% { transform: rotate(23deg) translate3d(7px, -10px, 0); }
}

@media (max-width: 1024px) {
  .page-intro-illustrated { min-height: 210px; padding-right: 255px; }
  .page-intro-cutout, .catalogue-page .page-intro-cutout { right: 0; width: 250px; height: 255px; }
  .home-story { width: calc(89% + 48px); grid-template-columns: minmax(285px, .8fr) 1.2fr; }
  .story-curator { left: -4%; width: 90%; }
  .home-story-copy { padding-left: 2%; }
  .faq-section { width: calc(89% + 48px); }
  .faq-shell { grid-template-columns: minmax(0, 1fr) minmax(230px, 270px); gap: 26px; padding: 34px 28px; }
  .faq-heading { padding-left: 12px; padding-right: 12px; }
  .faq-heading > img { width: min(100%, 225px); height: 390px; }
}

@media (max-width: 743px) {
  .page-intro-illustrated, .catalogue-page .page-intro-illustrated { width: calc(100% - 32px); min-height: 315px; margin-left: auto; margin-right: auto; padding: 24px 0 150px; align-items: flex-start; }
  .page-intro-illustrated > div > p:not(.eyebrow) { font-size: 14px; }
  .page-intro-cutout, .catalogue-page .page-intro-cutout { right: 0; bottom: -20px; width: 210px; height: 205px; }
  .carousel-section-icon { width: 38px; height: 38px; }
  .carousel-panel-flair { width: 180px; height: 180px; opacity: .1; }
  .home-story { width: 100%; min-height: 690px; margin-top: 36px; grid-template-columns: 1fr; border-right: 0; border-left: 0; border-radius: 0; }
  .home-story-art { min-height: 300px; }
  .story-curator { left: -2%; bottom: -17%; width: 63%; height: 126%; }
  .story-token-trail { right: -3%; top: -8%; width: 59%; height: 68%; }
  .home-story-copy { padding: 28px 20px 40px; }
  .home-story-copy h2 { font-size: 39px; }
  .home-story-copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.55; }
  .story-facts { margin: 22px 0; }
  .story-facts span { min-height: 56px; padding: 9px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .story-facts strong { font-size: 21px; }
  .faq-section { width: 100%; margin-top: 36px; }
  .faq-shell { min-height: 0; padding: 20px 16px 28px; display: grid; grid-template-columns: 1fr; gap: 18px; border-right: 0; border-left: 0; border-radius: 0; }
  .faq-heading { grid-column: 1; grid-row: 1; min-height: 235px; padding: 14px 14px 0; display: grid; grid-template-columns: minmax(0, 1fr) 145px; align-items: center; overflow: hidden; }
  .faq-heading::after { left: auto; right: 2%; width: 150px; bottom: 9px; }
  .faq-heading > img { grid-column: 2; grid-row: 1; align-self: end; width: 145px; height: 225px; margin: 0 0 -2px; }
  .faq-heading > div { grid-column: 1; grid-row: 1; align-self: center; width: auto; margin-right: -10px; padding: 13px 12px; }
  .faq-heading h2 { font-size: 39px; }
  .faq-list { grid-column: 1; grid-row: 2; width: 100%; gap: 12px; }
  .faq-item button { min-height: 48px; padding: 12px 14px; font-size: 14px; }
  .faq-answer p { padding: 18px 14px 20px; font-size: 13px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 74px; width: auto; padding: 15px; grid-template-columns: 48px minmax(0, 1fr); gap: 11px; border-radius: 14px; }
  .cookie-emblem { width: 46px; height: 46px; }
  .cookie-emblem::after { width: 20px; height: 20px; }
  .cookie-emblem i { width: 6px; height: 6px; }
  .cookie-emblem i:nth-child(1) { left: 11px; top: 12px; }
  .cookie-emblem i:nth-child(2) { left: 25px; top: 25px; }
  .cookie-emblem i:nth-child(3) { left: 12px; top: 31px; }
  .cookie-emblem i:nth-child(4) { left: 28px; top: 9px; }
  .cookie-banner .cookie-copy strong { font-size: 14px; }
  .cookie-banner .cookie-copy p { font-size: 10px; }
  .cookie-actions .button { min-height: 42px; padding: 9px 7px; }
  .feature-card, .feature-card-care { min-height: 300px; padding-right: 112px; }
  .feature-cutout-character { width: 155px; height: 245px; }
  .challenge-trophy { top: -48px; right: -8px; width: 100px; height: 92px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-intro-cutout,
  .story-curator,
  .story-token-trail,
  .faq-heading > img { animation: none !important; transform: none; }
}
