:root {
  --bg: #080808;
  --card: #111113;
  --red: #e10600;
  --red2: #ff2d22;
  --ink: #f5f5f5;
  --dim: #8d8d93;
  --line: #222226;
  --bronze: #c4a06a;
  --bronze-dim: #3a2a1c;
  --header-h: 80px;
  --gutter: 56px;
  --section-y: 128px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}
body[data-page="platform"] { overflow-x: clip; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.skip {
  position: absolute; left: 12px; top: 0;
  background: #fff; color: #111; padding: 8px 12px; border-radius: 8px;
  font-weight: 700; font-size: 13px; z-index: 100;
  transform: translateY(-250%);
}
.skip:focus, .skip:focus-visible { transform: none; top: 8px; }

.wrap { width: min(1120px, calc(100% - var(--gutter) * 2)); margin: 0 auto; }
.wrap-narrow { width: min(760px, calc(100% - var(--gutter) * 2)); margin: 0 auto; }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(8,8,8,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid #1a1a1a;
}
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; gap: 10px; align-items: center; font-weight: 800; letter-spacing: -.04em; }
.logo-mark { width: 40px; height: 20px; display: block; overflow: visible; }
.logo-tile {
  fill: currentColor;
  transform-box: fill-box;
}
.logo-tile.tl { transform-origin: 50% 100%; }
.logo-tile.bl { transform-origin: 50% 0%; }
.brand:hover .logo-tile.tl,
.brand:hover .logo-tile.bl {
  animation: logo-wink .42s cubic-bezier(.2, 0, .15, 1);
}
@keyframes logo-wink {
  0%, 100% { transform: scaleY(1); }
  36%, 50% { transform: scaleY(.05); }
}
.links { display: flex; gap: 28px; color: #cfcfd4; font-size: 14px; font-weight: 500; }
.links a[aria-current="page"] { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 0;
  border-radius: 999px; border: 1px solid #2a2a30; background: #141416;
  cursor: pointer;
}
.lang-flag {
  width: 18px; height: 13px; border-radius: 2px; display: block; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14);
}
.lang-menu {
  display: flex; gap: 2px;
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #141416; border: 1px solid #2a2a30; border-radius: 14px;
  padding: 6px; z-index: 50;
}
.lang-menu[hidden] { display: none; }
.lang-menu button {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 32px; padding: 0;
  background: none; border: 0; border-radius: 10px; cursor: pointer;
}
.lang-menu button[aria-selected="true"],
.lang-menu button:hover { background: #1c1c20; color: #fff; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  background: #141416; border: 1px solid #2a2a30; color: #fff;
  place-items: center; cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }
