/* ============================================================
   Spinraise × DuckDice — KOL Landing
   Single stylesheet, mobile-first, no external deps
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --bg-0: #050810;
  --bg-1: #0a0f1f;
  --bg-2: #0d1428;
  --bg-3: #131a30;

  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.66);
  --fg-dim: rgba(255, 255, 255, 0.42);

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --orange: #ff8a00;
  --gold: #ffc715;
  --orange-glow: rgba(255, 138, 0, 0.55);
  --gold-glow: rgba(255, 199, 21, 0.45);

  --cool: #6b7bff;
  --cool-glow: rgba(107, 123, 255, 0.45);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-cta: 0 12px 40px -8px var(--orange-glow), 0 4px 14px -4px rgba(0, 0, 0, .6);

  --container: 1300px;
  --pad-x: clamp(20px, 5vw, 56px);

  --ff-display: 'Anton', 'Inter', system-ui, -apple-system, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---- Base ---- */
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg-0);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(107, 123, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 90% 35% at 50% 18%, rgba(255, 138, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 30% at 50% 42%, rgba(107, 123, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 25% at 50% 72%, rgba(255, 138, 0, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0d1530 0%, #0a1024 28%, #070b1a 58%, #050810 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============================================================
   TOPBAR — transparent, hides on scroll down, returns on scroll up
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.topbar.is-hidden { transform: translateY(-100%); }
.topbar.is-scrolled {
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.6) 0%, transparent 100%);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 16px;
}
.topbar__logo {
  display: inline-flex;
  align-items: center;
  color: var(--fg);
}
.topbar__logo svg { height: 84px; width: auto; }
@media (max-width: 720px) {
  .topbar__inner { height: 92px; }
  .topbar__logo svg { height: 60px; }
}
@media (max-width: 380px) {
  .topbar__inner { height: 76px; }
  .topbar__logo svg { height: 48px; }
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg-dim);
}
.lang-toggle__btn {
  padding: 6px 4px;
  border-radius: 4px;
  transition: color .15s ease;
}
.lang-toggle__btn:hover { color: var(--fg-muted); }
.lang-toggle__btn.is-active { color: var(--fg); }
.lang-toggle__sep { opacity: .35; }

.topbar__join {
  padding: 14px 32px;
  border: 1px solid rgba(255, 199, 21, 0.55);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold);
  background: rgba(255, 199, 21, 0.08);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.topbar__join:hover {
  background: rgba(255, 199, 21, 0.16);
  border-color: rgba(255, 199, 21, 0.75);
  color: #fff5d8;
}
@media (max-width: 480px) {
  .topbar__right { gap: 18px; }
  .topbar__join { padding: 10px 20px; font-size: 13px; }
  .lang-toggle { font-size: 13px; }
}

/* ============================================================
   SCREEN — base
   ============================================================ */
.screen {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 0;
  overflow: hidden;
}

.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 0.95;
  font-style: italic;
  font-size: clamp(42px, 7.4vw, 92px);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.display--md { font-size: clamp(36px, 5.6vw, 68px); }
.display--stack {
  font-size: clamp(36px, 5.4vw, 68px);
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.28em;
}

/* Italic glyphs overflow their advance box — give the gradient span a little
   right-side padding so background-clip:text doesn't crop the slanted edge. */
.accent-gradient {
  display: inline-block;
  padding-right: 0.12em;
  background: linear-gradient(120deg, var(--gold) 0%, var(--orange) 60%, #ff5e00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Standalone eyebrow (legacy) — kept for back-compat, but hero now uses
   .lockup__eyebrow inline with the streamer/brand lockup */
.eyebrow {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.9vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
  line-height: 1;
}

/* H1 with overlapping "for $5 deposit" pill */
.hero__h1-wrap {
  position: relative;
  display: inline-block;
}
.hero-pill {
  position: absolute;
  top: -0.5em;
  right: -1.2em;
  padding: 6px 14px;
  border: 1px solid rgba(255, 199, 21, 0.55);
  border-radius: var(--radius-pill);
  background: rgba(8, 11, 24, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--fg);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: rotate(-3deg);
  box-shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.6);
}
@media (max-width: 720px) {
  .hero-pill {
    top: -0.4em;
    right: -0.4em;
    padding: 5px 10px;
    font-size: 11px;
  }
}
@media (max-width: 380px) {
  .hero-pill {
    position: static;
    display: inline-block;
    margin-top: 12px;
    transform: none;
  }
}

.screen__sub {
  color: var(--fg-muted);
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 560px;
  margin: 14px auto 0;
  text-align: center;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  --cta-bg: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 48px;
  min-height: 60px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a0c00;
  background: var(--cta-bg);
  box-shadow: var(--shadow-cta);
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
  white-space: nowrap;
}
.cta::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -12px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  filter: blur(0.5px);
  opacity: 0.85;
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  left: -16%;
  right: -16%;
  bottom: -28px;
  height: 26px;
  background: radial-gradient(ellipse at center, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
}
.cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.cta:active { transform: translateY(0); }
.cta--block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.screen--hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 160px) 0 clamp(60px, 8vw, 100px);
}
@media (max-width: 720px) {
  .screen--hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 40px;
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arches {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.arches span {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(107, 123, 255, 0.13);
  border-radius: 50% / 38%;
  width: 140%;
  height: 140%;
}
.arches span:nth-child(1) { width: 60%;  height: 70%;  opacity: .55; }
.arches span:nth-child(2) { width: 90%;  height: 90%;  opacity: .42; }
.arches span:nth-child(3) { width: 130%; height: 110%; opacity: .30; }
.arches span:nth-child(4) { width: 170%; height: 130%; opacity: .22; }
.arches span:nth-child(5) { width: 220%; height: 160%; opacity: .14; }

.lockup {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--ff-display);
  font-style: italic;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 2.4vw, 30px);
  margin: 0 0 22px;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.lockup__streamer {
  display: inline-block;
  padding-right: 0.14em;
  background: linear-gradient(120deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lockup__brand { color: var(--fg); }
.lockup__x {
  color: var(--fg-dim);
  font-style: normal;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.85em;
}
.lockup__eyebrow {
  display: inline-block;
  padding-right: 0.14em;
  margin-left: 0.4em;
  color: var(--orange);
}

.hero__sub {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--fg);
  margin-top: 26px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 740px;
  letter-spacing: 0.01em;
}
.hero__sub b {
  background: linear-gradient(120deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.hero__continuity {
  font-size: clamp(12px, 1.4vw, 13px);
  color: var(--fg-dim);
  margin: 56px auto 0;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-style: italic;
}
/* "Operating since 2016" — floating chip in top-right of hero, below header */
.badge-since {
  position: absolute;
  top: 110px;
  right: clamp(20px, 5vw, 48px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge-since__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ecf6a;
  box-shadow: 0 0 8px rgba(78, 207, 106, 0.55);
}
@media (max-width: 720px) {
  .badge-since {
    top: 86px;
    font-size: 11px;
    padding: 5px 11px 5px 9px;
  }
}
@media (max-width: 380px) {
  .badge-since {
    /* hide on tiny screens to give hero breathing room */
    display: none;
  }
}

.hero__scroll-hint {
  display: none; /* hidden on mobile; desktop overrides below */
}
@media (min-width: 760px) {
  .hero__scroll-hint {
    display: flex;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    align-items: center;
    justify-content: center;
    color: var(--fg-muted);
    z-index: 2;
    animation: bob 2.4s ease-in-out infinite;
  }
  .hero__scroll-hint svg { width: 16px; height: 16px; }
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 4px); }
}

/* ============================================================
   SCREEN 2 — PROCESS
   ============================================================ */
.screen--process {
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 56px auto 48px;
  max-width: 880px;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--cool);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  line-height: 1;
  background: radial-gradient(circle at 50% 35%, rgba(107, 123, 255, 0.22) 0%, transparent 70%);
  box-shadow: 0 0 24px -6px var(--cool-glow), inset 0 0 18px -6px var(--cool-glow);
}
.step__text {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 240px;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .steps::before {
    content: "";
    position: absolute;
    left: 16.7%;
    right: 16.7%;
    top: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--cool) 18%, var(--cool) 82%, transparent 100%);
    opacity: 0.5;
    z-index: 0;
  }
  .step { z-index: 1; }
  .step__num {
    background-color: #0a1024;
    background-image: radial-gradient(circle at 50% 35%, rgba(107, 123, 255, 0.22) 0%, transparent 70%);
  }
}

