/* The "night" homepage. Loaded ONLY by / (after /style.css and /scrollcraft.css), so nothing in
   here reaches the 33 topic pages. Class names are the page's own; the shared style.css rules for
   header/hero/btn are not used here, and the few element rules it has (body, header, img) are
   overridden below by class selectors. Built 2026-09-03 from scrollcraft/builds/grg-night. */
:root {
  --sc-canvas: #0B1410; --sc-surface: #13221B; --sc-ink: #F2EADB; --sc-ink-soft: #A8B5A6;
  --sc-accent: #E0A64B; --sc-accent-ink: #14110A;
  --sc-font-display: "Fraunces", Georgia, serif; --sc-font-text: "Outfit", system-ui, sans-serif;
  --line: #24372D; --felt: #173B2C; --bar-h: 4.2rem; --px: 50vw; --py: 40vh;
  --ease: cubic-bezier(.2,.8,.2,1);
}
html { scroll-behavior: smooth; }
body { background: var(--sc-canvas); color: var(--sc-ink); font-family: var(--sc-font-text); }
h1, h2, h3 { font-variation-settings: "opsz" 144; }

/* ---------- page life ---------- */
.lamp-spill { position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(38rem 30rem at var(--px) var(--py), rgba(224,166,75,.10), rgba(224,166,75,.03) 40%, transparent 70%); }
.dust { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .9; }

/* ---------- bar ---------- */
header.site-bar { position: fixed; inset: 0 0 auto 0; z-index: 30; height: var(--bar-h); display: flex; align-items: center; border: 0; backdrop-filter: none;
  background: linear-gradient(to bottom, rgba(11,20,16,.92), rgba(11,20,16,.55) 70%, transparent); }
.bar-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.wordmark { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--sc-font-display); font-weight: 700; font-size: 1.15rem; color: var(--sc-ink); text-decoration: none; letter-spacing: -0.01em; white-space: nowrap; }
.wordmark em { font-style: normal; color: var(--sc-accent); }
.wordmark img { width: 28px; height: 28px; border-radius: 7px; }
.cta { display: inline-block; font-family: var(--sc-font-text); font-weight: 600; color: var(--sc-accent-ink); background: var(--sc-accent);
  padding: .8em 1.5em; border-radius: 999px; text-decoration: none; white-space: nowrap; box-shadow: 0 10px 24px -12px rgba(224,166,75,.55);
  transition: transform 140ms var(--sc-ease-out), box-shadow 140ms var(--sc-ease-out); }
.cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -12px rgba(224,166,75,.7); }
.cta:active { transform: translateY(1px); }
.cta--bar { font-size: .85rem; padding: .6em 1.2em; }
/* Δύο κουμπιά στη μπάρα από 6/9/2026: το ghost «Browse N games» (δικός μας κατάλογος) και
   το γεμάτο «Get the free pack». Το ghost πρώτο επειδή διαβάζεται πρώτο, το γεμάτο δεύτερο
   επειδή τραβάει το μάτι — έτσι φαίνονται και τα δύο αντί να κερδίζει το ένα. */
.bar-cta { display: flex; align-items: center; gap: .5rem; }
.cta--ghost { background: transparent; color: var(--sc-ink); box-shadow: inset 0 0 0 1px rgba(242,234,219,.35); }
.cta--ghost:hover { box-shadow: inset 0 0 0 1px rgba(242,234,219,.7); }
.cta-row { display: flex; gap: var(--sc-3); flex-wrap: wrap; align-items: center; }