.drawer {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 18px 18px; border-top: 1px solid #1a1a1a;
  background: #0c0c0e;
}
.drawer a { padding: 12px 8px; font-weight: 600; color: #cfcfd4; }
.drawer a[aria-current="page"] { color: #fff; }
body.menu-open { overflow: hidden; }
@media (max-width: 900px) {
  body.menu-open .drawer { display: flex; }
}
@keyframes kori-fly {
  0% { right: 62%; top: 52%; }
  100% { right: 14%; top: 16%; opacity: .4; }
}
body[data-page="games"] .plane,
body[data-page="original"] .plane {
  animation: kori-fly 3.2s ease-in-out infinite;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 13px 20px; font-weight: 700; font-size: 14px;
  border: 0; cursor: pointer; font-family: inherit; color: inherit; background: transparent;
}
.btn-w { background: #fff; color: #111; }
.btn-r { background: var(--red); color: #fff; }
.btn-g { border: 1px solid #2a2a2a; color: #fff; }

.k { color: var(--red2); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
h1 { font-size: clamp(34px, 4.6vw, 64px); letter-spacing: -.05em; line-height: 1.14; font-weight: 800; max-width: 16ch; }
h1 span { color: #6f6f76; }
h1 .accent { color: var(--red); }
h2 { font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -.04em; line-height: 1.2; margin: 0 0 20px; max-width: 22ch; }
h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.3; }
.lead, .sub { color: var(--dim); max-width: 58ch; font-size: 17px; line-height: 1.6; }
h1 + .lead { margin-top: 32px; }
.lead + .sub, .lead + .note { margin-top: 20px; }
h2 + .sub, h2 + .lead, h2 + .note { margin-top: 0; }
.hero { padding: 112px 0 72px; }
.crumb + .hero { padding-top: 56px; }
.hero-act { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr);
  align-items: center;
  column-gap: 8px;
}
.hero-home .canvas { grid-column: 1 / -1; }
.hero-kv {
  position: relative;
  pointer-events: none;
  min-height: 480px;
}
.hero-kv img {
  width: 142%;
  max-width: none;
  height: auto;
  margin-left: -8%;
}
section { padding: var(--section-y) 0; }
.hero-home + #platform { padding-top: 24px; }
#platform + .stats { padding: 8px 0 var(--section-y); }

.crumb { display: flex; gap: 8px; align-items: center; padding: 40px 0 0; font-size: 13px; color: #8d8d93; }
.crumb a { color: #fff; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 64px 80px; padding: 8px 0 24px; justify-items: center; }
.stat { background: none; border: 0; padding: 0; max-width: 360px; text-align: center; }
.stat-visual {
  height: 188px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 0 14px;
}
.stat-visual img {
  width: 188px;
  max-width: 188px;
  max-height: 188px;
  object-fit: contain;
  object-position: center bottom;
}
.stat b { display: block; font-size: 20px; letter-spacing: -.03em; margin-bottom: 8px; }
.stat span { color: var(--dim); font-size: 13px; line-height: 1.5; display: block; max-width: 30ch; margin: 0 auto; }

.row, .mods { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.row-3 { grid-template-columns: repeat(3, 1fr); }
.kori-acc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.kori-panel {
  padding: 22px 26px;
  overflow: hidden;
}
.kori-panel:not(.is-open) { padding: 20px 26px; }
.kori-panel.is-open { padding: 28px 26px; }
.kori-panel h3 { margin: 0; }
.kori-panel-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: left;
  cursor: pointer;
}
.kori-panel-body {
  display: none;
  margin-top: 14px;
}
.kori-panel.is-open .kori-panel-body { display: block; }
.kori-panel.is-open .kori-panel-body p { margin-bottom: 18px; }
.fair-ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin: 0 0 18px;
  color: #fff;
  background: #1a1a1e;
  border: 1px solid #2c2c32;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  overflow: visible;
}
.fair-ico svg { width: 22px; height: 22px; display: block; overflow: visible; }
#fair .card:hover .fair-ico,
#core .card:hover .fair-ico,
#functions .card:hover .fair-ico {
  background: #222228;
  border-color: #3a3a42;
}

/* Lucide Animated — key: turn around the bow */
.fair-ico[data-lucide="key"] svg {
  transform-origin: 30% 70%;
  animation: lucide-key 2.8s ease-in-out infinite;
}
@keyframes lucide-key {
  0%, 50%, 100% { transform: rotate(0deg); }
  2% { transform: rotate(-3deg); }
  13% { transform: rotate(-33deg); }
  17% { transform: rotate(-25deg); }
  21% { transform: rotate(-28deg); }
  50% { transform: rotate(0deg); }
}

/* Lucide Animated — lock: shake + shackle opens */
.fair-ico[data-lucide="lock"] svg {
  transform-origin: 50% 50%;
  animation: lucide-lock 2.8s cubic-bezier(.4, 0, .2, 1) .2s infinite;
}
.fair-lock-shackle {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: lucide-lock-shackle 2.8s cubic-bezier(.4, 0, .2, 1) .2s infinite;
}
@keyframes lucide-lock {
  0%, 36%, 100% { transform: rotate(0deg) scale(1); }
  9% { transform: rotate(-3deg) scale(.95); }
  18% { transform: rotate(1deg) scale(1.05); }
  27% { transform: rotate(-2deg) scale(.98); }
  36% { transform: rotate(0deg) scale(1); }
}
@keyframes lucide-lock-shackle {
  0%, 55%, 100% { stroke-dashoffset: 0; }
  11%, 45% { stroke-dashoffset: .3; }
}

/* Lucide Animated — trending-up: draw line, then arrow, lift */
.fair-ico[data-lucide="trending-up"] svg {
  animation: lucide-trend 2.8s ease .4s infinite;
}
.fair-trend-line,
.fair-trend-arrow {
  stroke-dasharray: 1;
}
.fair-trend-line { animation: lucide-trend-line 2.8s ease .4s infinite; }
.fair-trend-arrow { animation: lucide-trend-arrow 2.8s ease .4s infinite; }
@keyframes lucide-trend {
  0%, 18%, 100% { transform: translate(0, 0); }
  9% { transform: translate(2px, -2px); }
}
@keyframes lucide-trend-line {
  0%, 2% { stroke-dashoffset: 1; opacity: 0; }
  4% { opacity: 1; }
  14%, 72% { stroke-dashoffset: 0; opacity: 1; }
  82%, 100% { stroke-dashoffset: 1; opacity: 0; }
}
@keyframes lucide-trend-arrow {
  0%, 11% { stroke-dashoffset: .5; opacity: 0; }
  13% { opacity: 1; }
  21%, 72% { stroke-dashoffset: 0; opacity: 1; }
  82%, 100% { stroke-dashoffset: .5; opacity: 0; }
}

/* Lucide Animated — clipboard-check: check draws in */
.fair-check {
  stroke-dasharray: 1;
  transform-origin: center;
  animation: lucide-check 2.8s ease-in-out .6s infinite;
}
@keyframes lucide-check {
  0%, 2% { stroke-dashoffset: 1; opacity: 0; }
  13%, 70% { stroke-dashoffset: 0; opacity: 1; }
  80%, 100% { stroke-dashoffset: 1; opacity: 0; }
}

/* Lucide Animated — core stack */
#core .card:nth-child(1) .fair-ico { animation-delay: 0s; }
#core .card:nth-child(2) .fair-ico svg { animation-delay: .12s; }
#core .card:nth-child(3) .fair-ico svg { animation-delay: .24s; }
#core .card:nth-child(4) .core-shield-check { animation-delay: .36s; }
#core .card:nth-child(5) .core-chart-line { animation-delay: .48s; }
#core .card:nth-child(6) .core-users-in { animation-delay: .6s; }
#core .card:nth-child(7) .core-sparkle { animation-delay: .72s; }
#core .card:nth-child(8) .fair-ico svg { animation-delay: .84s; }

.fair-ico[data-lucide="layers"] .core-layer-mid,
.fair-ico[data-lucide="layers"] .core-layer-bot { transform-box: fill-box; }
.fair-ico[data-lucide="layers"] .core-layer-mid { animation: core-layer-mid 2.8s ease infinite; }
.fair-ico[data-lucide="layers"] .core-layer-bot { animation: core-layer-bot 2.8s ease infinite; }
@keyframes core-layer-mid {
  0%, 22%, 100% { transform: translateY(0); }
  11% { transform: translateY(-4px); }
}
@keyframes core-layer-bot {
  0%, 22%, 100% { transform: translateY(0); }
  11% { transform: translateY(-8px); }
}

.fair-ico[data-lucide="play"] svg {
  transform-origin: 40% 50%;
  animation: lucide-play 2.8s ease infinite;
}
@keyframes lucide-play {
  0%, 18%, 100% { transform: translateX(0) rotate(0deg); }
  4% { transform: translateX(-1px) rotate(-10deg); }
  9% { transform: translateX(2px) rotate(0deg); }
}

.fair-ico[data-lucide="credit-card"] svg { animation: lucide-card 2.8s ease infinite; }
@keyframes lucide-card {
  0%, 25%, 100% { transform: translateX(0); }
  10% { transform: translateX(-4px); }
  19% { transform: translateX(1.5px); }
}

.core-shield-check {
  stroke-dasharray: 1;
  transform-origin: center;
  animation: lucide-check 2.8s ease-in-out infinite;
}
.core-chart-line {
  stroke-dasharray: 1;
  animation: lucide-trend-line 2.8s ease infinite;
}

.core-users-in { animation: lucide-users 2.8s ease infinite; }
@keyframes lucide-users {
  0%, 4% { transform: translateX(-6px); opacity: 0; }
  18%, 72% { transform: translateX(0); opacity: 1; }
  84%, 100% { transform: translateX(-6px); opacity: 0; }
}

.core-sparkle { animation: lucide-sparkle 2.8s ease infinite; }
.core-spark-star { animation: lucide-spark-star 2.8s ease infinite; }
@keyframes lucide-sparkle {
  0%, 100% { transform: translateY(0); }
  18% { transform: translateY(-1px); }
  36% { transform: translateY(0); }
}
@keyframes lucide-spark-star {
  0%, 35%, 55%, 100% { opacity: 1; }
  40%, 50% { opacity: 0; }
}

.fair-ico[data-lucide="rocket"] svg { animation: lucide-rocket 2.8s ease-in-out infinite; }
@keyframes lucide-rocket {
  0%, 100% { transform: translate(0, 0); }
  18% { transform: translate(0, -3px); }
  36% { transform: translate(-2px, 0); }
  54% { transform: translate(1px, -2px); }
  72% { transform: translate(-1px, -1px); }
}

.fn-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.fn-head .sub { margin-bottom: 0; }
.fn-nav { display: flex; gap: 8px; flex-shrink: 0; padding-bottom: 4px; }
.fn-nav button {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid #2a2a30;
  background: #141416;
  color: #fff;
  cursor: pointer;
}
.fn-nav button svg { width: 18px; height: 18px; display: block; }
.fn-nav button:hover:not(:disabled) { background: #1c1c20; border-color: #3a3a42; }
.fn-nav button:disabled { opacity: .35; cursor: default; }
.fn-rail-wrap {
  position: relative;
  margin-top: 40px;
  margin-right: calc(50% - 50vw + var(--gutter));
}
.fn-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 8px;
  width: 72px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--bg));
}
.fn-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 4px var(--gutter) 12px 0;
  scrollbar-width: none;
}
.fn-rail::-webkit-scrollbar { display: none; }
.fn-rail .card {
  flex: 0 0 min(320px, 78vw);
  min-height: 268px;
  scroll-snap-align: start;
}
.fn-code-l, .fn-code-r { transform-box: fill-box; }
.fn-code-l { animation: fn-code-l 2.8s ease infinite; }
.fn-code-r { animation: fn-code-r 2.8s ease infinite; }
@keyframes fn-code-l {
  0%, 70%, 100% { transform: translateX(0); }
  35% { transform: translateX(-2px); }
}
@keyframes fn-code-r {
  0%, 70%, 100% { transform: translateX(0); }
  35% { transform: translateX(2px); }
}
.fn-clap {
  transform-origin: 12% 90%;
  transform-box: fill-box;
  animation: lucide-clap 2.8s ease infinite;
}
@keyframes lucide-clap {
  0%, 55%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-16deg); }
  32% { transform: rotate(0deg); }
}
.fair-ico[data-lucide="wallet"] svg,
.fair-ico[data-lucide="id-card"] svg {
  transform-origin: 50% 50%;
  animation: lucide-wallet 2.8s ease infinite;
}
@keyframes lucide-wallet {
  0%, 22%, 100% { transform: translateY(0) rotate(0deg); }
  10% { transform: translateY(-3px) rotate(-4deg); }
}
.fn-print {
  stroke-dasharray: 1;
  animation: lucide-print 2.8s ease infinite;
}
@keyframes lucide-print {
  0% { stroke-dashoffset: 1; opacity: 0; }
  10% { opacity: 1; }
  45%, 70% { stroke-dashoffset: 0; opacity: 1; }
  86%, 100% { stroke-dashoffset: 1; opacity: 0; }
}
.fair-ico[data-lucide="trophy"] svg { animation: lucide-trophy 2.8s ease infinite; }
@keyframes lucide-trophy {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
  50% { transform: translateY(0); }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.card h3 { font-size: 18px; margin-bottom: 14px; letter-spacing: -.03em; }
.card p { color: var(--dim); font-size: 14px; line-height: 1.55; margin: 0; }
.card ul, .list { margin-top: 2px; }
.card li, .list li { list-style: none; padding: 8px 0; color: var(--dim); font-size: 14px; line-height: 1.5; }
.card li::before, .list li::before { content: "▸ "; color: var(--red2); }
#kori .kori-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
#kori .kori-panel li::before {
  content: "";
  width: 0;
  height: 0;
  margin-top: 5px;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--red2);
  flex-shrink: 0;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip, .brand-chip {
  border: 1px solid #2d2d32; background: #17171a; border-radius: 999px;
  padding: 7px 11px; font-size: 12px; font-weight: 600;
}
.chip.pay-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  min-height: 44px;
  min-width: 70px;
}
.chip.pay-item img {
  display: block;
  width: auto;
  height: 18px;
}
.chip.pay-item .pay-word { height: 13px; }
.chip.pay-item .pay-mark { height: 22px; }
.chip.pay-item .pay-icon { height: 20px; }
.chip.pay-item.pay-named { gap: 8px; }
.chip.pay-item .pay-label { font-size: 12px; font-weight: 600; color: #fff; }
.brand-chip { font-size: 13px; padding: 9px 14px; }
.brands { display: flex; flex-wrap: wrap; gap: 10px; }

.canvas {
  margin-top: 72px; position: relative;
  background: #0c0c0e; border: 1px solid #2a1515; border-radius: 28px; min-height: 460px; overflow: hidden;
}
.ui {
  width: min(880px, 88%); margin: 64px auto 0;
  background: #12141c; border-radius: 20px 20px 0 0;
  border: 1px solid #2a2d3a;
  transform: perspective(1200px) rotateX(8deg);
}
.ui-top { display: flex; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #232633; font-size: 12px; color: #9aa; }
.ui-body { display: grid; grid-template-columns: 180px 1fr; min-height: 280px; }
.side { padding: 18px 16px; color: #8b8b96; font-size: 13px; }
.side div { padding: 10px 12px; border-radius: 8px; }
.side .on { background: #1c1f2b; color: #fff; }
.promo {
  margin: 22px; border-radius: 16px; min-height: 230px;
  background: #1a0c10; padding: 32px; position: relative; overflow: hidden;
  border: 1px solid #3a1515;
}
.promo-lines { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.05em; font-weight: 800; line-height: 1.15; }
.promo-meta { margin-top: 16px; color: #b9b9c0; font-size: 13px; }
.float {
  position: absolute; background: #141416; border: 1px solid #2c2c32;
  border-radius: 18px; padding: 12px 14px; z-index: 2;
}
.fa { left: 24px; top: 24px; }
.fb { right: 24px; top: 80px; }
.fc { left: 40px; bottom: 24px; }
.lbl { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .08em; }
.n { font-size: 22px; font-weight: 800; }

.games, .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.games-3 { grid-template-columns: repeat(3, 1fr); }
.games { align-items: stretch; margin-top: 72px; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g {
  position: relative; overflow: visible; min-height: 0; border-radius: 20px;
  border: 1px solid rgba(225, 6, 0, .45); padding: 18px 16px;
  background: transparent; color: inherit;
}
.g b { display: block; font-size: 16px; margin-top: 36px; line-height: 1.35; }
.g-play {
  min-height: 0;
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  gap: 10px;
  background: rgba(225, 6, 0, .14);
  border: 1px solid #e10600;
}
.g-play:hover { background: rgba(225, 6, 0, .2); }
.g-copy { min-width: 0; }
.g-play b { margin-top: 6px; font-size: 18px; line-height: 1.2; }
.g-play .lbl { margin-top: 0; line-height: 1.3; display: block; }
.ico {
  width: 80px; height: 80px; margin: 0;
  flex: 0 0 80px;
  align-self: center;
  overflow: visible;
}
.ico > svg { width: 80px; height: 80px; display: block; overflow: visible; }
.ico-crash { position: relative; }
.ico-curve {
  fill: none; stroke: #e10600; stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  filter: drop-shadow(0 0 5px rgba(225,6,0,.8));
  animation: crash-draw 3.4s cubic-bezier(.42,.02,.22,1) infinite;
}
.ico-rocket {
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; color: #fff;
  offset-path: path("M10 66 C 24 60 32 40 46 24 S 60 12 70 18");
  offset-rotate: auto 40deg;
  offset-anchor: center;
  animation: crash-ride 3.4s cubic-bezier(.42,.02,.22,1) infinite;
  filter: drop-shadow(0 0 3px rgba(255,255,255,.45));
}
.ico-rocket svg { width: 100%; height: 100%; display: block; overflow: visible; }
.ico-boom { transform-origin: 70px 18px; animation: crash-boom 3.4s ease-out infinite; }
.ico-ball { animation: plinko-drop 2.2s linear infinite; }
.ico-ball.b { animation-delay: .7s; }
.ico-ball.c { animation-delay: 1.3s; }
.mine-tile.s1 { animation: mine-safe 2.8s ease-in-out infinite; }
.mine-tile.s2 { animation: mine-safe 2.8s ease-in-out .1s infinite; }
.mine-tile.s3 { animation: mine-safe 2.8s ease-in-out .2s infinite; }
.mine-tile.s4 { animation: mine-safe 2.8s ease-in-out .28s infinite; }
.mine-tile.s5 { animation: mine-safe 2.8s ease-in-out .36s infinite; }
.mine-tile.s6 { animation: mine-safe 2.8s ease-in-out .44s infinite; }
.mine-tile.s7 { animation: mine-safe 2.8s ease-in-out .52s infinite; }
.mine-tile.s8 { animation: mine-safe 2.8s ease-in-out .6s infinite; }
.mine-tile.hit { animation: mine-hit-tile 2.8s ease-in-out infinite; }
.pip { opacity: 0; }
.pip.p1 { animation: mine-pip 2.8s ease-in-out infinite; }
.pip.p2 { animation: mine-pip 2.8s ease-in-out .1s infinite; }
.pip.p3 { animation: mine-pip 2.8s ease-in-out .2s infinite; }
.pip.p4 { animation: mine-pip 2.8s ease-in-out .28s infinite; }
.pip.p5 { animation: mine-pip 2.8s ease-in-out .36s infinite; }
.pip.p6 { animation: mine-pip 2.8s ease-in-out .44s infinite; }
.pip.p7 { animation: mine-pip 2.8s ease-in-out .52s infinite; }
.pip.p8 { animation: mine-pip 2.8s ease-in-out .6s infinite; }
.ico-bomb { opacity: 0; transform-origin: 40px 42px; animation: mine-bomb-in 2.8s ease-in-out infinite; }
.ico-spark { animation: mine-spark .35s ease-in-out infinite; }
.burst-ring { transform-origin: 40px 42px; animation: mine-burst 2.8s ease-out infinite; }
.burst-ring.b2 { animation-delay: .08s; }
.ico-die.die-a { transform-origin: 25px 51px; animation: dice-roll 2.4s ease-in-out infinite; }
.ico-die.die-b { transform-origin: 56px 27px; animation: dice-roll-b 2.4s ease-in-out .18s infinite; }
@keyframes crash-draw {
  0% { stroke-dashoffset: 100; opacity: 1; }
  56% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: .65; }
}
@keyframes crash-ride {
  0% { offset-distance: 0%; transform: scale(1) rotate(0deg); opacity: 1; }
  56% { offset-distance: 100%; transform: scale(1) rotate(0deg); opacity: 1; }
  64% { offset-distance: 100%; transform: scale(1.25, .35) rotate(80deg); opacity: 1; }
  74% { offset-distance: 100%; transform: scale(.25) rotate(170deg); opacity: .7; }
  84%, 100% { offset-distance: 100%; transform: scale(0) rotate(220deg); opacity: 0; }
}
@keyframes crash-boom {
  0%, 58% { opacity: 0; transform: scale(.15); }
  66% { opacity: 1; transform: scale(.85); }
  100% { opacity: 0; transform: scale(1.25); }
}
@keyframes mine-safe {
  0%, 8% { fill: #160808; stroke: #5a1818; }
  20%, 78% { fill: #2a1010; stroke: #a02020; }
  100% { fill: #160808; stroke: #5a1818; }
}
@keyframes mine-hit-tile {
  0%, 36% { fill: #160808; stroke: #5a1818; }
  48% { fill: #4a0c0c; stroke: #e10600; }
  62% { fill: #e10600; stroke: #fff; }
  100% { fill: #160808; stroke: #5a1818; }
}
@keyframes mine-pip {
  0%, 10% { opacity: 0; }
  22%, 78% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes mine-bomb-in {
  0%, 40% { opacity: 0; transform: scale(.4); }
  50%, 70% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.6); }
}
@keyframes mine-spark {
  50% { opacity: .25; transform: scale(1.8); }
}
@keyframes mine-burst {
  0%, 52% { opacity: 0; transform: scale(.4); }
  62% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.7); }
}
@keyframes plinko-drop {
  0% { transform: translate(40px, 4px); }
  16% { transform: translate(28px, 20px); }
  32% { transform: translate(46px, 34px); }
  48% { transform: translate(28px, 46px); }
  64% { transform: translate(46px, 58px); }
  80% { transform: translate(34px, 70px); }
  100% { transform: translate(40px, 86px); }
}
@keyframes dice-roll {
  0% { transform: rotate(0deg); }
  40% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}
@keyframes dice-roll-b {
  0% { transform: rotate(-14deg); }
  45% { transform: rotate(166deg); }
  100% { transform: rotate(346deg); }
}
.g span { color: #b9b9c0; font-size: 12px; }
.g.live { background: #12080e; border-color: #3a1530; }
.g.slot { background: #100c08; border-color: #3a2a15; }
.icon {
  width: 42px; height: 42px; border-radius: 12px; background: #3a1010;
  display: grid; place-items: center; font-size: 15px; font-weight: 800;
}
.badge {
  position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; color: #ffb4ae;
}
.poster {
  height: 132px; border-radius: 14px; margin-bottom: 12px;
  background: #0c0c0e center/cover no-repeat; border: 1px solid #3a1515;
}
.poster.empty { display: grid; place-items: center; color: #8a8a92; font-size: 12px; font-weight: 600; border-style: dashed; }

.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.tabs a {
  border: 1px solid #2a2a30; border-radius: 999px; padding: 8px 12px;
  font-size: 13px; font-weight: 600; color: #ccc;
}
.tabs a:hover, .tabs a[aria-current="location"] { border-color: #e10600; color: #fff; }

.stage {
  margin-top: 40px; border-radius: 24px; border: 1px solid #3a1515; min-height: 280px; padding: 36px;
  background: #0b0b0c; position: relative; overflow: hidden;
}
.mult { font-size: 52px; font-weight: 800; }
.plane { position: absolute; width: 56px; right: 18%; top: 28%; opacity: .85; }
.line { position: absolute; inset: 0; pointer-events: none; }
.crash { height: 200px; width: 100%; border-radius: 16px; margin-top: 16px; }

.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 720px; margin: 0 auto;
  background: #141416; border: 1px solid #2a2a30; border-radius: 18px;
  padding: 14px 16px; box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.cookie p { color: #cfcfd4; font-size: 13px; line-height: 1.45; }
.cookie a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cookie-act { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cookie .btn { padding: 10px 16px; font-size: 13px; }
#mech { margin-top: 12px; }
#mech li {
  list-style: none; padding: 12px 0; border-bottom: 1px solid #1e1e22; color: #d7d7dc;
}
#mech li::before { content: "▸ "; color: var(--red2); }

.contact-hero { padding-bottom: 24px; }
.contact-desk { padding-top: 24px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
}
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-tile {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 24px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
a.contact-tile { text-decoration: none; }
div.contact-tile { cursor: default; }
.contact-tile:hover,
.contact-tile:focus-visible {
  border-color: #3a3a42;
  background: #151518;
}
.contact-tile .fair-ico { margin: 0; flex-shrink: 0; }
.contact-tile b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red2);
}
.contact-tile strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.03em;
  margin: 6px 0 6px;
}
.contact-tile > span:last-child > span {
  display: block;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.5;
}
.contact-map {
  position: relative;
  margin: 0;
  min-height: 480px;
  height: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0c0c0e;
}
.contact-map-frame {
  position: absolute;
  inset: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.7) brightness(.95);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(14,14,16,.9);
  border: 1px solid #2c2c32;
  backdrop-filter: blur(10px);
}
.contact-map-cap strong { display: block; font-size: 14px; letter-spacing: -.02em; }
.contact-map-cap span { display: block; margin-top: 4px; color: var(--dim); font-size: 13px; }

.launch {
  background: #120808; border: 1px solid #3a1414; border-radius: 28px;
  padding: 52px 56px; display: flex; justify-content: space-between; gap: 32px; align-items: center;
  margin: 8px 0 96px;
}
.launch h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.launch p { color: var(--dim); margin-top: 12px; max-width: 52ch; line-height: 1.5; }

footer.site {
  background: #0b0b0c; color: #a3a3a8; padding: 80px 0 40px;
  border-top: 1px solid #1f1f22;
}
footer.site .cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
footer.site h4 {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: #f2f2f2; margin-bottom: 14px; font-weight: 700;
}
footer.site a { display: block; padding: 7px 0; color: #a3a3a8; font-size: 14px; }
footer.site a:hover { color: #fff; }
footer.site .js-lead {
  background: none; border: 0; padding: 5px 0; color: #a3a3a8;
  font: inherit; cursor: pointer; display: block; text-align: left;
}
footer.site .js-lead:hover { color: #fff; }
footer.site .legal {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid #1f1f22;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: #8d8d93;
}
footer.site .legal nav { display: flex; gap: 16px; flex-wrap: wrap; }
footer.site .legal a { display: inline; padding: 0; }

.pack { width: 100%; border-collapse: collapse; margin-top: 44px; font-size: 14px; }
.pack th, .pack td { text-align: left; padding: 22px 18px; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.5; }
.pack th { color: #fff; font-size: 13px; }
.pack td { color: #cfcfd4; }
.pack tr:first-child th { border-bottom: 1px solid #3a1515; }

.note { color: var(--dim); font-size: 15px; line-height: 1.55; margin-top: 20px; max-width: 62ch; }
.legal-doc { padding: 24px 0 96px; }
.legal-doc h1 { margin: 16px 0 24px; }
.legal-doc h2 { font-size: 22px; max-width: none; margin: 36px 0 12px; }
.legal-doc p, .legal-doc li { color: var(--dim); line-height: 1.65; font-size: 15px; }
.legal-doc ul { margin: 8px 0 0 4px; }
.legal-doc li { list-style: disc; margin-left: 18px; padding: 3px 0; }
.status-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-bottom: 1px solid #222; color: #cfcfd4;
}
.status-row b { font-size: 13px; font-weight: 700; color: #c8b48a; }
code { font-size: 13px; color: #ffb4ae; }

.lead-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: grid; place-items: center; z-index: 80; padding: 24px;
}
.lead-overlay[hidden] { display: none; }
.lead-card {
  background: #fff; color: #161616; width: min(480px, 100%);
  border-radius: 24px; padding: 28px 28px 24px; position: relative;
}
.lead-card h2 { margin: 6px 0 8px; letter-spacing: -.04em; font-size: 28px; max-width: none; }
.lead-card p { color: #5c5c5c; font-size: 14px; margin: 0 0 16px; }
.lead-card .k { color: #e10600; }
.lead-card label { display: block; font-size: 12px; font-weight: 600; margin: 10px 0 6px; color: #111; }
.lead-card input, .lead-card textarea {
  width: 100%; border: 1px solid #e6e6e6; border-radius: 12px;
  padding: 11px 12px; font: inherit; background: #fafafa; color: #111;
}
.lead-card input:focus, .lead-card textarea:focus { outline: 2px solid #111; background: #fff; }
.lead-card button[type=submit] {
  margin-top: 16px; width: 100%; border: 0; border-radius: 999px;
  background: #111; color: #fff; padding: 13px; font-weight: 700; cursor: pointer; font-family: inherit;
}
.lead-x {
  position: absolute; top: 14px; right: 16px; border: 0; background: transparent;
  font-size: 22px; cursor: pointer; color: #111; width: 36px; height: 36px;
}
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: 12px; font-weight: 500; color: #333; }
.consent input { width: auto; margin-top: 2px; }
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.lead-err { color: #a10; font-size: 13px; margin-top: 8px; }

.plat-hero {
  padding: 28px 0 8px;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1.22fr);
  align-items: center;
  column-gap: 12px;
  overflow: visible;
}
.crumb + .plat-hero { padding-top: 24px; }
.plat-hero-copy { max-width: 36ch; position: relative; z-index: 2; }
.plat-hero-copy h1 { font-size: clamp(32px, 4vw, 52px); max-width: 14ch; }
.plat-hero-copy .lead { margin-top: 20px; }
.plat-hero-copy .hero-act { margin-top: 28px; }

.plat-kv {
  position: relative;
  min-height: 520px;
  perspective: 1600px;
  margin-right: calc(var(--gutter) * -1);
}
.plat-kv-glow {
  position: absolute;
  inset: 8% -8% 4% 8%;
  background:
    radial-gradient(ellipse 55% 45% at 58% 38%, rgba(225,6,0,.2), transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 20%, rgba(255,255,255,.06), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.plat-kv-stage {
  position: relative;
  transform: rotateY(-16deg) rotateX(7deg) rotateZ(-1.2deg);
  transform-origin: left center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
  will-change: transform;
}
.plat-kv-stage img {
  display: block;
  width: 124%;
  max-width: none;
  height: auto;
}
.plat-kv-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(8,8,8,0) 58%, var(--bg) 94%),
    linear-gradient(90deg, transparent 58%, rgba(8,8,8,.2) 78%, var(--bg) 100%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .games, .grid { grid-template-columns: repeat(2, 1fr); }
  .games { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .games-3 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
  .hero-home { grid-template-columns: 1fr; }
  .plat-kv { min-height: 420px; }
  .hero-kv { min-height: 0; max-width: 520px; margin: 12px auto 0; }
  .hero-kv img { width: 112%; margin-left: -6%; }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; --section-y: 88px; --header-h: 68px; }
  .links { display: none; }
  .nav-toggle { display: grid; }
  .hero { padding: 72px 0 48px; }
  .crumb + .hero { padding-top: 36px; }
  .row, .row-3, .mods, .stats, .games, .games-3, .grid, .launch, .cta, .ui-body, footer.site .cols {
    grid-template-columns: 1fr;
  }
  .cookie { flex-direction: column; align-items: stretch; text-align: left; }
  .float.fb, .float.fc { display: none; }
  .pack { display: block; overflow-x: auto; }
  .launch { padding: 28px 24px; margin-bottom: 56px; }
  .canvas { margin-top: 40px; min-height: 360px; }
  .stat { max-width: none; }
  .stat span { max-width: 36ch; }
  .plat-hero { grid-template-columns: 1fr; }
  .plat-hero-copy { max-width: none; }
  .plat-kv { min-height: 0; margin: 12px calc(var(--gutter) * -0.2) 0; }
  .plat-kv-stage { transform: rotateY(-6deg) rotateX(3deg); }
  .plat-kv-stage img { width: 108%; }
  .fn-head { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .plane, .mult, .g, .ico-rocket, .ico-curve, .ico-boom, .ico-ball, .ico-bomb, .ico-spark, .ico-die, .mine-tile, .pip, .burst-ring, .plat-kv-stage, .fair-ico, .fair-ico svg, .fair-lock-shackle, .fair-trend-line, .fair-trend-arrow, .fair-check, .logo-tile, .kori-panel, .core-layer-mid, .core-layer-bot, .core-shield-check, .core-chart-line, .core-users-in, .core-sparkle, .core-spark-star, .fn-code-l, .fn-code-r, .fn-clap, .fn-print {
    animation: none !important; transition: none !important;
  }
}