/* ============================================================
   SCREEN 3 — GAME
   ============================================================ */
.screen--game {
  text-align: center;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 30px auto 50px;
  max-width: 720px;
}
.pill {
  padding: 10px 20px;
  border: 1px solid rgba(255, 199, 21, 0.28);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffe2a0;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.18) 0%, rgba(255, 199, 21, 0.06) 100%);
  box-shadow: 0 6px 20px -10px rgba(255, 138, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ============================================================
   Stream mock — placeholder, designed to be swapped for a real
   stream GIF/screenshot by replacing the inner HTML.
   ============================================================ */
.stream-mock {
  position: relative;
  max-width: 960px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.65));
  transform: rotate(-0.8deg);
}
.stream-mock__frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: #0a0e1d;
  overflow: hidden;
  text-align: left;
}
.stream-mock__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 138, 0, 0.14),
    0 0 100px -30px var(--orange-glow);
}

/* Title bar */
.stream-mock__titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #14172a 0%, #0c1124 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stream-mock__avatar-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  padding: 2px;
}
.stream-mock__avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px -2px var(--gold-glow);
}
.stream-mock__avatar-live {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1px 6px;
  background: #ff3b3b;
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 3px;
  border: 1.5px solid #0c1124;
  line-height: 1.2;
}
.stream-mock__streamer {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.stream-mock__verify {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.stream-mock__verify svg { width: 16px; height: 16px; }
.stream-mock__title {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 4px;
  border-left: 1px solid var(--line);
  margin-left: 2px;
}
.stream-mock__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #ff3b3b;
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  flex-shrink: 0;
}
.stream-mock__live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
@media (max-width: 480px) {
  .stream-mock__title { display: none; }
}

/* Body layout — video sets the height, chat overlays absolutely */
.stream-mock__body {
  display: block;
}
@media (min-width: 720px) {
  .stream-mock__body {
    position: relative;
  }
  .stream-mock__video-wrap {
    /* Reserve right gutter for the chat panel */
    width: calc(100% - 240px);
  }
  .stream-mock__chat {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 240px;
    height: auto;
    display: flex;
  }
}
@media (min-width: 960px) {
  .stream-mock__video-wrap { width: calc(100% - 280px); }
  .stream-mock__chat { width: 280px; }
}

/* Video pane (left) — locked to source 16:9 so nothing is cropped */
.stream-mock__video-wrap {
  position: relative;
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.stream-mock__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- Chat panel (right) ---- */
.stream-mock__chat {
  display: none;
  flex-direction: column;
  background: #0a0d1c;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  /* min-height:0 lets the flex item shrink to the grid row height
     (which is driven by the video's aspect-ratio) instead of bursting it */
  min-height: 0;
  height: 100%;
  overflow: hidden;
}
.stream-mock__chat-head {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  font-weight: 700;
}
.stream-mock__chat-window {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.stream-mock__chat-window::before,
.stream-mock__chat-window::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}
.stream-mock__chat-window::before {
  top: 0;
  background: linear-gradient(180deg, #0a0d1c 0%, transparent 100%);
}
.stream-mock__chat-window::after {
  bottom: 0;
  background: linear-gradient(0deg, #0a0d1c 0%, transparent 100%);
}
.stream-mock__chat-list {
  list-style: none;
  margin: 0;
  padding: 0 12px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(239, 240, 246, 0.85);
  animation: chat-scroll 60s linear infinite;
}
.stream-mock__chat-list li {
  padding: 5px 0;
  word-wrap: break-word;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}
.stream-mock__chat-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.stream-mock__chat-name {
  font-weight: 700;
}
.stream-mock__chat-name--mod  { color: #4ecf6a; }
.stream-mock__chat-name--vip  { color: #ff7ad1; }
.stream-mock__chat-name--user { color: #b388ff; }
.stream-mock__chat-name--streamer { color: #ff6b6b; }
.stream-mock__chat-text { flex: 1; min-width: 0; }

/* Twitch-style mini badges — inline SVG */
.chat-badge {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-badge--mod         { background: #00ad03; }
.chat-badge--broadcaster { background: #e91916; }
.chat-badge--verified    { background: #a970ff; }
.chat-badge--vip         { background: #e005b9; }
.chat-badge svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

@keyframes chat-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@media (min-width: 720px) {
  .stream-mock__chat { display: flex; }
}
@media (max-width: 719px) {
  /* On mobile, chat sits below the game */
  .stream-mock__body { grid-template-columns: 1fr; }
  .stream-mock__chat {
    display: flex;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 160px;
  }
}

/* ============================================================
   SCREEN 4 — SLOTS
   ============================================================ */
.screen--slots { text-align: center; }
.games__lead {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 2.8vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto 36px;
}
.screen--slots .cta { margin-top: 48px; }
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 940px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .games__grid { gap: 18px; }
}
.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 199, 21, 0.35);
  box-shadow: 0 18px 40px -16px rgba(255, 138, 0, 0.35);
}
.game-card a {
  display: block;
  aspect-ratio: 408 / 546;
  position: relative;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.games__hint {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  font-style: italic;
}

/* ============================================================
   SCREEN 4 — WHY DUCKDICE
   ============================================================ */
.screen--why { /* bg flows from body */ }
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  padding: clamp(28px, 5vw, 56px) clamp(22px, 4vw, 48px);
}
.why__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(107, 123, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(107, 123, 255, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 138, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.why__grid > * { position: relative; z-index: 1; }
.why__cta { margin-top: 32px; justify-self: start; }
.features { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 879px) {
  .why__left { text-align: center; }
  .why__left .display--stack { align-items: center; }
  .why__cta { justify-self: center; }
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}
.feature__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 199, 21, 0.10);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature__text {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}

@media (min-width: 880px) {
  .why__grid {
    grid-template-columns: 1fr 1.15fr;
    grid-template-areas: "left feat" "cta feat";
    gap: 60px;
  }
  .why__left { grid-area: left; }
  .features  { grid-area: feat; }
  .why__cta  { grid-area: cta; margin-top: 0; align-self: end; }
  .feature__text { font-size: 15px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 80px;
}
.footer__block { margin-bottom: 40px; text-align: center; }
.footer__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.pay-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.pay-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.02);
  height: 44px;
  transition: background .2s, border-color .2s;
}
.pay-logo:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}
.pay-logo svg {
  display: block;
  height: 18px;
  width: auto;
}

/* ---- Crypto grid (collapsible) ---- */
.crypto-grid {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  max-height: 90px;             /* Single row by default */
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.2, .65, .25, 1);
}
.crypto-grid.is-expanded {
  max-height: 800px;
}
.crypto-grid__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  width: 100%;
}
.crypto-icon {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  padding: 10px;
  transition: background .2s, border-color .2s, transform .2s;
}
.crypto-icon:hover {
  background: rgba(255, 199, 21, 0.06);
  border-color: rgba(255, 199, 21, 0.25);
  transform: translateY(-1px);
}
.crypto-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.15) opacity(0.92);
}

/* Bottom fade overlay — collapsed state only */
.crypto-grid__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0) 0%, #050810 90%);
  transition: opacity .35s ease;
}
.crypto-grid.is-expanded .crypto-grid__fade { opacity: 0; }

/* Toggle button */
.crypto-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.02);
  transition: color .2s, border-color .2s, background .2s;
  position: relative;
  z-index: 1;
}
.crypto-toggle:hover {
  color: var(--gold);
  border-color: rgba(255, 199, 21, 0.35);
  background: rgba(255, 199, 21, 0.06);
}
.crypto-toggle__chev {
  width: 14px; height: 14px;
  transition: transform .3s ease;
}
.crypto-toggle.is-expanded .crypto-toggle__chev { transform: rotate(180deg); }

.footer__block--crypto {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__bottom {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
.footer__badges {
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge18 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--fg-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.badge-itech {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.82;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: color .2s, border-color .2s, background .2s;
}
.footer__social a:hover { color: var(--gold); border-color: rgba(255, 199, 21, 0.35); background: rgba(255, 199, 21, 0.06); }
.footer__social svg { width: 14px; height: 14px; }

.footer__disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.footer__copyright {
  margin-top: 10px;
  font-size: 11px;
  color: var(--fg-dim);
  text-align: center;
  opacity: 0.55;
}

@media (min-width: 760px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer__badges {
    align-items: center;
  }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(5, 8, 16, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform .25s ease-out;
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .cta { font-size: 14px; padding: 14px 28px; min-height: 50px; }
.sticky-cta .cta::after { display: none; }
.sticky-cta .cta::before { display: none; }

@media (min-width: 760px) {
  .sticky-cta { display: none; }
}

/* ============================================================
   Mobile fine-tuning to keep hero in one viewport
   ============================================================ */
@media (max-width: 380px) {
  .display { font-size: 38px; }
  .lockup { font-size: 17px; }
  .hero__sub { font-size: 15px; }
  .hero__continuity { font-size: 12px; margin: 14px auto 22px; }
  .cta { padding: 14px 30px; min-height: 50px; font-size: 14px; }
  .hero__trust { margin-top: 22px; font-size: 11px; }
  .topbar { height: 54px; }
  .topbar__inner { height: 54px; }
}

@media (max-height: 700px) and (max-width: 760px) {
  .screen--hero { padding-top: 104px; padding-bottom: 70px; }
  .hero__sub { margin-bottom: 26px; }
  .hero__continuity { margin: 30px auto 0; }
  .hero__scroll-hint { display: none; }
}

/* ============================================================
   Mobile CTA — smaller buttons on handheld (header join unchanged)
   ============================================================ */
@media (max-width: 759px) {
  .cta {
    padding: 14px 32px;
    min-height: 52px;
    font-size: 14px;
  }
}

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

/* ============ Stream-mock — Spinraise green theme ============ */
.stream-mock--green .stream-mock__avatar-img {
  border-color: #01eb64;
  box-shadow: 0 0 12px -2px rgba(1, 235, 100, 0.7);
}
.stream-mock--green .stream-mock__avatar-live {
  background: #01eb64;
  color: #0c1124;
}

