/* ============================================================
   OBERLAND MYSTERY — style.css
   Palette (locked): navy #1B2A4A / #243558 / #111D35
                     gold #F0C040 / #F5D06A / #D4A420
                     teal #2A8B9B / #3AABB8 / #1E6B78
   Type: Unbounded (display) + Nunito Sans (body)
   ============================================================ */

:root {
  --navy: #1B2A4A;
  --navy-light: #243558;
  --navy-dark: #111D35;
  --navy-deepest: #0C1526;
  --gold: #F0C040;
  --gold-light: #F5D06A;
  --gold-dark: #D4A420;
  --teal: #2A8B9B;
  --teal-light: #3AABB8;
  --teal-dark: #1E6B78;
  --ink: #FFFFFF;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 700px at 75% -12%, rgba(36, 53, 88, 0.9), rgba(36, 53, 88, 0) 60%),
    linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy) 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: rgba(240, 192, 64, 0.85); color: var(--navy-dark); }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- fixed three.js canvas ------------------------------------ */
#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
html.no-3d #scene { display: none; }

/* ---- star field (CSS, static — the 3D dust does the moving) --- */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,0.5), transparent 100%),
    radial-gradient(1px 1px at 28% 8%, rgba(255,255,255,0.35), transparent 100%),
    radial-gradient(1.5px 1.5px at 44% 24%, rgba(245,208,106,0.4), transparent 100%),
    radial-gradient(1px 1px at 61% 12%, rgba(255,255,255,0.4), transparent 100%),
    radial-gradient(2px 2px at 73% 28%, rgba(245,208,106,0.3), transparent 100%),
    radial-gradient(1px 1px at 86% 9%, rgba(255,255,255,0.45), transparent 100%),
    radial-gradient(1.5px 1.5px at 94% 21%, rgba(255,255,255,0.3), transparent 100%),
    radial-gradient(1px 1px at 7% 34%, rgba(58,171,184,0.4), transparent 100%),
    radial-gradient(1px 1px at 52% 5%, rgba(255,255,255,0.3), transparent 100%);
}

/* ---- film grain ------------------------------------------------ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ---- scattered question marks (the classic pattern) ------------ */
.bg-questions {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.bg-questions span {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  user-select: none;
  will-change: transform;
}

/* ---- gold sparkle dots (the classic ones, kept) ----------------- */
.sparkle-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(240, 192, 64, 0.8);
  animation: sparkle-float 3s ease-in-out infinite;
  opacity: 0;
}
.sparkle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 3.2s; }
.sparkle:nth-child(2) { left: 25%; top: 60%; animation-delay: 0.5s; animation-duration: 2.8s; }
.sparkle:nth-child(3) { left: 45%; top: 30%; animation-delay: 1s; animation-duration: 3.5s; }
.sparkle:nth-child(4) { left: 65%; top: 70%; animation-delay: 0.3s; animation-duration: 3s; }
.sparkle:nth-child(5) { left: 80%; top: 40%; animation-delay: 0.8s; animation-duration: 2.6s; }
.sparkle:nth-child(6) { left: 15%; top: 80%; animation-delay: 1.2s; animation-duration: 3.3s; }
.sparkle:nth-child(7) { left: 55%; top: 15%; animation-delay: 0.6s; animation-duration: 2.9s; }
.sparkle:nth-child(8) { left: 90%; top: 55%; animation-delay: 1.5s; animation-duration: 3.1s; }
.sparkle:nth-child(9) { left: 35%; top: 85%; animation-delay: 0.2s; animation-duration: 3.4s; }
.sparkle:nth-child(10) { left: 72%; top: 25%; animation-delay: 1.1s; animation-duration: 2.7s; }
@keyframes sparkle-float {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50% { opacity: 1; transform: translateY(-20px) scale(1.2); }
}

/* ---- wave dividers (the classic curves, kept) ------------------- */
.wave-divider { position: relative; z-index: 2; line-height: 0; margin-bottom: -1px; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* ================================================================
   LOADER
   ================================================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: var(--navy-dark);
  transition: opacity 0.7s ease, visibility 0.7s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: loader-pulse 1.1s ease-in-out infinite;
}
.loader__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: rgba(255, 255, 255, 0.55);
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.14) rotate(6deg); opacity: 0.75; }
}

