:root {
  color-scheme: dark;
  --ink: #17121f;
  --ink-deep: #100c16;
  --plum: #291a38;
  --plum-soft: #3a2850;
  --violet: #584080;
  --coral: #ff8667;
  --coral-soft: #ffa994;
  --mint: #9df0d0;
  --mint-deep: #55c9a7;
  --ivory: #fff5e4;
  --lavender: #c4b8d1;
  --muted: #91839f;
  --line: rgba(255, 245, 228, .14);
  --line-strong: rgba(157, 240, 208, .35);
  --panel: rgba(41, 26, 56, .72);
  --panel-solid: #251832;
  --danger: #ffb1a0;
  --shadow: 0 24px 80px rgba(7, 4, 11, .28);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --max: 1240px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 15% 0%, rgba(255, 134, 103, .11), transparent 34%), radial-gradient(circle at 86% 12%, rgba(157, 240, 208, .08), transparent 30%), linear-gradient(145deg, #17121f 0%, #1c1425 55%, #120d18 100%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(23, 18, 31, .84);
  backdrop-filter: blur(18px);
}
.nav-wrap { max-width: var(--max); min-height: 80px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 28px; }
.brand-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-link img { display: block; width: 176px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link { padding: 10px 13px; border-radius: 999px; color: var(--lavender); font-size: .84rem; font-weight: 700; letter-spacing: .02em; transition: background .2s ease, color .2s ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ivory); background: rgba(255,255,255,.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.balance-chip { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 9px 13px; border: 1px solid rgba(157,240,208,.28); border-radius: 999px; background: rgba(157,240,208,.08); color: var(--mint); font-size: .78rem; font-weight: 800; white-space: nowrap; }
.balance-chip span { color: var(--ivory); }
.account-button, .menu-button { border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--ivory); }
.account-button { min-height: 42px; padding: 9px 15px; border-radius: 999px; font-weight: 800; font-size: .82rem; }
.account-button:hover { border-color: var(--mint); color: var(--mint); }
.menu-button { display: none; width: 43px; height: 43px; border-radius: 50%; }

.page-shell { min-height: calc(100vh - 80px); overflow: hidden; }
.container { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--mint); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; line-height: 1.02; }
h1 { font-size: clamp(3.1rem, 7vw, 6.8rem); max-width: 780px; margin-bottom: 22px; }
h2 { font-size: clamp(2.3rem, 4vw, 4.4rem); margin-bottom: 15px; }
h3 { letter-spacing: -.025em; line-height: 1.15; }
.lede { max-width: 600px; color: var(--lavender); font-size: 1.05rem; }
.small-copy { color: var(--muted); font-size: .86rem; }
.muted { color: var(--muted); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 49px; padding: 12px 19px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; font-size: .86rem; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: #221020; box-shadow: 0 14px 32px rgba(255,134,103,.2); }
.button-primary:hover { background: var(--coral-soft); }
.button-secondary { border-color: rgba(157,240,208,.33); background: rgba(157,240,208,.07); color: var(--mint); }
.button-secondary:hover { border-color: var(--mint); background: rgba(157,240,208,.14); }
.button-quiet { padding-inline: 0; border-color: transparent; color: var(--mint); background: transparent; }
.button-quiet:hover { transform: none; color: var(--ivory); }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; padding: 78px 0 92px; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 54% 48%, rgba(88,64,128,.32), transparent 34%), linear-gradient(96deg, rgba(23,18,31,.2), rgba(23,18,31,.72) 72%, rgba(23,18,31,.94)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-right: 30px; }
.hero-copy h1 { color: var(--ivory); }
.hero-copy h1 em { color: var(--mint); font-style: normal; }
.hero-copy .lede { font-size: 1.12rem; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--lavender); font-size: .78rem; }
.hero-note b { color: var(--coral); font-size: 1rem; }
.hero-scene { min-height: 530px; position: relative; display: grid; place-items: center; }
.scene-aura { position: absolute; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(157,240,208,.23), rgba(255,134,103,.07) 38%, transparent 70%); filter: blur(2px); animation: aura 12s ease-in-out infinite alternate; }
.hero-illustration { position: relative; z-index: 1; width: min(100%, 600px); height: auto; filter: drop-shadow(0 34px 36px rgba(4,2,8,.42)); }
.hero-illustration .beam { transform-origin: 50% 40%; animation: beam 9s ease-in-out infinite alternate; }
.hero-illustration .leaf { transform-origin: 50% 100%; animation: leaf 8s ease-in-out infinite alternate; }
.scene-label { position: absolute; left: 5%; bottom: 8%; z-index: 2; width: 180px; padding: 15px; border: 1px solid rgba(157,240,208,.24); border-radius: 16px; background: rgba(23,18,31,.68); box-shadow: var(--shadow); color: var(--lavender); font-size: .75rem; }
.scene-label strong { display: block; margin-bottom: 4px; color: var(--ivory); font-size: .92rem; }