/* ---------- sections ---------- */
.cut { position: relative; display: flex; align-items: center; overflow: hidden; }
.cut--surface { background: var(--sc-surface); } .cut--deep { background: #0D1813; }
.word { font-family: var(--sc-font-display); font-weight: 700; font-size: clamp(4rem, 14vw, 12rem); line-height: .9; letter-spacing: -0.04em; margin: 0; color: var(--sc-ink); opacity: 0; }
.word em { font-style: normal; color: var(--sc-accent); }
.on .word { animation: land .7s var(--ease) both; }
@keyframes land { from { opacity: 0; transform: translateY(28px) scale(.94); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* ---------- the room ---------- */
.room-sec { min-height: 100vh; position: relative; overflow: hidden; --mx: var(--sc-mx, .5); --my: var(--sc-my, .5); }
.layer { position: absolute; inset: -12% 0; pointer-events: none; will-change: transform; }
.layer svg, .layer img { position: absolute; }
.layer > .drift { position: absolute; inset: 0; }
.layer--wall  { transform: translate3d(calc((var(--mx) - .5) * -22px), calc((var(--my) - .5) * -12px), 0); }
.layer--shelf { transform: translate3d(calc((var(--mx) - .5) * -12px), calc((var(--my) - .5) * -6px), 0); }
.layer--hand  { z-index: 3; transform: translate3d(calc((var(--mx) - .5) * 30px), calc((var(--my) - .5) * 16px), 0); }
@keyframes driftA { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-1.2%, 1.4vh, 0); } }
@keyframes driftB { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(1%, -1vh, 0); } }
@keyframes driftC { from { transform: translate3d(0, 0, 0) ; } to { transform: translate3d(0, .8vh, 0); } }
.layer--wall  > .drift { animation: driftA 14s ease-in-out infinite alternate; }
.layer--shelf > .drift { animation: driftB 11s ease-in-out infinite alternate; }
.layer--table > .drift { animation: driftC 9s ease-in-out infinite alternate; }
.wall-svg, .shelf-svg, .table-svg { width: 100%; height: 100%; left: 0; top: 0; max-width: none; }
@keyframes breathe { 0%,100% { opacity: .92; transform: scale(1); } 37% { opacity: 1; transform: scale(1.025); } 61% { opacity: .95; transform: scale(.99); } 82% { opacity: 1; transform: scale(1.015); } }
@keyframes flicker { 0%,100% { transform: scaleY(1) skewX(0deg); } 23% { transform: scaleY(1.08) skewX(-3deg); } 41% { transform: scaleY(.94) skewX(2deg); } 67% { transform: scaleY(1.05) skewX(3deg); } 88% { transform: scaleY(.97) skewX(-2deg); } }
@keyframes smoke { 0% { stroke-dashoffset: 0; opacity: 0; } 15% { opacity: .35; } 100% { stroke-dashoffset: -420; opacity: 0; } }
.cone  { transform-origin: 50% 0%; animation: breathe 4.3s ease-in-out infinite; }
.cone2 { transform-origin: 50% 0%; animation: breathe 3.1s ease-in-out infinite reverse; }
.flame { transform-origin: 50% 100%; transform-box: fill-box; animation: flicker .9s ease-in-out infinite; }
.flame.b { animation-duration: 1.27s; animation-delay: -.4s; }
/* the candle halos were meant to sit at 12-14% opacity; breathe drove them to 92% and painted a solid amber
   oval on the table (visible in every frame since the morning build). They now breathe within their own range. */
@keyframes glowBreathe { 0%,100% { opacity: .11; transform: scale(1); } 50% { opacity: .17; transform: scale(1.06); } }
.glow   { transform-origin: 50% 100%; transform-box: fill-box; animation: glowBreathe 2.2s ease-in-out infinite; }
.smoke  { stroke-dasharray: 60 360; animation: smoke 7s linear infinite; }
.smoke.b { animation-delay: -3.4s; animation-duration: 8.5s; }
@keyframes sway { from { transform: rotate(-1.4deg); } to { transform: rotate(1.4deg); } }
.hand { position: absolute; left: 62%; bottom: 26%; width: 0; height: 0; perspective: 900px; animation: sway 6s ease-in-out infinite alternate; }
@keyframes fan { from { transform: rotateX(18deg) rotate(0deg) translateY(40px); opacity: 0; } to { transform: rotateX(18deg) rotate(var(--a)) translateY(0); opacity: 1; } }
.hand img { position: absolute; width: 220px; max-width: none; height: auto; border-radius: 12px; left: -110px; bottom: 0; transform-origin: 50% 120%;
  box-shadow: 0 30px 50px -18px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.06);
  transform: rotateX(18deg) rotate(var(--a)); animation: fan 1.1s var(--ease) both; animation-delay: calc(.35s + var(--i) * 110ms); }
.hand img:nth-child(1) { --a: -22deg; --i: 0; } .hand img:nth-child(2) { --a: -11deg; --i: 1; } .hand img:nth-child(3) { --a: 0deg; --i: 2; } .hand img:nth-child(4) { --a: 11deg; --i: 3; } .hand img:nth-child(5) { --a: 22deg; --i: 4; }
.room-shade { position: absolute; inset: 0; z-index: 4; pointer-events: none; background: linear-gradient(90deg, rgba(11,20,16,.94) 0%, rgba(11,20,16,.84) 38%, rgba(11,20,16,.28) 60%, transparent 78%); }
.room-floor { position: absolute; inset: auto 0 0 0; height: 220px; z-index: 2; pointer-events: none; background: linear-gradient(to bottom, transparent, var(--sc-canvas)); }
.room-copy { position: absolute; z-index: 5; left: var(--sc-gutter); bottom: clamp(3rem, 12vh, 9rem); max-width: 36rem; }
.room-copy .sc-label { color: var(--sc-accent); margin-bottom: var(--sc-4); }
.room-copy p.sc-body { margin-top: var(--sc-5); font-size: 1.05rem; }