/* ================================================================
   NAV
   ================================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(20px, 4vw, 44px);
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(17, 29, 53, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 44px; width: auto; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  line-height: 1.3;
}
.nav__wordmark em { font-style: normal; color: var(--gold); display: block; }
.nav__links { display: flex; gap: clamp(18px, 3vw, 38px); }
.nav__links a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.35s var(--ease-out);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { right: 0; }
.nav__cta { flex-shrink: 0; }
@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__wordmark { display: none; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 10px 32px rgba(240, 192, 64, 0.32);
}
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(240, 192, 64, 0.45); }
.btn--gold:hover::after { left: 130%; }
.btn--gold:active { transform: translateY(0); }
.btn--ghost {
  border: 1px solid rgba(58, 171, 184, 0.5);
  color: #E9F5F7;
}
.btn--ghost:hover {
  border-color: var(--teal-light);
  background: rgba(42, 139, 155, 0.14);
  transform: translateY(-3px);
}
.btn--small { padding: 12px 22px; font-size: 11px; }

/* ================================================================
   LAYOUT PRIMITIVES
   ================================================================ */
main { position: relative; z-index: 2; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); }
section { scroll-margin-top: var(--nav-h); }

.section-head { position: relative; text-align: center; margin-bottom: clamp(48px, 7vw, 84px); }
.section-ghost {
  position: absolute;
  top: -0.42em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 15vw, 200px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.section-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4.5vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.section-sub {
  position: relative;
  margin-top: 16px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.gold-text {
  background: linear-gradient(105deg, var(--gold-light) 15%, var(--gold) 50%, var(--gold-dark) 85%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shift 5s ease-in-out infinite;
}
.teal-text { color: var(--teal-light); }
@keyframes gold-shift {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* ---- scroll reveals -------------------------------------------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 90px;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  width: 100%;
}
.hero__content { position: relative; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 26px;
}
.hero__eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--teal-light);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5.9vw, 84px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.08em; white-space: nowrap; }
.hero__title .line__in { display: inline-block; will-change: transform; }
html.js .line__in {
  transform: translateY(115%);
  transition: transform 1.1s var(--ease-out);
}
html.js body.ready .line__in { transform: none; }
html.js .line:nth-child(2) .line__in { transition-delay: 0.12s; }

.hero__lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 470px;
  margin-bottom: 38px;
}
.hero__lead strong { color: #fff; font-weight: 700; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }

.hero__stats {
  display: flex;
  gap: clamp(26px, 4vw, 54px);
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--gold);
}
.hero__stats span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* staged fade-ins after loader */
html.js .hero .fade {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
html.js body.ready .hero .fade { opacity: 1; transform: none; }
html.js body.ready .fade--1 { transition-delay: 0.25s; }
html.js body.ready .fade--2 { transition-delay: 0.4s; }
html.js body.ready .fade--3 { transition-delay: 0.55s; }
html.js body.ready .fade--4 { transition-delay: 0.7s; }

/* machine fallback image (mobile / no WebGL) */
.hero__stage { display: grid; place-items: center; }
.hero__machine-wrap { display: none; text-align: center; }
.hero__machine-img {
  width: min(300px, 30vw);
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 60px rgba(240, 192, 64, 0.18));
  animation: machine-float 5.5s ease-in-out infinite;
}
@media (max-width: 899px) {
  .hero__machine-img { width: min(270px, 62vw); margin-top: 44px; }
}
@keyframes machine-float {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-16px) rotate(0.6deg); }
}
@media (max-width: 899px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__eyebrow::before { display: none; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__machine-wrap { display: block; }
}
html.no-3d .hero__machine-wrap,
html.no-machine .hero__machine-wrap { display: block; }

/* coin drops into the slot — insert a coin, scroll down */
.scrollcue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  z-index: 3;
}
.scrollcue span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.scrollcue__track {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.scrollcue__coin {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.28),
    0 0 12px rgba(240, 192, 64, 0.45);
  display: grid;
  place-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  color: var(--navy-dark);
  transform-origin: 50% 100%;
  animation: coin-drop 2.4s ease-in infinite;
}
/* track is 48px + 9px gap: the slit's opening sits 57–62px below the
   coin's start, so the fold happens right at the slit, not above it */
