:root {
  --bg: #000;
  --bg-2: #070707;
  --line: #1c1c1c;
  --line-2: #2a2a2a;
  --text: #f4f4f4;
  --muted: #8a8a8a;
  --dim: #5c5c5c;
  --white: #fff;
  --font: "Pixelify Sans", system-ui, sans-serif;
  --display: "Syne", "Manrope", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 18px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

code {
  font-family: var(--mono);
  font-size: 0.92em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: #fff;
  color: #000;
  padding: 8px 12px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topbar {
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--mono);
}

.topbar a {
  margin-left: 10px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.topbar strong {
  color: #fff;
  font-weight: 500;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 53px;
}

.wordmark1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 23px;
}

.mark {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  background: #000;
  box-shadow: inset 3px 3px 0 #fff;
}

.mark.sm {
  width: 10px;
  height: 10px;
  box-shadow: inset 2px 2px 0 #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
  margin-left: auto;
}

.nav-links a:hover {
  color: #fff;
}

.nav-buy {
  color: #000 !important;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.socials svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}

.nav-socials {
  flex-shrink: 0;
}

.nav-socials a:hover,
.footer-socials a:hover {
  color: #fff;
  border-color: #fff;
}

.footer-socials {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 4px;
}

.footer-socials a {
  gap: 10px;
  margin: 10px 0 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
}

.hero,
.hero-stage,
.section,
.footer,
.stage {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  scroll-margin-top: 92px;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
  align-items: center;
  padding: 72px 0 24px;
}

.hero-stage .hero,
.hero-stage .stage {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.hero {
  padding: 92px 0 40px;
  text-align: center;
}

.hero-stage .hero {
  text-align: left;
}

.hero-stage .hero h1 {
  font-size: clamp(40px, 4.8vw, 64px);
}

.hero-stage .lede {
  margin: 0 0 28px;
}

.hero-stage .hero-actions {
  justify-content: flex-start;
}

.hero-stage .stat-row {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  max-width: none;
  width: 100%;
}

.kicker,
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 14px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 800;
  margin: 28px 0 22px;
}

.lede {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.row-2 {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.btn-solid {
  background: #fff;
  color: #000;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.btn:hover {
  opacity: 0.86;
}

.stat-row {
  list-style: none;
  padding: 0;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-row li {
  padding: 22px 8px;
  border-right: 1px solid var(--line);
}

.stat-row li:last-child {
  border-right: 0;
}

.stat-row strong {
  display: block;
  font-family: var(--mono);
  font-size: 26px;
  letter-spacing: 0;
}

.stat-row span {
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
}

.stage {
  padding-bottom: 28px;
}

.hero-stage .browser-body {
  min-height: 0;
  padding: 16px;
  gap: 12px;
  grid-template-columns: 1fr;
}

.hero-stage .float-panel {
  display: none;
}

.hero-stage .balance {
  font-size: 30px;
}

.hero-stage .stage-num {
  font-size: 22px;
}

.hero-stage .mini-mines {
  width: 88px;
}

.hero-stage .stage-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.slot-marquee {
  position: relative;
  width: 100%;
  margin: 0 0 28px;
  overflow: hidden;
}

.slot-marquee-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0 24px;
  pointer-events: none;
  text-align: center;
  font-size: clamp(28px, 5.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
}

.slot-marquee::before,
.slot-marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.slot-marquee::before {
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.42) 16%,
    rgba(0, 0, 0, 0.18) 50%,
    rgba(0, 0, 0, 0.42) 84%,
    #000 100%
  );
}

.slot-marquee::after {
  background: linear-gradient(
    180deg,
    #000 0%,
    transparent 18%,
    transparent 82%,
    #000 100%
  );
}

.slot-marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.slot-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: slot-marquee 32s linear infinite;
}

.slot-marquee-group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.slot-marquee-group img {
  width: 132px;
  height: 174px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: #111;
}

@keyframes slot-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.platform-board {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
  padding: 22px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.platform-board-title {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.04em;
  font-weight: 800;
}

.platform-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}

.platform-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #000;
}

.platform-grid img,
.platform-strip img,
.price-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: #111;
  flex-shrink: 0;
}