.compliance-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(16,12,22,.5); }
.compliance-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; padding: 18px 0; }
.compliance-item { display: flex; gap: 12px; color: var(--lavender); font-size: .78rem; }
.compliance-item b { color: var(--coral); }

.section { padding: 110px 0; }
.section-tight { padding: 76px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 38px; }
.section-head > div:first-child { max-width: 690px; }
.section-head p { max-width: 460px; margin: 0; color: var(--muted); }
.surface { border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(58,40,80,.76), rgba(29,19,41,.76)); box-shadow: var(--shadow); }
.lens-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; min-height: 380px; padding: 42px; }
.lens-panel::after { content: ''; position: absolute; width: 270px; height: 270px; right: -90px; bottom: -120px; border-radius: 50%; background: rgba(255,134,103,.18); filter: blur(35px); }
.lens-copy { position: relative; z-index: 1; }
.lens-copy h2 { max-width: 430px; }
.lens-controls { position: relative; z-index: 1; display: grid; gap: 12px; align-content: center; }
.lens-option { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.035); color: var(--ivory); text-align: left; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.lens-option:hover, .lens-option[aria-pressed="true"] { border-color: var(--mint); background: rgba(157,240,208,.1); transform: translateX(5px); }
.lens-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,134,103,.18); color: var(--coral); font-size: 1.2rem; }
.lens-option strong { display: block; margin-bottom: 2px; }
.lens-option small { color: var(--muted); }
.lens-status { margin-top: 16px; color: var(--mint); font-size: .82rem; }

.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.story-card { position: relative; min-height: 360px; overflow: hidden; padding: 34px; }
.story-card h3 { max-width: 360px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.story-card p { max-width: 410px; color: var(--lavender); }
.story-card-primary { background: linear-gradient(140deg, rgba(88,64,128,.84), rgba(43,27,59,.82)); }
.story-card-primary::after { content: ''; position: absolute; width: 340px; height: 340px; right: -100px; bottom: -160px; border: 1px solid rgba(157,240,208,.42); border-radius: 50%; box-shadow: 0 0 0 24px rgba(157,240,208,.05), 0 0 0 48px rgba(157,240,208,.04); }
.story-card-secondary { background: linear-gradient(140deg, rgba(255,134,103,.19), rgba(41,26,56,.8)); }
.story-mark { position: absolute; right: 28px; top: 28px; width: 80px; height: 80px; border: 1px solid rgba(157,240,208,.4); border-radius: 50% 50% 45% 55%; transform: rotate(22deg); }
.story-mark::after { content: ''; position: absolute; left: 38px; top: 10px; width: 1px; height: 60px; background: var(--mint); transform: rotate(21deg); }
.arrow-link { position: absolute; right: 32px; bottom: 30px; color: var(--mint); font-weight: 800; font-size: .83rem; }

.catalogue-empty { display: grid; grid-template-columns: 1fr .75fr; gap: 28px; align-items: center; min-height: 360px; padding: 38px; }
.catalogue-empty h3 { max-width: 420px; font-family: var(--serif); font-size: 2.5rem; font-weight: 400; }
.drawer-illustration { position: relative; min-height: 240px; border: 1px solid rgba(157,240,208,.25); border-radius: 24px; background: linear-gradient(135deg, rgba(157,240,208,.12), rgba(255,134,103,.1)); overflow: hidden; }
.drawer-illustration::before, .drawer-illustration::after { content: ''; position: absolute; border: 1px solid rgba(255,245,228,.2); border-radius: 16px; transform: rotate(-8deg); }
.drawer-illustration::before { inset: 42px 48px 48px 38px; }
.drawer-illustration::after { inset: 62px 24px 28px 63px; transform: rotate(8deg); border-color: rgba(157,240,208,.3); }
.drawer-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 28px var(--coral); }
.drawer-dot.one { left: 26%; top: 31%; }.drawer-dot.two { right: 28%; bottom: 26%; background: var(--mint); box-shadow: 0 0 28px var(--mint); }