@keyframes coin-drop {
  0% { transform: translateY(-6px) scaleY(1); opacity: 0; }
  16% { transform: translateY(0) scaleY(1); opacity: 1; }
  58% { transform: translateY(36px) scaleY(1); opacity: 1; }
  72% { transform: translateY(42px) scaleY(0.15); opacity: 0.9; }
  80% { transform: translateY(43px) scaleY(0.1); opacity: 0; }
  100% { transform: translateY(43px) scaleY(0.1); opacity: 0; }
}
.scrollcue__slit {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: rgba(12, 21, 38, 0.95);
  border: 1px solid rgba(240, 192, 64, 0.55);
  box-shadow: 0 0 10px rgba(240, 192, 64, 0.2);
}

/* ================================================================
   STEPS — So funktioniert's
   ================================================================ */
.steps {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0 clamp(90px, 12vw, 150px);
  background: var(--navy-light);
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.step { position: relative; padding-top: 22px; }
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 192, 64, 0.5);
  margin-bottom: 18px;
  transition: -webkit-text-stroke-color 0.3s;
}
.step:hover .step__num { -webkit-text-stroke-color: var(--gold); }
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.9vw, 21px);
  margin-bottom: 14px;
}
.step__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 300px;
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-light), transparent);
}
@media (max-width: 767px) {
  .steps__grid { grid-template-columns: 1fr; gap: 44px; }
  .step__text { max-width: none; }
}

/* ================================================================
   WIN — categories + slot machine
   ================================================================ */
.win {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0 clamp(90px, 12vw, 150px);
  background: var(--navy);
}
.win__grid {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 991px) {
  .win__grid { grid-template-columns: 1fr; justify-items: center; }
}

/* ---- the Glücks-Simulator (homage to the real machine) --------- */
.slot {
  width: min(430px, 100%);
  background: linear-gradient(165deg, var(--navy-light) 0%, #16223F 70%, var(--navy-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.slot.landing { animation: slot-shake 0.5s ease; }
@keyframes slot-shake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(3px, -1px); }
  60% { transform: translate(-2px, 1px); }
  80% { transform: translate(2px, 0); }
}

.slot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.slot__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold);
}
.slot__lights { display: flex; gap: 7px; }
.slot__lights i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: light-blink 1.6s ease-in-out infinite;
}
.slot__lights i:nth-child(2) { animation-delay: 0.35s; background: var(--gold); }
.slot__lights i:nth-child(3) { animation-delay: 0.7s; }
@keyframes light-blink {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; box-shadow: 0 0 8px currentColor; }
}

.slot__window {
  --item-h: 84px;
  position: relative;
  height: calc(var(--item-h) * 3);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--navy-deepest), #16223F 55%, var(--navy-deepest));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 6px 26px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.slot__reel { will-change: transform; }
.slot__item {
  height: var(--item-h);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.slot__item svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.slot__item span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.slot__item.active svg { filter: drop-shadow(0 0 8px rgba(240, 192, 64, 0.8)); }
.slot__item.active span { color: var(--gold-light); }

.slot__marker {
  position: absolute;
  top: var(--item-h);
  left: 0; right: 0;
  height: var(--item-h);
  border-top: 1px solid rgba(240, 192, 64, 0.4);
  border-bottom: 1px solid rgba(240, 192, 64, 0.4);
  background: rgba(240, 192, 64, 0.05);
  pointer-events: none;
}
.slot__marker::before,
.slot__marker::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
}
.slot__marker::before { left: -2px; border-left-color: var(--gold); }
.slot__marker::after { right: -2px; border-right-color: var(--gold); }

.slot__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--navy-deepest) 0%, transparent 26%),
    linear-gradient(0deg, var(--navy-deepest) 0%, transparent 26%);
}

.slot__btn {
  width: 100%;
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  box-shadow:
    0 6px 0 #9A7714,
    0 14px 30px rgba(240, 192, 64, 0.3);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.3s;
}
.slot__btn:active:not(:disabled) {
  transform: translateY(5px);
  box-shadow: 0 1px 0 #9A7714, 0 6px 16px rgba(240, 192, 64, 0.25);
}
.slot__btn:disabled { opacity: 0.55; cursor: progress; }

.slot__result {
  margin-top: 18px;
  min-height: 52px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}
.slot__result strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 3px;
}