/* ---------- free packs ---------- */
.free { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sc-8); align-items: start; }
.free-head { margin-bottom: var(--sc-7); max-width: 40rem; }
.free-head .sc-label { color: var(--sc-accent); }
.pack { display: grid; grid-template-columns: 11rem 1fr; gap: var(--sc-5); align-items: center; }
.pack .shots { position: relative; aspect-ratio: 4 / 5; }
.pack .shots img { position: absolute; width: 76%; max-width: none; height: auto; border-radius: 10px; box-shadow: 0 24px 40px -18px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.06); }
.pack .shots img:first-child { left: 0; top: 0; z-index: 2; transform: rotate(-4deg); }
.pack .shots img:last-child { right: 0; bottom: 0; transform: rotate(5deg); }
.pack h3 { font-family: var(--sc-font-display); font-weight: 600; font-size: var(--sc-t-xl); line-height: 1.05; margin: 0; letter-spacing: -0.02em; }
.pack .season { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sc-ink-soft); margin: 0 0 var(--sc-2); }
.pack ul { list-style: none; padding: 0; margin: var(--sc-3) 0 0; color: var(--sc-ink-soft); font-size: .95rem; }
.pack li + li { margin-top: .3em; }
.pack .btns { margin-top: var(--sc-4); }
.pack .note { margin: var(--sc-3) 0 0; font-size: .8rem; color: var(--sc-ink-soft); }

/* ---------- the table ---------- */
.table-sec { min-height: 100vh; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(255,255,255,.06), transparent 70%), radial-gradient(ellipse 120% 90% at 50% 100%, #1D4A37, var(--felt) 60%, #0F2A1F 100%); }
.table-sec::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35; background-image: radial-gradient(rgba(255,255,255,.08) .6px, transparent .7px); background-size: 3px 3px; }
.table-light { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; background: radial-gradient(ellipse 46% 40% at 50% 46%, rgba(224,166,75,.22), rgba(224,166,75,.06) 50%, transparent 72%); transform-origin: 50% 46%; animation: breathe 3.7s ease-in-out infinite; }
.piece { position: absolute; width: 190px; max-width: none; height: auto; border-radius: 8px; opacity: .15;
  transform: translate(var(--ox), var(--oy)) rotate(var(--r0)) scale(1.12); box-shadow: 0 28px 40px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.08) inset; }
@keyframes landPiece {
  from { transform: translate(var(--ox), var(--oy)) rotate(var(--r0)) scale(1.12); opacity: .15; box-shadow: 0 28px 40px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.08) inset; }
  to   { transform: translate(0, 0) rotate(var(--r1)) scale(1); opacity: 1; box-shadow: 0 6px 10px rgba(0,0,0,.75), 0 1px 0 rgba(255,255,255,.08) inset; } }