.care-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: stretch; }
.care-panel { padding: 36px; }
.care-panel h2 { max-width: 420px; }
.care-list { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.care-list li { display: flex; gap: 11px; align-items: start; color: var(--lavender); font-size: .88rem; }
.care-list li::before { content: '✦'; color: var(--coral); }






.page-hero { padding: 90px 0 56px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 760px; font-size: clamp(3rem, 7vw, 6rem); }
.page-body { padding: 64px 0 120px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 54px; }
.prose { max-width: 770px; color: var(--lavender); }
.prose h2 { margin-top: 48px; color: var(--ivory); font-size: 2.25rem; }.prose h3 { margin-top: 30px; color: var(--ivory); }.prose p { margin-bottom: 18px; }.prose ul { padding-left: 22px; }.prose li { margin-bottom: 8px; }
.side-card { align-self: start; position: sticky; top: 108px; padding: 24px; }.side-card h3 { margin-top: 0; }.side-card a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--lavender); font-size: .84rem; }.side-card a:hover { color: var(--mint); }

.form-shell { max-width: 720px; padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; margin-bottom: 17px; }.field-full { grid-column: 1 / -1; }.field label { color: var(--lavender); font-size: .82rem; font-weight: 700; }.field small { color: var(--muted); font-size: .74rem; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px; background: rgba(16,12,22,.45); color: var(--ivory); transition: border-color .2s ease, box-shadow .2s ease; }.field textarea { min-height: 132px; resize: vertical; }.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(157,240,208,.12); outline: none; }
.check-line { display: flex; gap: 10px; align-items: start; color: var(--lavender); font-size: .82rem; }.check-line input { margin-top: 5px; accent-color: var(--coral); }
.form-status { min-height: 24px; margin: 11px 0 0; color: var(--mint); font-size: .82rem; }.form-status.error { color: var(--danger); }

.auth-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; align-items: stretch; }
.auth-aside { min-height: 420px; padding: 34px; background: linear-gradient(155deg, rgba(255,134,103,.18), rgba(41,26,56,.8)); }.auth-aside h2 { max-width: 360px; }.auth-aside p { max-width: 390px; color: var(--lavender); }
.auth-form { padding: 34px; }
.auth-form h2 { font-size: 2.5rem; }

.account-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; }.account-card { padding: 32px; }.account-card h2 { font-size: 2.4rem; }.credit-number { margin: 18px 0 4px; color: var(--mint); font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; }.account-meta { color: var(--muted); font-size: .78rem; }.activity-list { display: grid; gap: 0; margin: 20px 0 0; border-top: 1px solid var(--line); }.activity-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }.activity-row strong { display: block; font-size: .87rem; }.activity-row small { color: var(--muted); }.activity-award { color: var(--mint); font-weight: 850; }.activity-cost { color: var(--coral); font-weight: 850; }


.empty-state { min-height: 270px; display: grid; place-items: center; padding: 34px; text-align: center; }.empty-state h2 { font-size: 2.8rem; }.empty-state p { max-width: 470px; color: var(--lavender); }
.notice { padding: 16px 18px; border-left: 3px solid var(--coral); border-radius: 0 13px 13px 0; background: rgba(255,134,103,.08); color: var(--lavender); font-size: .86rem; }
.noscript-card { width: min(650px, calc(100% - 40px)); margin: 100px auto; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel-solid); }

.site-footer { position: relative; margin-top: 40px; padding: 72px 0 28px; border-top: 1px solid var(--line); background: rgba(11,8,15,.5); overflow: hidden; }.site-footer::before { content: ''; position: absolute; left: 0; right: 0; top: 27px; height: 1px; background: linear-gradient(90deg, transparent, rgba(157,240,208,.3), transparent); }.footer-grid { display: grid; grid-template-columns: 1.3fr .75fr .75fr .8fr; gap: 32px; position: relative; }.footer-lead { max-width: 390px; }.footer-lead img { width: 190px; margin-bottom: 20px; }.footer-lead p { color: var(--muted); font-size: .85rem; }.footer-col h3 { margin: 0 0 13px; color: var(--coral); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }.footer-col a { display: block; margin: 7px 0; color: var(--lavender); font-size: .82rem; }.footer-col a:hover { color: var(--mint); }.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }

