/* ─── Platyland home — storybook UI ──────────────────────────────────────
   Warm cream paper, hand-drawn vibes, deep navy ink.
   Staggered reveals on load. Hover micro-interactions that nod to
   paper stickers. Platypus mascot is the anchor.                        */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  background-color: var(--paper);
  background-image:
    /* subtle dot grid like graph paper */
    radial-gradient(rgba(27, 58, 91, 0.07) 1px, transparent 1px),
    /* warm wash */
    radial-gradient(circle at 12% 8%, rgba(255, 210, 63, 0.22), transparent 45%),
    radial-gradient(circle at 88% 4%, rgba(126, 206, 196, 0.22), transparent 42%),
    radial-gradient(circle at 80% 94%, rgba(255, 107, 107, 0.14), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  background-size: 22px 22px, auto, auto, auto, auto;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

/* Noise/grain overlay for paper feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.22  0 0 0 0 0.35  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.page-layer {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ─── Top bar ───────────────────────────────────────────────────────── */

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 3vw, 2.2rem);
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--sun);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: var(--shadow-stamp-sm);
  transform: rotate(-4deg);
}

.brand-name em {
  font-style: normal;
  color: var(--coral);
}

.top-bar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--r-full);
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow-stamp-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.chip:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(27,58,91,0.92); }
.chip:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(27,58,91,0.92); }

.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-deep); }

/* ─── Hero ──────────────────────────────────────────────────────────── */

.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.2rem) 5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 2.5rem) 0 2rem;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-hand);
  font-size: 1.55rem;
  color: var(--coral-deep);
  line-height: 1;
  transform: rotate(-2deg);
  margin-bottom: 0.4rem;
}

.hero-eyebrow svg { flex-shrink: 0; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 144;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 1.2rem;
}

.hero-title .word-coral { color: var(--coral); display: inline-block; }
.hero-title .word-ink { display: inline-block; position: relative; }
.hero-title .word-ink::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6%;
  height: 18%;
  background: var(--sun);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1.5deg);
}

.hero-title .wonky { font-style: italic; font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 144; }

.hero-lead {
  font-size: 1.14rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 1.8rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn-stamp {
  --btn-bg: var(--coral);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--ink);
  border-radius: var(--r-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-stamp);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-stamp:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(27,58,91,0.92); color: var(--btn-fg); }
.btn-stamp:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(27,58,91,0.92); }

.btn-stamp--ghost {
  --btn-bg: var(--card);
  --btn-fg: var(--ink);
}

.btn-stamp--mint {
  --btn-bg: var(--mint);
  --btn-fg: var(--ink);
}

.btn-stamp--sun {
  --btn-bg: var(--sun);
  --btn-fg: var(--ink);
}

.hero-stats {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--line-strong);
}

.hero-stat-n {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 72;
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

/* Mascot stage */

.mascot-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-bubble {
  position: absolute;
  inset: 4% 4% 4% 4%;
  background:
    radial-gradient(circle at 30% 25%, #fff6d9 0%, var(--sun) 60%, #f5b800 100%);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-stamp), inset 0 -10px 0 rgba(27,58,91,0.05);
  overflow: hidden;
}

.mascot-bubble::after {
  content: "";
  position: absolute;
  top: 12%;
  left: 18%;
  width: 28%;
  height: 14%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  filter: blur(6px);
  transform: rotate(-20deg);
}

.mascot-img-wrap {
  position: absolute;
  inset: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mascot-float 6s ease-in-out infinite;
}

.mascot-img-wrap img,
.mascot-img-wrap svg {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(6px 10px 0 rgba(27, 58, 91, 0.18));
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

.mascot-placeholder {
  position: absolute;
  inset: 12%;
  border: 3px dashed var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 1.4rem;
  line-height: 1.2;
}

.mascot-placeholder span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

/* Decorative floaters around the mascot */

.floater {
  position: absolute;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: var(--shadow-stamp-sm);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.floater--a {
  top: 8%;
  left: 10%;
  transform: rotate(-8deg);
  background: var(--mint);
  animation: tilt-a 5s ease-in-out infinite;
}

.floater--b {
  top: 38%;
  right: -8%;
  transform: rotate(6deg);
  background: var(--coral);
  color: #fff;
  animation: tilt-b 6.5s ease-in-out infinite;
}

.floater--c {
  bottom: 6%;
  left: 8%;
  transform: rotate(-4deg);
  background: #fff;
  animation: tilt-c 5.5s ease-in-out infinite;
}

.floater svg { width: 18px; height: 18px; }

@keyframes tilt-a {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-8px); }
}
@keyframes tilt-b {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-10px); }
}
@keyframes tilt-c {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-6px); }
}

/* ─── Section dividers ──────────────────────────────────────────────── */