.platform-grid strong {
  display: block;
  font-size: 15px;
}

.platform-grid span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.platform-bar {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
  padding: 22px 0 26px;
  text-align: center;
}

.platform-bar p {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.platform-strip {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  width: min(var(--max), calc(100% - 48px));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.platform-bar .platform-strip {
  margin-bottom: 0;
}

.platform-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #000;
  font-size: 13px;
}

.platform-strip img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.browser {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-2);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

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

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a2a;
  display: block;
}

.url {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
}

.live {
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
}

.browser-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  padding: 28px;
  min-height: 560px;
  align-items: start;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}

.wallet-head {
  grid-column: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.tiny {
  font-size: 12px;
  line-height: 1.5;
}

.balance,
.panel-figure,
.preview-big,
.price {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 4px 0 0;
}

.balance {
  font-size: 42px;
}

.token-chip {
  border: 1px solid var(--line-2);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
}

.stage-grid {
  grid-column: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.stage-card,
.preview-frame,
.bento-block,
.price-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.72);
}

.stage-card {
  padding: 16px;
}

.stage-num {
  font-size: 28px;
  font-family: var(--display);
  margin: 10px 0 4px;
}

.win {
  color: #fff;
  margin: 0;
}

.mini-mines {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 112px;
  gap: 3px;
  margin-top: 12px;
}

.mini-mines span {
  aspect-ratio: 1;
  border: 1px solid var(--line-2);
  background: #0c0c0c;
}

.mini-mines .mine {
  background: #fff;
}

.mini-mines .gem {
  background: #3a3a3a;
}

.notice {
  margin: 12px 0 8px;
  font-size: 15px;
}

.float-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 16px;
  background: #050505;
}

.float-panel header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--display);
}

.float-panel label,
.field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.float-panel input,
.field input,
.field select {
  background: #000;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
}

.float-panel input:focus,
.field input:focus,
.field select:focus {
  border-color: #fff;
}

.section {
  padding: 100px 0;
}

.section-alt {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 10px 0 14px;
}

.section-head p {
  color: var(--muted);
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bento-block {
  padding: 28px;
}

.bento-block h3 {
  font-size: 28px;
  margin: 8px 0 20px;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.panel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.panel-copy .section-head {
  max-width: none;
  margin-bottom: 28px;
}

.panel-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
  counter-reset: notes;
}

.panel-notes li {
  color: var(--muted);
  padding-left: 48px;
  position: relative;
}

.panel-notes li::before {
  counter-increment: notes;
  content: counter(notes, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--mono);
  color: #fff;
}

.panel-notes strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.panel {
  padding: 8px 8px 16px;
  position: sticky;
  top: 88px;
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 12px;
}

.panel-status {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.panel-tabs {
  display: flex;
  gap: 4px;
  overflow: auto;
  padding: 0 8px 12px;
}

.panel-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.panel-tabs button[aria-selected="true"] {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.panel-pane {
  display: none;
  padding: 8px 12px 4px;
}

.panel-pane.is-active {
  display: block;
}

.panel-figure {
  font-size: 32px;
  margin: 0 0 16px;
}

.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.seg button {
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--muted);
}

.seg button.is-on {
  background: #fff;
  color: #000;
}

.switch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
}

.switch-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.switch {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #1a1a1a;
  border: 1px solid var(--line-2);
  position: relative;
  cursor: pointer;
}

.switch i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #666;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.2s ease;
}

.switch.on {
  background: #fff;
  border-color: #fff;
}

.switch.on i {
  left: 18px;
  background: #000;
}

.mines-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 12px 0 16px;
}

.mines-board button {
  aspect-ratio: 1;
  border: 1px solid var(--line-2);
  background: #0a0a0a;
  cursor: pointer;
  border-radius: 6px;
}

.mines-board button.mine {
  background: #fff;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.warn {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.preview {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.preview-frame {
  min-height: 180px;
  padding: 20px;
  margin-bottom: 16px;
}

.preview-big {
  font-size: 36px;
}

.preview h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.preview p {
  color: var(--muted);
  margin: 0;
}

.toast-stack {
  display: grid;
  gap: 8px;
}