.on .piece { animation: landPiece .75s var(--ease) both; animation-delay: var(--d); }
.piece--dossier { left: 18%; top: 22%; --d: 0s;    --ox: -70vw; --oy: 0px;  --r0: -18deg; --r1: -7deg; }
.piece--deck    { left: 58%; top: 26%; --d: .35s;  --ox: 70vw;  --oy: 0px;  --r0: 14deg;  --r1: 5deg;  z-index: 2; }
.piece--bingo   { left: 40%; top: 52%; --d: .7s;   --ox: 0px;   --oy: 80vh; --r0: 6deg;   --r1: -3deg; }
.piece--hunt    { left: 8%;  top: 56%; --d: 1.05s; --ox: -60vw; --oy: 30vh; --r0: -20deg; --r1: -12deg; }
.piece--score   { left: 72%; top: 58%; --d: 1.4s;  --ox: 60vw;  --oy: 30vh; --r0: 22deg;  --r1: 9deg; }
.die { width: 54px; height: 54px; border-radius: 12px; z-index: 6; }
@keyframes tumble { from { transform: translate(var(--ox), var(--oy)) rotate(var(--r0)) scale(1.3); opacity: 0; box-shadow: 0 30px 40px rgba(0,0,0,.4); } 60% { opacity: 1; } to { transform: translate(0,0) rotate(var(--r1)) scale(1); opacity: 1; box-shadow: 0 4px 8px rgba(0,0,0,.6); } }
.on .die { animation: tumble 1.1s cubic-bezier(.3,.7,.3,1) both; animation-delay: var(--d); }
.die.d1 { left: 46%; top: 40%; --d: 1.9s;  --ox: 40vw; --oy: -60vh; --r0: -1080deg; --r1: -14deg; }
.die.d2 { left: 52%; top: 44%; --d: 2.1s;  --ox: 46vw; --oy: -70vh; --r0: -900deg;  --r1: 21deg; }
.piece--fan { left: 58%; top: 26%; opacity: 1; transform: rotate(5deg); transform-origin: 40% 100%; box-shadow: 0 18px 36px -14px rgba(0,0,0,.75); }
@keyframes fanOut { from { transform: rotate(5deg) translateX(0); } to { transform: rotate(var(--r1)) translateX(18px); } }
.on .piece--fan { animation: fanOut .6s var(--ease) both; animation-delay: var(--d); }
.piece--fan.f1 { --d: 2.9s; --r1: -14deg; z-index: 3; } .piece--fan.f2 { --d: 3.1s; --r1: 12deg; z-index: 4; } .piece--fan.f3 { --d: 3.3s; --r1: 30deg; z-index: 5; }
.table-copy { position: absolute; z-index: 7; left: var(--sc-gutter); top: 16vh; max-width: 40rem; }
.table-copy .line { position: absolute; top: 0; left: 0; margin: 0; opacity: 0; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
@keyframes lineIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes lineOut { from { opacity: 1; } to { opacity: 0; } }
.on .l1 { animation: lineIn .5s var(--ease) .2s both, lineOut .4s ease 2.5s forwards; }
.on .l2 { animation: lineIn .5s var(--ease) 2.8s both, lineOut .4s ease 4.6s forwards; }
.on .l3 { animation: lineIn .6s var(--ease) 4.9s both; }

/* ---------- the shelf: seven families, twenty-three lines ---------- */
.shelf-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sc-6); flex-wrap: wrap; margin-bottom: var(--sc-6); }
.shelf-total { font-family: var(--sc-font-display); font-weight: 700; font-size: var(--sc-t-3xl); line-height: .9; color: var(--sc-accent); letter-spacing: -0.03em; }
.shelf-total small { display: block; font-family: var(--sc-font-text); font-weight: 400; font-size: .85rem; color: var(--sc-ink-soft); letter-spacing: 0; margin-top: .4em; }
.srch { position: relative; max-width: 40rem; margin: 0 0 var(--sc-7); }
.srch input { width: 100%; font: inherit; font-size: 1rem; color: var(--sc-ink); background: var(--sc-surface); border: 1px solid var(--line); border-radius: 999px; padding: .85em 1.3em; outline: none; }
.srch input:focus { border-color: var(--sc-accent); }
.sres { display: none; position: absolute; left: 0; right: 0; top: calc(100% + .4rem); z-index: 12; background: var(--sc-surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); }
.sres.on { display: block; }
.sres a { display: flex; justify-content: space-between; gap: 1rem; padding: .7em 1.1em; color: var(--sc-ink); text-decoration: none; border-top: 1px solid var(--line); }
.sres a:first-child { border-top: 0; } .sres a:hover { background: rgba(224,166,75,.08); }
.sres .shelf { color: var(--sc-ink-soft); font-size: .85rem; white-space: nowrap; }
.sres .none { padding: .8em 1.1em; color: var(--sc-ink-soft); font-size: .9rem; }
.fams { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: var(--sc-5); }
/* 🕳️ Η ΛΩΡΙΔΑ ΠΕΡΙΣΤΑΣΕΩΝ, 6/9/2026. Εννέα σελίδες κατηγορίας (Halloween, Christmas,
   Thanksgiving, New Year, bridal/baby shower, wedding, anniversary, family night) υπήρχαν
   και δεν τις λινκάριζε καμία σελίδα. Πιο ελαφριά από τις κάρτες επίτηδες: είναι δεύτερος
   τρόπος να διαβάσεις τον ίδιο κατάλογο, όχι δεύτερος κατάλογος. */
.occ { margin-top: var(--sc-7); border-top: 1px solid var(--line); padding-top: var(--sc-6); }
.occ-h { font-family: var(--sc-font-display); font-weight: 600; font-size: var(--sc-t-lg);
  color: var(--sc-ink); margin: 0 0 var(--sc-4); }
.occ-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.occ-row a { display: inline-flex; align-items: baseline; gap: .5rem; text-decoration: none;
  color: var(--sc-ink); background: var(--sc-surface); border: 1px solid var(--line);
  border-radius: 999px; padding: .55em 1.05em; font-size: .95rem; line-height: 1.2;
  transition: border-color .15s, background .15s; }