.mobile-drawer { display: none; }.mobile-drawer.is-open { display: block; }.mobile-drawer.is-open .surface { position: fixed; right: 18px; top: 76px; z-index: 30; display: grid; min-width: 220px; gap: 6px; padding: 15px; background: #251832; box-shadow: 0 20px 50px rgba(0,0,0,.45); }.mobile-drawer.is-open a { padding: 11px 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 40; max-width: 330px; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 14px; background: #241730; box-shadow: var(--shadow); color: var(--ivory); font-size: .84rem; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }.toast.visible { opacity: 1; transform: translateY(0); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.catalogue-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.catalogue-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.game-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(58,40,80,.8), rgba(29,19,41,.84)); box-shadow: var(--shadow); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.game-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--game-accent) 70%, white 10%); box-shadow: 0 30px 90px rgba(7,4,11,.4); }
.game-cover { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: linear-gradient(135deg, var(--game-accent), var(--game-accent-2)); }
.game-cover::after { content: ''; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(16,12,22,.72)); pointer-events: none; }
.game-cover img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.game-card:hover .game-cover img { transform: scale(1.045); }
.game-cover-badge { position: absolute; left: 15px; bottom: 14px; z-index: 1; padding: 6px 9px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(16,12,22,.58); color: var(--ivory); font-size: .68rem; font-weight: 800; letter-spacing: .05em; }
.game-card-body { padding: 20px 20px 21px; }.game-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 11px; }.game-card-tags span { color: var(--game-accent); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }.game-card-tags span + span::before { content: '·'; margin-right: 6px; color: var(--muted); }
.game-card h3 { margin: 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }.game-card h3 a:hover { color: var(--game-accent); }.game-card p { min-height: 72px; margin: 10px 0 18px; color: var(--lavender); font-size: .82rem; }.game-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; }.game-card-foot .arrow-link { position: static; color: var(--game-accent); font-size: .74rem; white-space: nowrap; }.game-card-compact p { min-height: 88px; }.game-card-compact .game-card-body { padding: 16px; }.game-card-compact h3 { font-size: 1.38rem; }
.game-theme-glasshouse-sunrise { --game-accent: #9df0d0; --game-accent-2: #ff8667; }.game-theme-sunroom-hold { --game-accent: #f5c76d; --game-accent-2: #77e1c1; }.game-theme-moonlit-shift { --game-accent: #bda9ff; --game-accent-2: #7bd7ff; }.game-theme-orchard-cascade { --game-accent: #ff9e7f; --game-accent-2: #a6e98c; }
.collection-footer { display: flex; gap: 18px; align-items: center; justify-content: center; margin-top: 34px; }.game-loading { min-height: 230px; display: grid; place-content: center; padding: 30px; text-align: center; }.game-loading h2, .game-loading h3 { margin-bottom: 7px; font-family: var(--serif); font-weight: 400; }.game-empty { grid-column: 1 / -1; }
.catalogue-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding: 14px; }.search-field { flex: 1 1 300px; }.search-field input { width: 100%; min-height: 47px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(16,12,22,.45); color: var(--ivory); }.search-field input:focus { border-color: var(--mint); outline: none; box-shadow: 0 0 0 3px rgba(157,240,208,.12); }.game-filters { display: flex; flex-wrap: wrap; justify-content: end; gap: 7px; }.filter-button { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.035); color: var(--lavender); font-size: .74rem; }.filter-button[aria-pressed="true"], .filter-button:hover { border-color: var(--mint); background: rgba(157,240,208,.1); color: var(--mint); }