.toast,
.log li {
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.log {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.log li {
  display: flex;
  justify-content: space-between;
}

.pos {
  color: #fff;
}

.neg {
  color: var(--muted);
}

.keno-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}

.keno-grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-family: var(--mono);
  border: 1px solid var(--line);
  color: var(--dim);
}

.keno-grid span.hot {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.keno-grid span.warm {
  background: #2a2a2a;
  color: #fff;
}

.game-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.game-grid li {
  border: 1px solid var(--line);
  min-height: 110px;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 20px;
}

.game-grid span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.price-card {
  max-width: none;
  padding: 24px;
}

.price-logo {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.price-card .price {
  font-size: 40px;
  margin: 6px 0 8px;
}

.price-card .btn {
  margin-top: 18px;
}

.price {
  font-size: 72px;
  line-height: 1;
  margin: 8px 0 10px;
}

.ticks {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ticks li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.ticks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 7px;
}

.pay {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.pay-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.nowpay {
  display: inline-block;
  line-height: 0;
  margin: 12px 0 8px;
}

.nowpay img {
  height: auto;
  width: min(100%, 250px);
}

.pay .btn {
  margin-bottom: 8px;
}

.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps li {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.steps span {
  font-family: var(--mono);
  color: var(--dim);
}

.steps h3 {
  margin: 8px 0;
  font-size: 22px;
}

.steps p {
  color: var(--muted);
  margin: 0;
}

.roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.roadmap li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.roadmap p {
  grid-column: 2;
  color: var(--muted);
  margin: 6px 0 0;
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: fit-content;
  border: 1px solid #fff;
  padding: 4px 8px;
  width: fit-content;
}

.tag.planned {
  border-color: var(--line-2);
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 0;
  max-width: 820px;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 18px;
  font-family: var(--display);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0 0 20px;
  color: var(--muted);
}

.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: var(--muted);
  margin: 8px 0 0;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
}

.footer .wordmark {
  color: #fff;
}

.legal {
  margin-top: 40px;
  color: var(--dim);
  font-size: 13px;
  font-family: var(--mono);
}

.checkout {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.checkout[hidden] {
  display: none;
}

.checkout-card {
  position: relative;
  width: min(440px, 100%);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background: #0a0a0a;
  padding: 28px 24px 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.checkout-card h2 {
  font-size: 28px;
  margin: 6px 0 8px;
}

.checkout-card form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-card label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-card .opt {
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--dim);
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
}

.checkout-card input,
.checkout-card select {
  background: #000;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font);
  font-size: 15px;
}

.checkout-card input:focus,
.checkout-card select:focus {
  border-color: #fff;
}

.checkout-error {
  margin: 0;
  color: #f87171;
  font-size: 13px;
}

.checkout-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: #111;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.checkout-x svg {
  width: 16px;
  height: 16px;
}

body.checkout-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    background: #000;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 22px;
    gap: 14px;
  }

  .nav-links.open {
    display: flex;
    z-index: 51;
  }

  .nav-socials {
    margin-left: auto;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-row li:nth-child(2n) {
    border-right: 0;
  }

  .stage-grid,
  .bento,
  .preview-grid,
  .game-grid,
  .steps,
  .footer-grid,
  .browser-body {
    grid-template-columns: 1fr;
  }

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

  .browser-body {
    display: flex;
    flex-direction: column;
  }

  .stat-row li {
    border-bottom: 1px solid var(--line);
  }

  .float-panel,
  .panel {
    position: static;
  }

  .roadmap li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .roadmap p {
    grid-column: 1;
  }

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

  .hero,
  .section {
    padding-top: 64px;
  }
}

@media (max-width: 720px) {
  .hero-stage,
  .panel-wrap {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    padding-top: 48px;
  }

  .hero-stage .hero {
    text-align: center;
  }

  .hero-stage .lede {
    margin: 0 auto 28px;
  }

  .hero-stage .hero-actions {
    justify-content: center;
  }

  .hero-stage .stage-grid {
    grid-template-columns: 1fr;
  }

  #panel .panel {
    justify-self: center;
    width: min(420px, 100%);
  }

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

  .platform-board {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-stage,
  .section,
  .footer,
  .stage {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    padding: 12px 16px;
    gap: 10px;
  }

  .nav-socials a {
    width: 30px;
    height: 30px;
  }

  .slot-marquee-group img {
    width: 104px;
    height: 136px;
  }

  .slot-marquee-title {
    font-size: 28px;
  }

  .price {
    font-size: 52px;
  }

  .balance {
    font-size: 32px;
  }

  .game-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .larp-pane.is-active {
    animation: none;
  }
}
.panel {
  padding: 0;
  position: sticky;
  top: 88px;
}

.larp-card {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  justify-self: center;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  color: #f8fafc;
  background: #000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.larp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 24px 18px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.larp-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #f8fafc;
  line-height: 1.15;
}

.larp-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.larp-x {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.9);
  color: #cbd5e1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.larp-x:hover {
  background: #1e293b;
  color: #f8fafc;
}

.larp-x svg {
  width: 16px;
  height: 16px;
}

.larp-tabs {
  display: flex;
  padding: 0 10px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.larp-tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.larp-tab svg {
  width: 13px;
  height: 13px;
}

.larp-tab:hover {
  color: #cbd5e1;
}

.larp-tab[aria-selected="true"] {
  color: #c7d2fe;
  border-bottom-color: #818cf8;
}

.larp-body {
  padding: 20px 16px 22px 22px;
  overflow-y: auto;
  max-height: min(480px, 62vh);
  background: #000;
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a #000;
}

.larp-body::-webkit-scrollbar {
  width: 6px;
}

.larp-body::-webkit-scrollbar-track {
  background: #000;
  border-radius: 99px;
}

.larp-body::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 99px;
  border: 1px solid #000;
}

.larp-pane {
  display: none;
}

.larp-pane.is-active {
  display: block;
  animation: larpBodyIn 0.14s ease;
}

@keyframes larpBodyIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.larp-card label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 0 0 6px;
  font-weight: 700;
}