.occ-row a:hover { border-color: var(--sc-accent); background: rgba(224,166,75,.08); }
.occ-row b { color: var(--sc-accent); font-weight: 700; font-size: .85rem; }
.fam { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; background: var(--sc-surface); box-shadow: 0 -1px 0 rgba(255,255,255,.06), 0 24px 40px -28px rgba(0,0,0,.9); }
.fam figure { margin: 0; aspect-ratio: 16 / 9; overflow: hidden; position: relative; }
/* The covers carry a title band in the top quarter and a format pill at the bottom; a 16:9 crop of a
   4:5 cover shows 45% of its height, so it sits at 30% to 75%: the painted scene, neither text band. */
.fam figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 65%; display: block; max-width: none; }
/* Fade both edges: the bottom into the card, the top so a tall title band on a year-pack cover
   dissolves instead of being cut through. */
.fam figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--sc-surface), transparent 55%), linear-gradient(to bottom, rgba(19,34,27,.97), rgba(19,34,27,.7) 16%, rgba(19,34,27,.25) 32%, transparent 46%); }
.fam .body { padding: var(--sc-4) var(--sc-5) var(--sc-5); display: flex; flex-direction: column; gap: var(--sc-3); flex: 1; }
.fam .top { display: flex; flex-direction: column; align-items: flex-start; gap: .3rem; }
.fam .n { font-family: var(--sc-font-display); font-weight: 700; font-size: var(--sc-t-2xl); line-height: .9; color: var(--sc-accent); letter-spacing: -0.03em; margin: 0; }
.fam h3 { font-family: var(--sc-font-display); font-weight: 600; font-size: 1.35rem; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
.fam .blurb { margin: 0; color: var(--sc-ink-soft); font-size: .92rem; }
.fam ul { list-style: none; padding: 0; margin: var(--sc-2) 0 0; border-top: 1px solid var(--line); }
.fam li a { display: flex; justify-content: space-between; gap: .6rem; padding: .5em 0; color: var(--sc-ink); text-decoration: none; border-bottom: 1px solid var(--line); font-size: .92rem; }
.fam li a:hover { color: var(--sc-accent); }
.fam li a b { font-weight: 500; } .fam li a span { color: var(--sc-ink-soft); }

/* ---------- the marquee ---------- */
.marquee { overflow: hidden; padding-block: var(--sc-7); }
.mq-bar { display: flex; justify-content: flex-end; padding: 0 var(--sc-gutter) var(--sc-3); }
.mq-bar button { font: inherit; font-size: .78rem; color: var(--sc-ink-soft); background: transparent; border: 0; cursor: pointer; padding: .4em .8em; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(242,234,219,.2); }
.mq-bar button:hover { color: var(--sc-ink); }
.track { display: flex; gap: var(--sc-5); width: max-content; animation: slide 48s linear infinite; }
.marquee:hover .track, .marquee.paused .track { animation-play-state: paused; }
@keyframes slide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.track img { width: clamp(9rem, 15vw, 13rem); height: auto; max-width: none; border-radius: 10px; box-shadow: 0 24px 40px -20px rgba(0,0,0,.8); transform: rotate(calc(var(--r) * 1deg)); }

/* ---------- reviews ---------- */
.rev-wrap { display: grid; grid-template-columns: 1fr 14rem; gap: var(--sc-9); align-items: start; }
.reviews { position: relative; min-height: 20rem; max-width: 60ch; }
.rev { position: absolute; inset: 0; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .5s var(--sc-ease-out), transform .5s var(--sc-ease-out); }
.rev.is-active { opacity: 1; transform: none; pointer-events: auto; }
.rev .st { color: var(--sc-accent); font-size: 1.3rem; letter-spacing: .1em; }
.rev blockquote { margin: var(--sc-3) 0 0; font-family: var(--sc-font-display); font-weight: 600; font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.3; letter-spacing: -0.01em; color: var(--sc-ink); }
.rev .who { margin-top: var(--sc-4); font-size: .85rem; color: var(--sc-ink-soft); }
.rev .who b { color: var(--sc-ink); font-weight: 500; }
.rev-side { align-self: center; }
.rev-side .n { font-family: var(--sc-font-display); font-weight: 700; font-size: var(--sc-t-3xl); line-height: .85; color: var(--sc-accent); letter-spacing: -0.03em; margin: 0; }
.rev-side p { margin: var(--sc-3) 0 0; color: var(--sc-ink-soft); }
.rev-ctrl { display: flex; gap: var(--sc-3); align-items: center; margin-top: var(--sc-5); }
.rev-ctrl button { font: inherit; font-size: .85rem; font-weight: 500; color: var(--sc-ink); background: transparent; border: 0; border-radius: 999px; padding: .55em 1em; cursor: pointer; box-shadow: inset 0 0 0 1px rgba(242,234,219,.35); transition: box-shadow 140ms var(--sc-ease-out), transform 120ms var(--sc-ease-out); }
.rev-ctrl button:hover { box-shadow: inset 0 0 0 1px rgba(242,234,219,.7); }
.rev-ctrl button:active { transform: scale(.97); }
.rev-ctrl .dots { display: flex; gap: .4em; margin-left: var(--sc-2); }
.rev-ctrl .dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(242,234,219,.25); display: block; }
.rev-ctrl .dots i.is-active { background: var(--sc-accent); }