.wave-divider {
  display: block;
  width: 100%;
  height: 40px;
  margin: 3rem 0 1.5rem;
  color: var(--ink);
  opacity: 0.55;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0 1.2rem;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 72;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.section-emoji-chip {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-stamp-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transform: rotate(-5deg);
}

.section-emoji-chip[data-tone="mint"] { background: var(--mint); }
.section-emoji-chip[data-tone="coral"] { background: var(--coral); color: #fff; }
.section-emoji-chip[data-tone="sun"]   { background: var(--sun); }
.section-emoji-chip[data-tone="sky"]   { background: var(--sky); color: #fff; }

.section-hint {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
  transform: rotate(-1.5deg);
}

/* ─── Game grid & cards ─────────────────────────────────────────────── */

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-stamp);
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.22s ease,
              rotate 0.22s ease;
  rotate: 0deg;
  animation: card-in 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--card-i, 0) * 70ms + 150ms);
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.game-card:hover {
  transform: translate(-3px, -5px);
  box-shadow: 7px 9px 0 rgba(27,58,91,0.92);
  rotate: -0.8deg;
}

.game-card:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(27,58,91,0.92);
}

/* Every card gets a randomized tone via nth-child — the look breathes */
.game-card[data-tone="mint"]  .card-scene { background: linear-gradient(165deg, #c8ece6, #7ecec4); }
.game-card[data-tone="coral"] .card-scene { background: linear-gradient(165deg, #ffd0c5, #ff9f8f); }
.game-card[data-tone="sun"]   .card-scene { background: linear-gradient(165deg, #ffe9a5, var(--sun)); }
.game-card[data-tone="sky"]   .card-scene { background: linear-gradient(165deg, #b8daec, #6fb3e0); }
.game-card[data-tone="berry"] .card-scene { background: linear-gradient(165deg, #f2b4d4, var(--berry)); color: #fff; }
.game-card[data-tone="ink"]   .card-scene { background: linear-gradient(165deg, #3d5775, var(--ink)); color: #fff; }

.card-scene {
  position: relative;
  min-height: 170px;
  padding: 1.2rem 1.2rem 1rem;
  border-bottom: 2.5px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  overflow: hidden;
}

.card-scene::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.card-scene::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(27, 58, 91, 0.08);
  pointer-events: none;
}

.card-type-sticker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--card);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-full);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-stamp-sm);
  align-self: flex-start;
  transform: rotate(-3deg);
}

.card-type-sticker svg { width: 14px; height: 14px; }

.card-scene-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-stamp-sm);
  z-index: 1;
  transform: rotate(4deg);
  transition: transform 0.3s ease;
}

.game-card:hover .card-scene-icon {
  transform: rotate(-10deg) scale(1.08);
}

.card-scene-icon svg { width: 44px; height: 44px; color: var(--ink); }

.card-body {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card-title {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 72;
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.card-sub {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1.5px dashed var(--line-strong);
}

.card-foot-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-play {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--coral-deep);
  transition: gap 0.2s ease;
}

.game-card:hover .card-play { gap: 0.65rem; color: var(--ink); }
.card-play-arrow { width: 18px; height: 18px; }

/* ─── Empty / error states ──────────────────────────────────────────── */

.empty-state {
  padding: 2rem 1.8rem;
  border-radius: var(--r-lg);
  border: 2.5px dashed var(--ink);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
}

.empty-state strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

/* ─── Login overlay (paper card) ────────────────────────────────────── */

#loginOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(27, 58, 91, 0.4), rgba(27, 58, 91, 0.7));
  backdrop-filter: blur(3px);
}

.login-card {
  width: min(92vw, 380px);
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 1.9rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-stamp);
  transform: rotate(-0.8deg);
}

.login-mascot {
  width: 70px;
  height: 70px;
  margin: -3.2rem auto 0.6rem;
  border-radius: 50%;
  background: var(--sun);
  border: 2.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-stamp-sm);
}

.login-mascot svg { width: 42px; height: 42px; color: var(--ink); }

.login-card h2 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 40, "WONK" 1;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1;
  text-align: center;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.login-card p {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}

.login-field {
  display: block;
  margin-bottom: 0.7rem;
}

.login-field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
  padding-left: 0.3rem;
}

.login-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 2px 0 rgba(27, 58, 91, 0.05);
  transition: box-shadow 0.15s ease;
}

.login-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.5);
}

.login-btn {
  width: 100%;
  margin-top: 0.6rem;
  justify-content: center;
}

.login-error {
  display: none;
  background: rgba(232, 81, 77, 0.12);
  color: var(--coral-deep);
  border: 1.5px dashed var(--coral);
  border-radius: var(--r-md);
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-align: center;
}

.login-error.is-visible { display: block; }

.login-divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--ink);
  opacity: 0.12;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(27, 58, 91, 0.18);
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn-google:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(27, 58, 91, 0.3);
}
.btn-google:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(27, 58, 91, 0.18);
}

/* ─── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0.5rem;
  }

  .mascot-stage {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .top-bar { padding: 0.8rem 1rem; }
  .brand { font-size: 1.2rem; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.1rem; }
  .hero-title { font-size: clamp(2.3rem, 10vw, 3.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-stat-n { font-size: 1.7rem; }

  .floater--a, .floater--b, .floater--c { font-size: 0.82rem; padding: 0.4rem 0.65rem; }
  .floater--b { right: -4%; }

  .btn-stamp { padding: 0.8rem 1.25rem; font-size: 0.95rem; }
  .game-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mascot-img-wrap,
  .floater--a,
  .floater--b,
  .floater--c,
  .game-card { animation: none !important; }
}