.larp-sel {
  position: relative;
  margin: 0 0 14px;
}

.larp-sel::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.larp-sel:focus-within::after {
  border-color: #a5b4fc;
}

.larp-card input,
.larp-card select {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.9);
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.larp-card select {
  padding-right: 38px;
  cursor: pointer;
}

.larp-card input.larp-amount {
  font-size: 18px;
  padding: 13px 14px;
  margin: 0 0 16px;
}

.larp-card input:focus,
.larp-card select:focus {
  border-color: rgba(129, 140, 248, 0.65);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.larp-card select option {
  background: #0f172a;
  color: #f1f5f9;
}

.larp-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 12px;
}

.larp-btn {
  border: 0;
  border-radius: 12px;
  padding: 13px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.larp-btn:hover {
  filter: brightness(1.06);
}

.larp-btn-ok {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.22);
}

.larp-btn-ghost {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #cbd5e1;
  box-shadow: none;
}

.larp-btn-market {
  width: 100%;
  margin: 0 0 10px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #c7d2fe;
  box-shadow: none;
}

.larp-btn-market:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.28), rgba(139, 92, 246, 0.28));
  border-color: rgba(129, 140, 248, 0.55);
  color: #e0e7ff;
}

.larp-btn-danger {
  background: rgba(185, 28, 28, 0.9);
  box-shadow: none;
}

.larp-btn-wide {
  width: 100%;
  margin: 0 0 12px;
}

.larp-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 14px;
}

.larp-stat > div {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 11px;
  color: #94a3b8;
}

.larp-stat b {
  display: block;
  color: #f8fafc;
  font-size: 16px;
  margin-top: 4px;
  font-weight: 700;
}

.larp-level {
  display: flex;
  align-items: center;
  gap: 6px;
}

.larp-stat-wide > div {
  grid-column: 1 / -1;
}

.larp-toast {
  min-height: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  margin-top: 8px;
}

.larp-vipgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.larp-track {
  height: 4px;
  background: #1e293b;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
}

.larp-fill {
  height: 100%;
  background: #22c55e;
}

.larp-muted {
  color: #64748b;
  font-size: 11px;
  margin-top: 6px;
}

.larp-foot {
  margin-top: 12px;
  padding: 10px;
  text-align: center;
  color: #64748b;
  font-size: 10px;
  line-height: 1.7;
}

.larp-foot b {
  color: #94a3b8;
}