/* ---------- close ---------- */
.close-sec { min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-inline: var(--sc-gutter); }
/* Right padding leaves room for the ApantAI chat bubble, which sits bottom-right on every page. */
.foot { position: absolute; inset: auto 0 0 0; padding: var(--sc-5) 6.5rem var(--sc-5) var(--sc-gutter); font-size: .78rem; color: var(--sc-ink-soft); display: flex; justify-content: space-between; gap: var(--sc-4); flex-wrap: wrap; }
.foot a { color: var(--sc-ink-soft); }

@media (prefers-reduced-motion: reduce) {
  .cone, .cone2, .flame, .glow, .smoke, .table-light, .drift, .hand, .track { animation: none !important; }
  .dust { display: none; }
  .hand img { animation: none; opacity: 1; }
  .on .piece, .on .die, .on .piece--fan { animation-duration: .01s; }
  .rev { transition: none; }
  .on .word { animation: none; opacity: 1; }
}
@media (max-width: 860px) {
  /* The drawn shelf is cut so hard at phone width that its boxes read as flat colour blocks; the
     window, the table with its lamp and the hand of cards carry the room on their own. */
  .layer--shelf { display: none; }
  /* Phone cards are a single wide column, so the cover is shown whole, like the product it is:
     no crop can miss both text bands on every cover, and a cut title reads as a mistake. */
  .fam figure { aspect-ratio: 4 / 5; }
  .fam figure img { object-position: 50% 50%; }
  .fam figure::after { background: linear-gradient(to top, var(--sc-surface), transparent 30%); }
  .wordmark { font-size: 1rem; gap: .4rem; } .wordmark img { width: 24px; height: 24px; }
  .cta--bar { font-size: .78rem; padding: .5em .9em; }
  /* Στο κινητό δύο κουμπιά + wordmark δεν χωράνε σε μία γραμμή. Το ghost «Browse» κρύβεται:
     είναι το ΛΙΓΟΤΕΡΟ αναγκαίο εκεί, γιατί ο ίδιος κατάλογος έρχεται με το scroll λίγο πιο
     κάτω — ενώ το δωρεάν pack είναι ο λόγος που πολλοί μπαίνουν από pin. */
  .bar-cta { gap: .35rem; }
  .bar-cta .cta--ghost { display: none; }
  .table-copy { top: auto; bottom: 7vh; max-width: 88vw; }
  .table-copy .line { font-size: var(--sc-t-xl); position: absolute; bottom: 0; top: auto; }
  .foot { padding-right: 5.5rem; }
  .hand { left: 50%; bottom: 64%; }
  .hand img { width: 150px; left: -75px; }
  .room-shade { background: linear-gradient(to top, rgba(11,20,16,.96) 34%, rgba(11,20,16,.55) 52%, transparent 66%); }
  .room-copy h1 { font-size: var(--sc-t-2xl); }
  .free { grid-template-columns: 1fr; } .pack { grid-template-columns: 1fr; } .pack .shots { max-width: 13rem; }
  .piece { width: 120px; } .die { width: 38px; height: 38px; }
  .rev-wrap { grid-template-columns: 1fr; } .reviews { min-height: 24rem; }
}

/* ---------- the opening: the room lights up (2026-09-03) ----------
   Three states, set on <html> by a two-line script in <head> before anything paints:
   .op-full   first visit in this tab: dark room, the lamp flicks on, a family plays a card and laughs,
              dissolves, the camera sits down, your hand of cards fans in. ~3.3s desktop, ~2.5s phone.
   .op-short  seen it in this tab already: lamp flick, the line, the button glow. Under a second.
   .op-static reduced motion, or no JS at all: the page as it was. Nothing hidden, nothing extra moving.
   Every delay is multiplied by --op, so the phone plays the same film faster. */
