.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + var(--safe-top) + 10px) 0 76px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__float {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.float-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.floaty {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: var(--s);
  rotate: var(--rot, 0deg);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
  animation: floaty var(--dur, 7s) ease-in-out var(--delay, 0s) infinite alternate;
}

.float-layer--far .floaty {
  opacity: 0.55;
  filter: blur(1.4px) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}

@keyframes floaty {
  from {
    translate: 0 -12px;
  }

  to {
    translate: 0 14px;
  }
}

.emblem {
  position: relative;
  width: clamp(128px, 21vh, 206px);
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  perspective: 700px;
}

.emblem__tilt {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out);
}

.emblem__tilt > * {
  grid-area: 1 / 1;
}

.emblem__aura {
  width: 158%;
  height: 158%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(93, 233, 255, 0.36), rgba(139, 92, 255, 0.16) 55%, transparent 76%);
  animation: aura 4.6s ease-in-out infinite;
}

@keyframes aura {
  0%,
  100% {
    opacity: 0.6;
    scale: 0.92;
  }

  50% {
    opacity: 1;
    scale: 1.06;
  }
}

.emblem__ring {
  border-radius: 50%;
  pointer-events: none;
}

.emblem__ring--a {
  width: 126%;
  height: 126%;
  background: conic-gradient(from 0deg, transparent 0 8%, rgba(93, 233, 255, 0.95) 21%, transparent 34% 50%, rgba(255, 212, 74, 0.92) 64%, transparent 78%);
  -webkit-mask: radial-gradient(circle, transparent 65.5%, #000 67%, #000 69.5%, transparent 71%);
  mask: radial-gradient(circle, transparent 65.5%, #000 67%, #000 69.5%, transparent 71%);
  animation: spin 9s linear infinite;
}

.emblem__ring--b {
  width: 146%;
  height: 146%;
  background: repeating-conic-gradient(from 0deg, rgba(200, 240, 255, 0.7) 0 1.6deg, transparent 1.6deg 11deg);
  -webkit-mask: radial-gradient(circle, transparent 68.3%, #000 69.3%, #000 70.4%, transparent 71.4%);
  mask: radial-gradient(circle, transparent 68.3%, #000 69.3%, #000 70.4%, transparent 71.4%);
  opacity: 0.45;
  animation: spin 30s linear infinite reverse;
}

.emblem__logo {
  width: 84%;
  height: 84%;
  filter: drop-shadow(0 0 22px rgba(93, 233, 255, 0.5)) drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55));
  animation: bob 5.2s ease-in-out infinite;
}

.emblem:active .emblem__logo {
  scale: 0.94;
}

@keyframes bob {
  0%,
  100% {
    translate: 0 -5px;
  }

  50% {
    translate: 0 6px;
  }
}

.title {
  position: relative;
  margin-top: clamp(0px, 1vh, 12px);
  padding: 0.02em 0.1em 0.08em;
  font-size: clamp(76px, min(16vw, 19vh), 196px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.06em;
  overflow: hidden;
  filter: drop-shadow(0 0 26px rgba(93, 233, 255, 0.28));
}

.title__text {
  display: inline-block;
  perspective: 600px;
}

.title .ch {
  display: inline-block;
  padding: 0 0.04em;
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #fff 8%, #e2fbff 36%, #86f1ff 62%, #2ee6b8 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

:root.js-on:not(.is-ready) .title .ch {
  opacity: 0;
}

:root.is-ready .title .ch {
  animation: ch-in 0.95s var(--ease-out) calc(80ms + var(--i, 0) * 75ms) both;
}

@keyframes ch-in {
  from {
    opacity: 0;
    transform: translateY(0.7em) rotateX(-75deg);
  }
}

:root.is-ready .title .ch.is-in {
  animation: none;
}

:root.is-ready .title.is-shine .ch.is-in {
  animation: ch-shine 0.9s var(--ease-soft) calc(var(--i, 0) * 80ms) both;
}

@keyframes ch-shine {
  from {
    background-position: 160% 0, 0 0;
  }

  to {
    background-position: -60% 0, 0 0;
  }
}

:root[data-theme='light'] .title {
  filter: drop-shadow(0 10px 24px rgba(90, 63, 208, 0.22));
}

:root[data-theme='light'] .title .ch {
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #2b2260 0%, #5a3fd0 58%, #0f9d7a 100%);
}

.lede {
  margin-top: clamp(8px, 1.8vh, 18px);
  max-width: 34ch;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: #c9d3ee;
  text-wrap: balance;
  text-shadow: 0 1px 3px rgba(var(--bg-rgb), 0.95), 0 2px 18px rgba(var(--bg-rgb), 0.9), 0 0 42px rgba(var(--bg-rgb), 0.85);
}

:root[data-theme='light'] .lede {
  color: var(--text-dim);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.lede strong {
  color: var(--text);
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(18px, 3.4vh, 34px);
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 262px;
  padding: 10px 26px 10px 10px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  transition: translate 0.25s var(--ease-out), box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  translate: -120% 0;
  pointer-events: none;
  transition: translate 0.75s var(--ease-out);
}

.cta:hover::after,
.cta:focus-visible::after {
  translate: 120% 0;
}

.cta:hover {
  translate: 0 -3px;
}

.cta:active {
  translate: 0 3px;
}

.cta__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 44px;
}

.cta__text b {
  display: block;
  font-size: 18.5px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.cta__text small {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 700;
  opacity: 0.8;
}

.cta--slots {
  color: #2a1500;
  background: linear-gradient(180deg, #fff7d6 0%, #ffe07a 20%, #f6b52c 58%, #d88f12 100%);
  box-shadow: 0 6px 0 #8a5405, 0 18px 36px -12px rgba(255, 190, 60, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.cta--slots:active {
  box-shadow: 0 2px 0 #8a5405, 0 10px 24px -12px rgba(255, 190, 60, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.cta--slots .cta__icon {
  background: radial-gradient(circle at 50% 35%, #fff9e8 0%, #ffeec2 55%, #e9c77a 100%);
  box-shadow: inset 0 0 0 2px rgba(138, 84, 5, 0.45);
}

.cta--mm {
  color: #fff;
  background: linear-gradient(180deg, #ffb6de 0%, #ff72c2 36%, #e0288f 100%);
  box-shadow: 0 6px 0 var(--berry), 0 18px 36px -12px rgba(255, 95, 181, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  text-shadow: 0 2px 0 rgba(122, 15, 83, 0.6);
}

.cta--mm:active {
  box-shadow: 0 2px 0 var(--berry), 0 10px 24px -12px rgba(255, 95, 181, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cta--mm .cta__icon {
  background: radial-gradient(circle at 50% 35%, #fff 0%, #ffe3f1 60%, #ffc2e1 100%);
  box-shadow: inset 0 0 0 2px rgba(122, 15, 83, 0.35);
}

.hero__arcade {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.hero__arcade:hover {
  color: var(--cyan);
}

.hero__arrow {
  display: inline-flex;
  animation: nudge 1.8s ease-in-out infinite;
}

.hero__arrow svg {
  width: 16px;
  height: 16px;
}

@keyframes nudge {
  0%,
  100% {
    translate: 0 -1px;
  }

  50% {
    translate: 0 3px;
  }
}

.hero__live {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  animation: rise-in 0.7s var(--ease-out) both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    translate: 0 14px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 6px 14px 6px 7px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  background: var(--panel);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pill .sp {
  font-size: 24px;
}

.pill b {
  color: var(--text);
  font-weight: 900;
}

.pill__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pill__avatar {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  object-fit: cover;
}

:root[data-lite='true'] .pill {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: calc(22px + var(--safe-bottom));
  z-index: 2;
  width: 26px;
  height: 42px;
  margin-left: -13px;
  border-radius: 14px;
  border: 2px solid var(--line-2);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--cyan);
  animation: cue 1.9s var(--ease-soft) infinite;
}

@keyframes cue {
  0% {
    opacity: 0;
    translate: 0 -2px;
  }

  30% {
    opacity: 1;
  }

  80%,
  100% {
    opacity: 0;
    translate: 0 14px;
  }
}

.hero.is-idle *,
.games.is-idle *,
.arcade.is-idle * {
  animation-play-state: paused !important;
}

.games,
.arcade,
.community {
  position: relative;
  padding-top: clamp(72px, 12vh, 128px);
}

.section-head {
  margin-bottom: clamp(28px, 5vh, 48px);
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
}

.kicker::before,
.kicker::after {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

:root[data-theme='light'] .kicker {
  color: #5a3fd0;
}

.section-title {
  margin-top: 10px;
  font-size: clamp(36px, 5.6vw, 62px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-sub {
  max-width: 54ch;
  margin: 12px auto 0;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dim);
  text-wrap: balance;
  text-shadow: 0 1px 3px rgba(var(--bg-rgb), 0.9), 0 2px 16px rgba(var(--bg-rgb), 0.85);
}

.section-title,
.hero__arcade {
  text-shadow: 0 2px 20px rgba(var(--bg-rgb), 0.75);
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.gcard {
  --glow-a: var(--gold);
  --glow-b: var(--violet);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transition: translate 0.4s var(--ease-out);
}

.gcard::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--glow-a), transparent 38%, transparent 62%, var(--glow-b));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gcard:hover {
  translate: 0 -6px;
}

.gcard:hover::before {
  opacity: 1;
}

.gcard--mm {
  --glow-a: var(--pink-hi);
  --glow-b: #ffe45c;
}

.gcard__media {
  position: relative;
  height: clamp(260px, 29vw, 320px);
  overflow: hidden;
}

.gcard__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px clamp(18px, 2.6vw, 30px) 26px;
}

.gcard__title {
  font-weight: 400;
  line-height: 1;
  paint-order: stroke fill;
}

.gcard__title--slots {
  font-family: var(--font-slots);
  font-size: clamp(36px, 4vw, 46px);
  letter-spacing: 0.01em;
  color: var(--gold);
  -webkit-text-stroke: 2px var(--gold-deep);
  text-shadow: 0 4px 0 var(--gold-deep), 0 0 28px rgba(255, 190, 60, 0.35);
}

.gcard__title--mm {
  font-family: var(--font-candy);
  font-size: clamp(38px, 4.2vw, 48px);
  color: #fff;
  -webkit-text-stroke: 2.5px var(--berry);
  text-shadow: 0 4px 0 var(--berry), 0 0 28px rgba(255, 95, 181, 0.35);
}

.gcard__title--mm span:first-child {
  color: #ffe45c;
}

.gcard__text {
  font-size: 15px;
  color: var(--text-dim);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px 4px 5px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

:root[data-theme='light'] .chips li {
  background: rgba(44, 32, 96, 0.04);
}

.chips img {
  width: 26px;
  height: 26px;
}

.chips .sp {
  font-size: 26px;
}

.gcard__me {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 8px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(var(--cyan-rgb), 0.08);
  border: 1px solid rgba(var(--cyan-rgb), 0.24);
  animation: rise-in 0.6s var(--ease-out) both;
}

.stat .sp {
  font-size: 22px;
}

.stat small {
  font-weight: 700;
  color: var(--text-dim);
}

.stat__bar {
  position: relative;
  width: 64px;
  height: 6px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.stat__bar i {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--accent));
  transform-origin: 0 50%;
  scale: var(--p, 0) 1;
}

.gbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  transition: translate 0.2s var(--ease-out), box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.gbtn svg {
  width: 18px;
  height: 18px;
  transition: translate 0.25s var(--ease-out);
}

.gbtn:hover {
  translate: 0 -2px;
}

.gbtn:hover svg {
  translate: 4px 0;
}

.gbtn:active {
  translate: 0 3px;
}

.gbtn--gold {
  color: #2a1500;
  background: linear-gradient(180deg, #fff3c0, #ffd44a 45%, #f0a91d);
  box-shadow: 0 5px 0 #8a5405, 0 14px 30px -12px rgba(255, 190, 60, 0.7);
}

.gbtn--gold:active {
  box-shadow: 0 2px 0 #8a5405, 0 8px 20px -12px rgba(255, 190, 60, 0.7);
}

.gbtn--candy {
  color: #fff;
  background: linear-gradient(180deg, #ff9ad4, #ff5fb5 45%, #d21f8c);
  box-shadow: 0 5px 0 var(--berry), 0 14px 30px -12px rgba(255, 95, 181, 0.7);
  text-shadow: 0 2px 0 rgba(122, 15, 83, 0.55);
}

.gbtn--candy:active {
  box-shadow: 0 2px 0 var(--berry), 0 8px 20px -12px rgba(255, 95, 181, 0.7);
}

.gcard__closed {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a1500;
  background: var(--gold);
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.6);
}

.gcard.is-closed .gcard__closed {
  display: block;
}

.gcard--slots .gcard__media {
  background: radial-gradient(80% 90% at 50% 30%, #3b1a6e, #12072a 70%, #07040f);
}

.gcard__slides {
  position: absolute;
  inset: 0;
}

.gcard__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.gcard__slide.is-on {
  opacity: 0.6;
  animation: kenburns 10s ease-out both;
}

@keyframes kenburns {
  from {
    transform: scale(1.14) translate3d(-2%, 1.5%, 0);
  }

  to {
    transform: scale(1.02);
  }
}

.gcard__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 70% at 50% 46%, transparent 0%, rgba(7, 4, 15, 0.5) 72%),
    linear-gradient(180deg, rgba(7, 4, 15, 0.3) 0%, transparent 40%, rgba(7, 4, 15, 0.88) 100%);
}

.gcard__now {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 244, 222, 0.8);
  transition: opacity 0.5s ease;
}

.gcard__now b {
  color: var(--gold);
  font-weight: 900;
}

.minimachine {
  --cell: clamp(52px, 6vw, 70px);
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  padding: 14px;
  border-radius: 22px;
  translate: -50% -50%;
  background: linear-gradient(180deg, #ffe9a3 0%, #f0a91d 28%, #a86a06 70%, #ffd666 100%);
  box-shadow: 0 0 0 2px #4a2a00, 0 20px 40px -12px rgba(0, 0, 0, 0.85), 0 0 60px -12px rgba(255, 190, 60, 0.55);
}

.minimachine__window {
  position: relative;
  padding: 6px;
  border-radius: 12px;
  background: #2a1500;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.8);
}

.minimachine__reels {
  display: flex;
  gap: 6px;
}

.mreel {
  position: relative;
  width: var(--cell);
  height: calc(var(--cell) * 3);
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #d4c6a8 0%, #fffaf0 22%, #fffdf8 50%, #fffaf0 78%, #d4c6a8 100%);
}

.mreel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 20, 0, 0.4), transparent 24%, transparent 76%, rgba(40, 20, 0, 0.4));
  pointer-events: none;
}

.mreel__strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}

.mreel__strip.is-blur {
  filter: blur(1.4px);
}

.mreel__cell {
  display: grid;
  place-items: center;
  width: var(--cell);
  height: var(--cell);
}

.mreel__cell .sp {
  font-size: calc(var(--cell) * 0.84);
}

.minimachine__line {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  border-radius: 2px;
  background: #ff3d6e;
  box-shadow: 0 0 14px 2px rgba(255, 61, 110, 0.8);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.minimachine.is-win .minimachine__line {
  opacity: 1;
  animation: blink 0.36s steps(2, jump-none) 5;
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

.minimachine__lights {
  position: absolute;
  inset: 4px;
  pointer-events: none;
}

.bulb {
  position: absolute;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #fff6c8;
  box-shadow: 0 0 6px 2px rgba(255, 230, 140, 0.9);
  animation: bulb 1.2s steps(1, end) infinite;
  animation-delay: calc(var(--k) * -0.15s);
}

@keyframes bulb {
  50% {
    opacity: 0.2;
  }
}

.minimachine__win {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: 0 auto;
  width: max-content;
  padding: 4px 16px 2px;
  border-radius: 99px;
  font-family: var(--font-slots);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #2a1500;
  background: linear-gradient(180deg, #fff3c0, #ffd44a);
  box-shadow: 0 3px 0 #8a5405, 0 0 24px rgba(255, 212, 74, 0.8);
  opacity: 0;
  scale: 0.4;
  transition: opacity 0.25s ease, scale 0.4s var(--ease-pop);
}

.minimachine.is-win .minimachine__win {
  opacity: 1;
  scale: 1;
}

.gcard--mm .gcard__media {
  background: radial-gradient(120% 90% at 50% 12%, #ff7ac6 0%, #b8338f 34%, #4a0f6e 74%, #1b0533 100%);
}

.gcard__swirl {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150%;
  aspect-ratio: 1;
  margin: -75% 0 0 -75%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.13) 0 9deg, transparent 9deg 18deg);
  -webkit-mask: radial-gradient(closest-side, #000 25%, transparent 78%);
  mask: radial-gradient(closest-side, #000 25%, transparent 78%);
  animation: spin 46s linear infinite;
}

.mmboard {
  --cell: clamp(40px, 4.5vw, 52px);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: calc(var(--cell) * var(--cols, 7) + 16px);
  height: calc(var(--cell) * var(--rows, 4) + 16px);
  border-radius: 18px;
  translate: -50% -50%;
  background: rgba(40, 0, 50, 0.5);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.88), 0 6px 0 var(--berry), 0 22px 40px -12px rgba(30, 0, 40, 0.8);
}

.mmboard__cells,
.mmboard__fruits {
  position: absolute;
  inset: 8px;
  border-radius: 11px;
}

.mmboard__cells {
  background: conic-gradient(rgba(255, 255, 255, 0.16) 25%, rgba(255, 255, 255, 0.06) 0 50%, rgba(255, 255, 255, 0.16) 0 75%, rgba(255, 255, 255, 0.06) 0) 0 0 / calc(var(--cell) * 2) calc(var(--cell) * 2);
}

.mmboard__fruits {
  overflow: hidden;
}

.mmfruit {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: var(--cell);
  height: var(--cell);
  will-change: transform;
}

.mmfruit .sp {
  font-size: calc(var(--cell) * 0.9);
}

.mmboard__word {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  z-index: 4;
  text-align: center;
  font-family: var(--font-candy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  color: #ffe45c;
  -webkit-text-stroke: 2.5px var(--berry);
  paint-order: stroke fill;
  text-shadow: 0 4px 0 var(--berry), 0 10px 20px rgba(40, 0, 40, 0.6);
  pointer-events: none;
  opacity: 0;
}

.mmboard__word.is-on {
  animation: word-pop 1.2s var(--ease-out) both;
}

@keyframes word-pop {
  0% {
    opacity: 0;
    scale: 0.3;
    rotate: -8deg;
  }

  18% {
    opacity: 1;
    scale: 1.15;
    rotate: 3deg;
  }

  32% {
    scale: 1;
    rotate: 0deg;
  }

  78% {
    opacity: 1;
    translate: 0 0;
  }

  100% {
    opacity: 0;
    translate: 0 -30px;
  }
}

.burst {
  position: absolute;
  z-index: 5;
  width: 0;
  height: 0;
  pointer-events: none;
}

.burst i {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: var(--c, #fff);
  box-shadow: 0 0 6px var(--c, #fff);
}

.shock {
  position: absolute;
  z-index: 5;
  border: 3px solid;
  border-radius: 50%;
  pointer-events: none;
}

.rain {
  position: absolute;
  top: 0;
  z-index: 3;
  pointer-events: none;
}

.legends {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.legends__title {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

:root[data-theme='light'] .legends__title {
  color: #a86a06;
}

.legends__title .sp {
  font-size: 26px;
}

.legends__list {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.legends__list::-webkit-scrollbar {
  display: none;
}

.legend {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 5px 13px 5px 5px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.legend__rank {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  color: #1a1300;
  background: #c9d1e4;
}

.legend:nth-child(1) .legend__rank {
  background: linear-gradient(180deg, #fff3c0, #ffc933);
}

.legend:nth-child(2) .legend__rank {
  background: linear-gradient(180deg, #f4f7ff, #a9b5cf);
}

.legend:nth-child(3) .legend__rank {
  background: linear-gradient(180deg, #ffd9b8, #d98a4c);
}

.legend__name {
  max-width: 16ch;
  overflow: hidden;
  text-overflow: ellipsis;
}

.legend__lv {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dim);
}

.machines {
  margin-top: clamp(40px, 7vh, 64px);
}

.machines__title {
  margin-bottom: 14px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.machines__viewport {
  padding: 10px 0 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.machines__track {
  display: flex;
  width: max-content;
  animation: marquee 80s linear infinite;
}

.machines__viewport:hover .machines__track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.mtile {
  position: relative;
  flex: none;
  width: 250px;
  aspect-ratio: 16 / 9;
  margin-right: 14px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--deep, #111);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.9);
  transition: translate 0.3s var(--ease-out), border-color 0.3s ease;
}

.mtile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.6s var(--ease-out);
}

.mtile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.88));
}

.mtile:hover {
  translate: 0 -4px;
  border-color: var(--m-accent);
}

.mtile:hover img {
  scale: 1.07;
}

.mtile__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--m-accent), var(--m-accent2));
}

.mtile__name {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 25px;
  z-index: 1;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.mtile__tag {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  z-index: 1;
  overflow: hidden;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.78);
}

.kicker--neon {
  color: var(--magenta);
}

.neon-title {
  margin-top: 10px;
  font-family: var(--font-neon);
  font-size: clamp(46px, 7.4vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.neon-title__a {
  color: #e9fdff;
  text-shadow: 0 0 6px rgba(93, 233, 255, 0.9), 0 0 18px rgba(93, 233, 255, 0.7), 0 0 42px rgba(93, 233, 255, 0.5);
}

.neon-title__b {
  display: inline-block;
  color: #ffe9fd;
  text-shadow: 0 0 6px rgba(255, 61, 242, 0.9), 0 0 18px rgba(255, 61, 242, 0.7), 0 0 42px rgba(255, 61, 242, 0.5);
  animation: flicker 7s linear infinite;
}

@keyframes flicker {
  0%,
  17%,
  21%,
  24%,
  52%,
  56%,
  100% {
    opacity: 1;
  }

  19%,
  23%,
  54% {
    opacity: 0.42;
  }
}

:root[data-theme='light'] .neon-title__a {
  color: #0e7fa0;
  text-shadow: 0 0 14px rgba(93, 233, 255, 0.6);
}

:root[data-theme='light'] .neon-title__b {
  color: #c21fb6;
  text-shadow: 0 0 14px rgba(255, 61, 242, 0.45);
}

.medals {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 15px 6px 7px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  background: var(--panel);
  border: 1px solid var(--line);
}

.medals .sp {
  font-size: 26px;
}

.arcade__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cab {
  --neon: var(--cyan);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transition: translate 0.35s var(--ease-out);
}

.cab::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1.5px solid var(--neon);
  box-shadow: 0 0 24px -4px var(--neon), inset 0 0 24px -12px var(--neon);
  opacity: 0.32;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cab:hover {
  translate: 0 -6px;
}

.cab:hover::before,
.cab:focus-within::before {
  opacity: 1;
}

.cab--plinko {
  --neon: #5de9ff;
  --neon-deep: #06303a;
}

.cab--fruit {
  --neon: #ff9b3d;
  --neon-deep: #3a1a04;
}

.cab--whack {
  --neon: #ff3df2;
  --neon-deep: #3a0636;
}

.cab--memory {
  --neon: #b4ff3d;
  --neon-deep: #1c3406;
}

.cab__screen {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  container-type: size;
  background: radial-gradient(90% 90% at 50% 18%, var(--neon-deep), #05060d 82%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 40px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.cab__screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3px);
  pointer-events: none;
}

.cab__info {
  flex: 1;
  padding: 14px 6px 12px;
}

.cab__title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.cab__desc {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--text-dim);
}

.cab__best {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-faint);
}

.cab__best b {
  color: var(--text);
}

.medal-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.25);
}

.medal-dot--bronze {
  background: linear-gradient(180deg, #ffd0a6, #c9772e);
}

.medal-dot--silver {
  background: linear-gradient(180deg, #ffffff, #9eaac2);
}

.medal-dot--gold {
  background: linear-gradient(180deg, #fff3c0, #ffc01f);
}

.cab__play {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #05060d;
  background: var(--neon);
  box-shadow: 0 0 24px -6px var(--neon);
  transition: translate 0.2s var(--ease-out), filter 0.2s ease;
}

.cab__play:hover {
  translate: 0 -2px;
  filter: brightness(1.12);
}

.cab__play:active {
  translate: 0 2px;
}

.pv-plinko,
.pv-fruit,
.pv-whack,
.pv-memory {
  position: absolute;
  inset: 0;
}

.pv-plinko__pegs {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 14%;
  bottom: 27%;
  background-image: radial-gradient(circle, rgba(170, 245, 255, 0.95) 0 1.6px, transparent 2.2px);
  background-size: 8.5cqw 7.5cqh;
  background-position: center top;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pv-plinko__ball {
  position: absolute;
  left: 50%;
  top: 7%;
  width: 4.4cqw;
  height: 4.4cqw;
  margin-left: -2.2cqw;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #ffd44a 45%, #f0a91d);
  box-shadow: 0 0 10px rgba(255, 212, 74, 0.9);
  animation: pv-drop-a 2.8s cubic-bezier(0.45, 0, 0.8, 1) infinite;
}

.pv-plinko__ball--b {
  animation-name: pv-drop-b;
  animation-delay: -1.4s;
}

@keyframes pv-drop-a {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  20% {
    transform: translate(-4cqw, 12cqh);
  }

  36% {
    transform: translate(1cqw, 24cqh);
  }

  52% {
    transform: translate(-3cqw, 36cqh);
  }

  68% {
    transform: translate(-9cqw, 48cqh);
  }

  84% {
    transform: translate(-14cqw, 62cqh);
  }

  92%,
  100% {
    transform: translate(-16cqw, 72cqh);
    opacity: 0;
  }
}

@keyframes pv-drop-b {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  20% {
    transform: translate(4cqw, 12cqh);
  }

  36% {
    transform: translate(9cqw, 24cqh);
  }

  52% {
    transform: translate(5cqw, 36cqh);
  }

  68% {
    transform: translate(11cqw, 48cqh);
  }

  84% {
    transform: translate(17cqw, 62cqh);
  }

  92%,
  100% {
    transform: translate(21cqw, 72cqh);
    opacity: 0;
  }
}

.pv-plinko__slots {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 9%;
  height: 11%;
  display: flex;
  gap: 1.4cqw;
}

.pv-plinko__slots i {
  flex: 1;
  border-radius: 1.4cqw;
  background: var(--c);
  box-shadow: 0 0 10px -2px var(--c);
}

.pv-plinko__slots i:nth-child(1),
.pv-plinko__slots i:nth-child(7) {
  --c: #ff4d6d;
}

.pv-plinko__slots i:nth-child(2),
.pv-plinko__slots i:nth-child(6) {
  --c: #ff9b3d;
}

.pv-plinko__slots i:nth-child(3),
.pv-plinko__slots i:nth-child(5) {
  --c: #ffd44a;
}

.pv-plinko__slots i:nth-child(4) {
  --c: #3ddc84;
  animation: blink 1.4s steps(2, jump-none) infinite;
}

.pv-fruit .sp {
  position: absolute;
  top: -22%;
  width: 18cqw;
  height: 18cqw;
  animation: pv-fall 2.6s linear infinite;
}

.pv-fruit .sp:nth-child(1) {
  left: 10%;
}

.pv-fruit .sp:nth-child(2) {
  left: 36%;
  animation-delay: -0.9s;
  animation-duration: 2.2s;
}

.pv-fruit .sp:nth-child(3) {
  left: 60%;
  animation-delay: -1.7s;
  animation-duration: 3s;
}

.pv-fruit .sp:nth-child(4) {
  left: 78%;
  animation-delay: -0.4s;
  animation-duration: 2.4s;
}

@keyframes pv-fall {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(128cqh) rotate(220deg);
  }
}

.pv-fruit__basket {
  position: absolute;
  left: 37%;
  bottom: 7%;
  width: 26%;
  height: 15%;
  border-radius: 8% 8% 45% 45% / 10% 10% 90% 90%;
  background: linear-gradient(180deg, #ffc27a, #ff8a1f 55%, #a84d00);
  box-shadow: 0 0 18px rgba(255, 155, 61, 0.65), inset 0 3px 0 rgba(255, 255, 255, 0.5);
  animation: pv-basket 2.3s ease-in-out infinite alternate;
}

@keyframes pv-basket {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(110%);
  }
}

.pv-whack {
  inset: 10% 9% 6%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4% 6%;
}

.pv-whack__hole {
  position: relative;
  overflow: hidden;
}

.pv-whack__hole::before,
.pv-whack__hole::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 30%;
  border-radius: 50%;
}

.pv-whack__hole::before {
  background: radial-gradient(closest-side, #000, #1a0418);
  box-shadow: 0 0 0 2px rgba(255, 61, 242, 0.55);
}

.pv-whack__hole::after {
  height: 16%;
  bottom: -2%;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: linear-gradient(180deg, #ff3df2, #6d0a66);
  z-index: 2;
}

.pv-whack__hole .sp {
  position: absolute;
  left: 18%;
  bottom: 6%;
  z-index: 1;
  width: 64%;
  height: auto;
  aspect-ratio: 1;
  transform: translateY(110%);
  animation: pv-pop 3.6s ease-in-out infinite;
}

.pv-whack__hole:nth-child(2) .sp {
  animation-delay: -1.2s;
}

.pv-whack__hole:nth-child(3) .sp {
  animation-delay: -2.6s;
}

.pv-whack__hole:nth-child(4) .sp {
  animation-delay: -0.6s;
}

.pv-whack__hole:nth-child(5) .sp {
  animation-delay: -3.1s;
}

.pv-whack__hole:nth-child(6) .sp {
  animation-delay: -1.9s;
}

@keyframes pv-pop {
  0%,
  52%,
  100% {
    transform: translateY(110%);
  }

  60%,
  78% {
    transform: translateY(0);
  }
}

.pv-memory {
  inset: 11% 13%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 7%;
  perspective: 500px;
}

.pv-card {
  position: relative;
  border-radius: 12%;
  transform-style: preserve-3d;
  animation: pv-flip 4.8s ease-in-out infinite;
}

.pv-card::before,
.pv-card .sp {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pv-card::before {
  content: '';
  background:
    radial-gradient(circle at 50% 50%, rgba(180, 255, 61, 0.55) 0 18%, transparent 19%),
    repeating-linear-gradient(45deg, #1c3406 0 6px, #274a0a 6px 12px);
  box-shadow: inset 0 0 0 2px #b4ff3d;
}

.pv-card .sp {
  width: auto;
  height: auto;
  background-color: #f6ffe8;
  background-size: 600% 500%;
  box-shadow: inset 0 0 0 2px #b4ff3d;
  transform: rotateY(180deg);
}

.pv-card:nth-child(2) {
  animation-delay: -0.8s;
}

.pv-card:nth-child(3) {
  animation-delay: -1.6s;
}

.pv-card:nth-child(4) {
  animation-delay: -2.4s;
}

.pv-card:nth-child(5) {
  animation-delay: -3.2s;
}

.pv-card:nth-child(6) {
  animation-delay: -4s;
}

@keyframes pv-flip {
  0%,
  22% {
    transform: rotateY(0deg);
  }

  32%,
  68% {
    transform: rotateY(180deg);
  }

  78%,
  100% {
    transform: rotateY(0deg);
  }
}

.socials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.social {
  --brand: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: translate 0.3s var(--ease-out), border-color 0.3s ease;
}

.social::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 140% at 0% 0%, var(--brand-soft), transparent 62%);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.social:hover {
  translate: 0 -4px;
  border-color: var(--brand);
}

.social:hover::before {
  opacity: 1;
}

.social__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  background: var(--brand-tile, var(--brand));
  box-shadow: 0 12px 24px -12px var(--brand);
  transition: rotate 0.4s var(--ease-pop);
}

.social:hover .social__icon {
  rotate: -8deg;
}

.social__icon svg {
  width: 26px;
  height: 26px;
}

.social__text {
  min-width: 0;
}

.social__text b {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.social__text small {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
}

.social__go {
  flex: none;
  margin-left: auto;
  color: var(--text-faint);
  transition: translate 0.3s var(--ease-out), color 0.3s ease;
}

.social__go svg {
  width: 20px;
  height: 20px;
}

.social:hover .social__go {
  translate: 3px -3px;
  color: var(--brand);
}

.social--youtube {
  --brand: #ff3b3b;
  --brand-soft: rgba(255, 59, 59, 0.28);
}

.social--discord {
  --brand: #5865f2;
  --brand-soft: rgba(88, 101, 242, 0.32);
}

.social--steam {
  --brand: #66c0f4;
  --brand-soft: rgba(102, 192, 244, 0.26);
  --brand-tile: linear-gradient(135deg, #1b2838, #2a475e);
}

.social--spotify {
  --brand: #1ed760;
  --brand-soft: rgba(30, 215, 96, 0.26);
}

.social--spotify .social__icon {
  color: #04140a;
}

.footer {
  position: relative;
  margin-top: clamp(80px, 14vh, 140px);
  padding-bottom: calc(26px + var(--safe-bottom));
  overflow: hidden;
}

.footer__big {
  margin-bottom: -0.1em;
  font-size: clamp(120px, 30vw, 420px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-align: center;
  color: transparent;
  background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.2), rgba(139, 92, 255, 0.08) 55%, transparent 85%);
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  pointer-events: none;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer__logo {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 12px rgba(93, 233, 255, 0.35));
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
}

.footer__links a:hover {
  color: var(--text);
}

.footer__copy {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-faint);
}

:root[data-lite='true'] .float-layer--far,
:root[data-fx='off'] .hero__float {
  display: none;
}

@media (max-width: 1100px) {
  .arcade__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .games__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .gcard__media {
    height: clamp(240px, 56vw, 320px);
  }

  .minimachine {
    --cell: clamp(50px, 11vw, 70px);
  }

  .mmboard {
    --cell: clamp(38px, 9.4vw, 54px);
  }

  .legends {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 360px);
  }

  .cta {
    min-width: 0;
  }

  .mtile {
    width: 190px;
  }

  .footer__copy {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .arcade__grid {
    grid-template-columns: 1fr;
  }

  .cab {
    display: grid;
    grid-template-columns: 42% 1fr;
    grid-template-rows: 1fr auto;
    gap: 10px 12px;
  }

  .cab__screen {
    grid-row: 1 / span 2;
    aspect-ratio: 3 / 4;
    align-self: stretch;
  }

  .cab__info {
    padding: 4px 2px 0;
  }

  .cab__desc {
    font-size: 13px;
  }

  .socials {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 640px) {
  .scroll-cue {
    display: none;
  }
}