.slot__confetti { position: absolute; inset: 0; pointer-events: none; overflow: visible; z-index: 5; }
.slot__confetti span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--c, var(--gold));
  animation: confetti-pop 1s var(--ease-out) forwards;
}
@keyframes confetti-pop {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--r)) scale(0.6); opacity: 0; }
}

.slot__note {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ---- category chips -------------------------------------------- */
.win__aside .section-title { text-align: left; font-size: clamp(24px, 3.4vw, 38px); }
.win__aside > p {
  margin: 18px 0 34px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}
@media (max-width: 991px) {
  .win__aside { text-align: center; }
  .win__aside .section-title { text-align: center; }
  .win__aside > p { margin-left: auto; margin-right: auto; }
}

.chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.chip:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 192, 64, 0.55);
  background: rgba(240, 192, 64, 0.09);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 22px rgba(240, 192, 64, 0.12);
}
.chip svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.chip span { font-size: 13px; font-weight: 700; line-height: 1.25; }

/* ================================================================
   LOCATIONS
   ================================================================ */
.locations {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0 clamp(140px, 16vw, 220px);
  background: var(--navy-dark);
  overflow: hidden;
}
.locations__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 899px) {
  .locations__grid { grid-template-columns: 1fr; max-width: 460px; }
}

.loc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 28px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(36, 53, 88, 0.75), rgba(17, 29, 53, 0.85));
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.loc:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 192, 64, 0.5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.loc__idx {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--teal-light);
}
.loc__city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 4px 0 2px;
}
.loc__venue { font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.loc__go {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.loc__go svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.loc:hover .loc__go svg { transform: translate(3px, -3px); }
.loc::after {
  content: '?';
  position: absolute;
  right: -14px;
  bottom: -34px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  color: rgba(240, 192, 64, 0.05);
  transition: color 0.35s;
  pointer-events: none;
}
.loc:hover::after { color: rgba(240, 192, 64, 0.12); }

.loc--suggest {
  border-style: dashed;
  border-color: rgba(58, 171, 184, 0.4);
  background: rgba(42, 139, 155, 0.06);
  justify-content: center;
  text-align: center;
  align-items: center;
}
.loc--suggest .loc__city { font-size: clamp(17px, 2vw, 21px); }
.loc--suggest:hover { border-color: var(--teal-light); }
.loc--suggest .loc__go { color: var(--teal-light); }
.loc--suggest::after { content: '+'; color: rgba(58, 171, 184, 0.08); }
.loc--suggest:hover::after { color: rgba(58, 171, 184, 0.16); }

/* closing shoreline into the footer */
.locations__waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.locations__waves svg { display: block; width: 100%; height: auto; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  position: relative;
  z-index: 2;
  background: var(--navy-deepest);
  overflow: hidden;
}
.footer__ghost {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 10.5vw, 150px);
  line-height: 0.95;
  text-align: center;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  padding-top: 40px;
  margin-bottom: -0.28em;
}
.footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 50px clamp(20px, 4vw, 44px) 44px;
  text-align: center;
}
.footer__inner img { height: 52px; opacity: 0.85; }
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__contact a { transition: color 0.25s; }
.footer__contact a:hover { color: var(--gold); }
.footer__legal {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.footer__legal a { color: rgba(255, 255, 255, 0.45); transition: color 0.25s; }
.footer__legal a:hover { color: #fff; }
.footer__copy { font-size: 12px; color: rgba(255, 255, 255, 0.3); }

/* ================================================================
   CUSTOM CURSOR (fine pointers only)
   ================================================================ */
#cursor-dot, #cursor-ring { display: none; }
@media (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button { cursor: none; }
  #cursor-dot, #cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 250;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  #cursor-dot {
    width: 7px; height: 7px;
    background: var(--gold);
  }
  #cursor-ring {
    width: 34px; height: 34px;
    border: 1.5px solid rgba(240, 192, 64, 0.5);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.25s;
  }
  body.cursor-hover #cursor-ring {
    width: 54px; height: 54px;
    border-color: rgba(58, 171, 184, 0.8);
  }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html.js .reveal, html.js .hero .fade { opacity: 1; transform: none; }
  html.js .line__in { transform: none; }
  .hero__machine-img { animation: none; }
  .scrollcue__coin { animation: none; opacity: 1; transform: translateY(10px); }
}