.game-root { min-height: 700px; }.game-layout { display: grid; grid-template-columns: minmax(0, 1.36fr) minmax(285px, .64fr); gap: 24px; }.game-player { min-width: 0; padding: 25px; background: linear-gradient(150deg, rgba(58,40,80,.85), rgba(25,16,36,.92)); }.game-player-head { display: flex; justify-content: space-between; gap: 22px; align-items: start; margin-bottom: 24px; }.game-player-head h2 { margin: 4px 0 6px; font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 400; }.game-player-head p { max-width: 650px; margin: 0; color: var(--lavender); font-size: .88rem; }.game-status-pill { flex: 0 0 auto; padding: 8px 11px; border: 1px solid color-mix(in srgb, var(--game-accent) 45%, transparent); border-radius: 999px; color: var(--game-accent); font-size: .67rem; font-weight: 800; white-space: nowrap; }
.reel-board { position: relative; display: grid; grid-template-columns: 22px 1fr; gap: 12px; min-height: 420px; padding: 26px 22px 25px 15px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--game-accent) 34%, white 5%); border-radius: 25px; background: radial-gradient(circle at 50% 25%, color-mix(in srgb, var(--game-accent) 22%, transparent), transparent 43%), linear-gradient(145deg, #171220, #2c1e3c); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 20px 45px rgba(4,2,8,.3); }.board-glow { position: absolute; width: 55%; height: 35%; top: -15%; left: 22%; border-radius: 50%; background: var(--game-accent); opacity: .12; filter: blur(44px); pointer-events: none; }.reel-row-labels { display: grid; grid-template-rows: repeat(3, 1fr); align-items: center; color: var(--muted); font-size: .64rem; font-weight: 800; }.reel-columns { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; min-width: 0; }.reel { min-width: 0; padding: 6px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(8,6,13,.58); }.reel-viewport { height: 362px; overflow: hidden; border-radius: 9px; }.reel-track { --reel-cell: 110px; display: grid; grid-template-rows: repeat(9, var(--reel-cell)); grid-auto-rows: var(--reel-cell); transform: translateY(calc(var(--reel-cell) * -3)); will-change: transform; }.reel-track.spinning { animation: reelTravel .42s linear infinite; }.reel-symbol { display: grid; place-items: center; padding: 8px; border-bottom: 1px solid rgba(255,255,255,.05); background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)); }.reel-symbol img { display: block; width: 80%; height: 80%; object-fit: contain; filter: drop-shadow(0 9px 10px rgba(0,0,0,.28)); }.reel-symbol.winner { position: relative; z-index: 1; background: radial-gradient(circle, color-mix(in srgb, var(--game-accent) 42%, transparent), rgba(255,255,255,.08)); box-shadow: inset 0 0 0 2px var(--game-accent), 0 0 25px color-mix(in srgb, var(--game-accent) 35%, transparent); animation: winningCell 1s ease-in-out 2; }
.payline-overlay { position: absolute; z-index: 2; left: 49px; right: 22px; top: 28px; bottom: 25px; width: calc(100% - 71px); height: calc(100% - 53px); pointer-events: none; overflow: visible; }.win-line { fill: none; stroke: var(--game-accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 4px var(--game-accent)); opacity: .86; animation: lineReveal .5s ease-out both; }.win-line.line-1 { stroke: var(--game-accent-2); opacity: .7; }.win-line.line-2 { stroke: var(--ivory); opacity: .58; }
.game-message { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; min-height: 48px; margin: 18px 0 12px; color: var(--mint); font-size: .82rem; }.game-message.error { color: var(--danger); }.game-controls { display: flex; flex-wrap: wrap; align-items: end; gap: 9px; }.stake-control { display: grid; gap: 5px; min-width: 200px; color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.stake-control select { min-height: 47px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 12px; background: rgba(16,12,22,.65); color: var(--ivory); }.stake-control select:focus { border-color: var(--mint); outline: none; }.sound-toggle { min-height: 47px; }.spin-button { min-width: 140px; min-height: 47px; margin-left: auto; }.spin-button:disabled { cursor: not-allowed; opacity: .55; }.spin-icon { display: inline-grid; place-items: center; font-size: 1.25rem; transition: transform .5s ease; }.spin-button.is-spinning .spin-icon { animation: spinIcon .75s linear infinite; }.game-auth-note { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; margin-top: 17px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }.game-auth-note .button { min-height: 39px; }.game-side { display: grid; align-content: start; gap: 20px; }.game-feature { padding: 24px; border-color: color-mix(in srgb, var(--game-accent) 34%, transparent); }.game-feature h3 { margin: 5px 0 7px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }.game-feature p { margin: 0; color: var(--lavender); font-size: .84rem; }.feature-progress { height: 5px; margin-top: 22px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }.feature-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--game-accent), var(--game-accent-2)); transition: width .65s ease; }.game-feature.feature-live .feature-progress span { width: 100%; }.game-feature small { display: block; margin-top: 10px; color: var(--muted); font-size: .7rem; }.game-feature.feature-live { box-shadow: 0 0 0 1px color-mix(in srgb, var(--game-accent) 30%, transparent), 0 18px 45px color-mix(in srgb, var(--game-accent) 13%, transparent); }
.game-cover-side { overflow: hidden; }.game-cover-side > img { display: block; width: 100%; aspect-ratio: 1.45; object-fit: cover; }.game-cover-side-copy { padding: 21px; }.game-cover-side-copy h3 { margin: 5px 0 7px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }.game-cover-side-copy p { margin: 0; color: var(--lavender); font-size: .78rem; }.game-boundary { display: grid; gap: 3px; padding: 15px 17px; border-color: rgba(255,134,103,.28); color: var(--coral-soft); font-size: .72rem; }.game-boundary span { color: var(--muted); }.game-root .empty-state { min-height: 500px; }