:root { --op: 1; }
.layer--fam { transform: translate3d(calc((var(--mx) - .5) * -14px), calc((var(--my) - .5) * -7px), 0); }
.layer--fam > .drift { animation: driftB 12s ease-in-out infinite alternate; }
.fam-svg { width: 100%; height: 100%; left: 0; top: 0; max-width: none; }
.op-card { opacity: 0; }
.op-card { transform-box: fill-box; transform-origin: 50% 50%; }
/* the card that slides onto the felt matches who is playing: a playing card for the family, a clue card
   for the murder mystery party */
.card-clue, .card-couple { display: none; }
html[data-cast="friends"] .card-clue { display: inline; }
html[data-cast="friends"] .card-play { display: none; }
html[data-cast="couple"] .card-couple { display: inline; }
html[data-cast="couple"] .card-play { display: none; }
.op-dark { display: none; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(circle at var(--lx, 79%) var(--ly, 61%), rgba(255,214,130,.28) 0, rgba(6,13,10,.75) 2.2%, #060D0A 6.5%); }
.op-line { margin: var(--sc-5) 0 0; font-family: var(--sc-font-display); font-style: italic; font-weight: 500; font-size: 1.2rem; color: var(--sc-accent); }
/* lights */
.op-full .op-dark { display: block; animation: lightsOn .9s linear calc(.4s * var(--op)) both; }
@keyframes lightsOn { 0%, 12% { opacity: 1; } 16% { opacity: .3; } 24% { opacity: .85; } 33% { opacity: .12; } 42% { opacity: .45; } 56% { opacity: .04; } 100% { opacity: 0; } }
.op-full .bulb { animation: bulbOn .8s linear calc(.4s * var(--op)) both; }
.op-short .bulb { animation: bulbOn .5s linear .1s both; }
@keyframes bulbOn { 0%, 12% { opacity: 0; } 16% { opacity: .9; } 24% { opacity: .15; } 33% { opacity: .9; } 42% { opacity: .5; } 56% { opacity: .95; } 100% { opacity: .9; } }
.op-full .cone  { animation: ignite .7s var(--ease) calc(.45s * var(--op)) both, breathe 4.3s ease-in-out calc(1.15s * var(--op)) infinite; }
.op-full .cone2 { animation: ignite .7s var(--ease) calc(.5s * var(--op)) both, breathe 3.1s ease-in-out calc(1.2s * var(--op)) infinite reverse; }
.op-short .cone { animation: ignite .5s var(--ease) .1s both, breathe 4.3s ease-in-out .6s infinite; }
@keyframes ignite { from { transform: scaleY(.08); } 45% { transform: scaleY(.7); } 60% { transform: scaleY(.5); } to { transform: scaleY(1); } }
.op-full .room-copy { animation: copyIn .8s var(--ease) calc(.5s * var(--op)) both; }
@keyframes copyIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.op-full .lamp-spill, .op-full .dust { animation: fadeIn 1s ease calc(.6s * var(--op)) both; }
@keyframes fadeIn { from { opacity: 0; } }
/* the family: two painted poses, crossfaded at the laugh. Geometry here so the phone can reframe. */
.fam { opacity: 0; transform-box: fill-box; transform-origin: 50% 100%; }
/* x 810 puts the father at the edge of the copy's shade and drops the painting's right-hand cut exactly
   on the window frame; y makes the painted table's far edge (row 780 of 1024) meet our own at y≈582. */
.fam-img { x: 810px; y: 145px; width: 573px; height: 573px; }
/* The murder mystery party was painted with its table edge a little lower (row 795, not 780). */
html[data-cast="friends"] .fam-img, html[data-cast="couple"] .fam-img { y: 137px; }
.fam-p2 { opacity: 0; }
.op-full .fam { animation: figIn .7s var(--ease) calc(.95s * var(--op)) both, famBreathe 3.2s ease-in-out calc(1.65s * var(--op)) infinite alternate, figOut .7s ease-in calc(2.75s * var(--op)) forwards; }
@keyframes figIn { from { opacity: 0; filter: blur(12px); transform: translateY(10px) scale(.985); } to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes figOut { from { opacity: 1; filter: blur(0); transform: none; } to { opacity: 0; filter: blur(10px); transform: translateY(-16px) scale(1.02); } }
@keyframes famBreathe { from { transform: scale(1) translateY(0); } to { transform: scale(1.012) translateY(-2px); } }
.op-full .fam-p1 { animation: poseOut .38s ease-out calc(2.05s * var(--op)) forwards; }
.op-full .fam-p2 { animation: poseIn .38s ease-out calc(2.05s * var(--op)) both; }
@keyframes poseIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes poseOut { from { opacity: 1; } to { opacity: 0; } }
.op-full .fam-glow { animation: glowPulse 2.4s ease-in-out infinite alternate; }
@keyframes glowPulse { from { opacity: .65; } to { opacity: 1; } }
.op-full .op-card { animation: throw .6s cubic-bezier(.2,.7,.3,1) calc(1.6s * var(--op)) both; }
@keyframes throw { 0% { opacity: 0; transform: translate(0, 0) scale(.45) rotate(-28deg); } 12% { opacity: 1; } 55% { transform: translate(-46px, 118px) scale(.86) rotate(-6deg); } 85% { transform: translate(-72px, 168px) scale(1.03) rotate(9deg); } 100% { opacity: 1; transform: translate(-70px, 160px) scale(1) rotate(8deg); } }
.op-full .flame   { animation: flicker .9s ease-in-out infinite, flare .6s ease-out calc(2.1s * var(--op)) 1; }
.op-full .flame.b { animation: flicker 1.27s ease-in-out -.4s infinite, flare .6s ease-out calc(2.1s * var(--op)) 1; }
.op-full .glow    { animation: glowBreathe 2.2s ease-in-out infinite, glowFlare .7s ease-out calc(2.1s * var(--op)) 1; }
@keyframes flare { 0% { transform: scaleY(1); } 40% { transform: scaleY(1.7) skewX(-5deg); } 100% { transform: scaleY(1); } }
@keyframes glowFlare { 0% { transform: scale(1); opacity: .12; } 40% { transform: scale(1.6); opacity: .3; } 100% { transform: scale(1); opacity: .12; } }
/* sit down, your hand, the line, the button */
.op-full .room-sec .layer { animation: sitDown 1.1s var(--ease) calc(2.75s * var(--op)) both; }
@keyframes sitDown { from { translate: 0 0; scale: 1; } 55% { translate: 0 -2.4%; scale: 1.045; } to { translate: 0 -1.4%; scale: 1.03; } }
.op-full .hand img { animation-delay: calc(3s * var(--op) + var(--i) * 110ms); }
.op-full .op-line { animation: lineIn .6s var(--ease) calc(3.2s * var(--op)) both; }
.op-short .op-line { animation: lineIn .6s var(--ease) .45s both; }
.op-full .room-copy .cta:not(.cta--ghost) { animation: ctaGlow 1.6s ease-out calc(3.3s * var(--op)) 1; }
.op-short .room-copy .cta:not(.cta--ghost) { animation: ctaGlow 1.6s ease-out .8s 1; }
@keyframes ctaGlow { 0% { box-shadow: 0 10px 24px -12px rgba(224,166,75,.55), 0 0 0 0 rgba(224,166,75,.6); } 45% { box-shadow: 0 10px 24px -12px rgba(224,166,75,.55), 0 0 0 16px rgba(224,166,75,0); } 46% { box-shadow: 0 10px 24px -12px rgba(224,166,75,.55), 0 0 0 0 rgba(224,166,75,.45); } 100% { box-shadow: 0 10px 24px -12px rgba(224,166,75,.55), 0 0 0 18px rgba(224,166,75,0); } }
@media (prefers-reduced-motion: reduce) {
  .op-dark { display: none !important; }
  .fam, .op-card { animation: none !important; opacity: 0 !important; }
  .op-line, .room-copy { animation: none !important; opacity: 1 !important; }
}
@media (max-width: 860px) {
  :root { --op: .78; }
  .op-dark { --lx: 97%; --ly: 80%; }
  .fam-img { x: 575px; y: 239px; width: 450px; height: 450px; }   /* the phone sees the middle third: centre the family there */
  html[data-cast="friends"] .fam-img, html[data-cast="couple"] .fam-img { y: 232px; }
  .fam-glow { cx: 800px; rx: 380px; }
  /* on a phone the copy sits over the table, so it and the hand arrive after the family has dissolved */
  .op-full .room-copy { animation-delay: calc(3s * var(--op)); }
  .op-full .hand img { animation-delay: calc(3.3s * var(--op) + var(--i) * 110ms); }
  .op-full .op-line { animation-delay: calc(3.5s * var(--op)); }
  .op-full .room-copy .cta:not(.cta--ghost) { animation-delay: calc(3.6s * var(--op)); }
  .op-line { font-size: 1.05rem; }
}