@keyframes reelTravel { from { transform: translateY(calc(var(--reel-cell) * -3)); } to { transform: translateY(calc(var(--reel-cell) * -6)); } }
@keyframes winningCell { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
@keyframes lineReveal { from { stroke-dasharray: 0 120; opacity: 0; } to { stroke-dasharray: 120 0; opacity: .86; } }
@keyframes spinIcon { to { transform: rotate(360deg); } }

@keyframes aura { from { transform: scale(.96); opacity: .78; } to { transform: scale(1.05); opacity: 1; } }
@keyframes beam { from { transform: rotate(-2deg) scale(.98); opacity: .77; } to { transform: rotate(2deg) scale(1.02); opacity: 1; } }
@keyframes leaf { from { transform: rotate(-1deg); } to { transform: rotate(2deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } }
@media (max-width: 980px) { .hero-grid, .story-grid, .care-grid, .auth-layout, .account-grid, .game-layout { grid-template-columns: 1fr; }.catalogue-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }.hero { padding-top: 56px; }.hero-copy { padding-right: 0; }.hero-scene { min-height: 430px; }.footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }.footer-grid .footer-col:last-child { grid-column: 2 / -1; }.content-layout { grid-template-columns: 1fr; }.side-card { position: static; } }
@media (max-width: 760px) { .container { width: min(100% - 36px, var(--max)); }.nav-wrap { min-height: 68px; padding: 11px 18px; }.brand-link img { width: 158px; }.nav-links, .nav-actions .balance-chip { display: none; }.nav-actions { margin-left: auto; }.menu-button { display: block; }.account-button { padding-inline: 13px; }.hero { min-height: auto; padding: 56px 0 58px; }.hero-grid { gap: 18px; }.hero-scene { min-height: 320px; margin-top: 4px; }.scene-aura { width: 310px; height: 310px; }.scene-label { left: 0; bottom: 0; }.compliance-inner { grid-template-columns: 1fr; gap: 9px; padding: 16px 0; }.section { padding: 75px 0; }.section-tight { padding: 52px 0; }.section-head { display: block; margin-bottom: 26px; }.section-head p { margin-top: 12px; }.lens-panel, .catalogue-empty { grid-template-columns: 1fr; padding: 25px; }.lens-panel { min-height: 0; }.story-card { min-height: 320px; padding: 26px; }.form-shell, .auth-form, .auth-aside, .account-card { padding: 25px; }.form-grid { grid-template-columns: 1fr; gap: 0; }.field-full { grid-column: auto; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }.footer-grid .footer-col:last-child { grid-column: auto; }.footer-bottom { display: block; }.footer-bottom span { display: block; margin-top: 8px; }.page-hero { padding: 58px 0 40px; }.page-body { padding: 45px 0 80px; }.catalogue-grid, .catalogue-grid.compact { grid-template-columns: 1fr; }.catalogue-toolbar { display: block; }.game-filters { justify-content: start; margin-top: 12px; }.game-player { padding: 17px; }.game-player-head { display: block; }.game-status-pill { display: inline-block; margin-top: 14px; }.reel-board { min-height: 300px; grid-template-columns: 17px 1fr; gap: 7px; padding: 15px 10px 15px 8px; }.reel-columns { gap: 4px; }.reel { padding: 3px; border-radius: 8px; }.reel-viewport { height: 252px; }.reel-track { --reel-cell: 76px; }.reel-symbol { padding: 4px; }.payline-overlay { left: 28px; right: 10px; top: 17px; bottom: 15px; width: calc(100% - 38px); height: calc(100% - 32px); }.game-controls { align-items: stretch; }.stake-control { min-width: 100%; }.game-controls .button { flex: 1 1 auto; }.spin-button { margin-left: 0; }.game-auth-note { display: block; }.game-auth-note span { display: block; margin-top: 12px; } }
@media (max-width: 460px) { h1 { font-size: 3.2rem; }.hero-copy .lede { font-size: 1rem; }.button-row { align-items: stretch; flex-direction: column; }.button { width: 100%; }.hero-scene { min-height: 275px; }.brand-link img { width: 145px; }.footer-grid { grid-template-columns: 1fr; }.footer-grid .footer-col:last-child { grid-column: auto; }.footer-lead img { width: 170px; } }
