: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; background: var(--bg); }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe 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%; height: auto; 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; }

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; font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }
.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;
  position: relative;
  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; flex-direction: column; gap: 2px;
  position: absolute; left: 50%; top: calc(100% + 8px);
  transform: translateX(-50%);
  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;
  position: relative;
  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; }
@media (hover: hover) and (min-width: 901px) {
  .lang-menu button::after {
    content: attr(aria-label);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s ease;
    transition-delay: 0s;
  }
  .lang-menu button:hover::after,
  .lang-menu button:focus-visible::after {
    opacity: 1;
    transition-delay: 1.5s;
  }
}
.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; font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }
.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 {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--red2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
}
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; }
.hero-feats { margin-top: 36px; }
.hero-feats .card h3 { margin-bottom: 8px; }
@media (max-width: 900px) {
  .hero-feats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero-feats { grid-template-columns: 1fr; }
}
.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-kv {
  position: relative;
  pointer-events: none;
  min-height: 0;
  overflow: visible;
  z-index: 1;
}
.hero-kv img {
  display: block;
  position: relative;
  z-index: 2;
  width: 136%;
  max-width: none;
  height: auto;
  margin-left: -12%;
  opacity: 1 !important;
  visibility: visible !important;
}
section { padding: var(--section-y) 0; }
.hero-home + #platform,
.hero-company + #about,
.hero-compliance + #kyc,
.hero-launch + #models,
.hero-payments + #methods { padding-top: 24px; }
.hero-copy { position: relative; z-index: 2; }
.hero-company .hero-kv,
.hero-compliance .hero-kv,
.hero-launch .hero-kv,
.hero-payments .hero-kv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
}
.hero-company .hero-kv img,
.hero-compliance .hero-kv img,
.hero-launch .hero-kv img,
.hero-payments .hero-kv img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 480px;
  margin: 0;
  object-fit: contain;
}
.hero-payments .hero-feats { grid-column: 1 / -1; }
#platform + .stats { padding: 8px 0 var(--section-y); }

.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; overflow: visible; }
.row-3 { grid-template-columns: repeat(3, 1fr); }
 .kori-acc {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  overflow: visible;
}
#kori { overflow: visible; }
.kori-panel {
  position: relative;
  padding: 22px 26px;
  overflow: visible;
  transition: transform .35s cubic-bezier(.22,.8,.28,1), border-color .2s ease;
}
.kori-panel:hover {
  border-color: #3a2020;
  box-shadow: inset 1px 0 0 #3a2020, 0 16px 40px rgba(0, 0, 0, .38);
}
.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: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition: grid-template-rows 2s cubic-bezier(.22,.8,.28,1), opacity 2s ease, margin-top 2s ease;
}
.kori-panel.is-open .kori-panel-body {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
}
.kori-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.kori-panel.is-open .kori-panel-body p { margin-bottom: 18px; }
.kori-timer {
  display: none;
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 12px;
  height: 1px;
  background: transparent;
}
.kori-panel.is-timing .kori-timer { display: block; }
.kori-timer-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--red2);
  transform: scaleX(0);
  transform-origin: center center;
}
.kori-panel.is-open.is-timing .kori-timer-bar {
  animation: kori-timer-fill 2s linear forwards;
}
.kori-acc.is-paused .kori-timer-bar { animation-play-state: paused; }
@keyframes kori-timer-fill {
  to { transform: scaleX(1); }
}
.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));
}
#blog .fn-rail-wrap,
#more-posts .fn-rail-wrap,
#functions .fn-rail-wrap {
  margin-right: 0;
  overflow: hidden;
  isolation: isolate;
}
#blog .fn-rail,
#more-posts .fn-rail,
#functions .fn-rail {
  scroll-snap-type: none;
  padding-left: 12px;
  padding-top: 32px;
}
#blog .fn-rail .card,
#more-posts .fn-rail .card,
#functions .fn-rail .card {
  transform-origin: center center;
  transition: transform .35s cubic-bezier(.22,.8,.28,1), border-color .2s ease;
}
#blog .fn-rail .card:hover,
#more-posts .fn-rail .card:hover,
#functions .fn-rail .card:hover {
  transform: translateY(-6px);
}
#blog .fn-rail-wrap,
#more-posts .fn-rail-wrap,
#functions .fn-rail-wrap {
  overflow-x: hidden;
  overflow-y: visible;
}
.fn-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 8px;
  width: 36px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--bg));
}
#blog .fn-rail-wrap::before,
#more-posts .fn-rail-wrap::before,
#functions .fn-rail-wrap::before {
  content: "";
  position: absolute;
  --blog-row: min(1120px, calc(100vw - var(--gutter) * 2));
  --blog-card: calc((var(--blog-row) - 48px) / 3.5);
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--blog-card);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity .25s ease;
  background: linear-gradient(
    90deg,
    var(--bg) 0,
    var(--bg) 10px,
    rgba(11, 11, 12, 0.55) calc(0.18 * var(--blog-card)),
    rgba(11, 11, 12, 0.2) calc(0.32 * var(--blog-card)),
    rgba(11, 11, 12, 0) calc(0.48 * var(--blog-card)),
    rgba(11, 11, 12, 0) 100%
  );
}
#blog .fn-rail-wrap.is-scrolled::before,
#more-posts .fn-rail-wrap.is-scrolled::before,
#functions .fn-rail-wrap.is-scrolled::before { opacity: 1; }
#blog .fn-rail-wrap::after,
#more-posts .fn-rail-wrap::after,
#functions .fn-rail-wrap::after {
  --blog-row: min(1120px, calc(100vw - var(--gutter) * 2));
  --blog-card: calc((var(--blog-row) - 48px) / 3.5);
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 72px;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
  background: linear-gradient(90deg, rgba(11,11,12,0), var(--bg));
}
#blog .fn-rail .card,
#more-posts .fn-rail .card,
#functions .fn-rail .card {
  z-index: 1;
}
#blog .fn-rail .card:hover,
#more-posts .fn-rail .card:hover,
#functions .fn-rail .card:hover {
  z-index: 2;
}
.fn-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 28px var(--gutter) 22px 4px;
  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;
  position: relative;
}
.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;
  overflow: visible;
  transform-origin: center center;
  backface-visibility: hidden;
}
.card h3 { font-size: 18px; margin-bottom: 14px; letter-spacing: -.03em; }
.card.kori-panel h3 { margin: 0; }
.kori-panel:not(.is-open) { justify-content: center; }
.card p { color: var(--dim); font-size: 14px; line-height: 1.55; margin: 0; }
.card ul, .list { margin-top: 2px; padding-left: 0; list-style: none; }
.card li, .list li { list-style: none; padding: 8px 0; color: var(--dim); font-size: 14px; line-height: 1.5; }
.card li::marker, .list li::marker { content: none !important; }
.card li::before { content: none; }
.list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  background: var(--red2);
  clip-path: polygon(0 15%, 100% 50%, 0 85%);
  flex: none;
}
#kori .kori-panel ul { list-style: none; margin: 0; padding: 0; }
#kori .kori-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  list-style: none;
}
#kori .kori-panel li::before,
#kori .kori-panel li::marker { content: none !important; display: none !important; }
.kori-tri {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  background: var(--red2);
  clip-path: polygon(0 15%, 100% 50%, 0 85%);
  border: 0;
  flex: none;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.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; }
.lbl { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .08em; }

.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;
  cursor: default;
}
.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: none; }

.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; }

@property --launch-glow-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
section.launch,
.launch {
  --launch-glow-x: 100%;
  position: relative;
  z-index: 2;
  background:
    radial-gradient(90% 160% at var(--launch-glow-x) 50%, rgba(225, 6, 0, .22) 0%, rgba(225, 6, 0, 0) 52%),
    linear-gradient(118deg, #1a0a0a 0%, #0d0d0d 58%, #110808 100%);
  border: 1px solid rgba(225, 6, 0, .1);
  border-radius: 28px;
  padding: 52px 56px; display: flex; justify-content: space-between; gap: 32px; align-items: center;
  margin: 8px 0 96px;
  transition: --launch-glow-x .7s cubic-bezier(.4, 0, .15, 1);
}
body[data-page="blog"] .launch,
body[data-page="blog-index"] .launch {
  margin: 16px 0 48px;
  padding: 36px 40px;
}
.launch:has(.btn:hover),
.launch:has(.btn:focus-visible) {
  --launch-glow-x: 0%;
}
.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; }

.signin {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 480px);
  min-height: calc(100vh - var(--header-h));
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.signin-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 90% at 20% 80%, rgba(225, 6, 0, .28) 0%, rgba(225, 6, 0, 0) 55%),
    linear-gradient(160deg, #160909 0%, #0a0a0a 70%);
  display: flex;
  align-items: flex-end;
  padding: 48px 56px;
}
.signin-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 0, .35), transparent 68%);
  pointer-events: none;
}
.signin-visual p {
  position: relative;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
  max-width: 14ch;
}
.signin-panel {
  padding: 64px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0c0c0e;
  border-left: 1px solid rgba(225, 6, 0, .1);
}
.signin-panel h1 { max-width: none; margin-bottom: 12px; }
.signin-panel .lead { color: var(--dim); font-size: 16px; line-height: 1.5; max-width: 36ch; }
.signin-form { margin-top: 32px; }
.signin-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #cfcfd4;
  margin: 14px 0 6px;
}
.signin-form input {
  width: 100%;
  background: #111113;
  border: 1px solid #2a2a30;
  color: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
}
.signin-form input:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-color: #fff;
}
.signin-form .btn { width: 100%; margin-top: 22px; padding: 14px 20px; }
.signin-err {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(225, 6, 0, .12);
  border: 1px solid rgba(225, 6, 0, .28);
  color: #f2d0d0;
  font-size: 13px;
  line-height: 1.45;
}
.signin-err[hidden] { display: none; }
.signin-help {
  margin-top: 22px;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.signin-help a,
.signin-link {
  color: #fff;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.signin-help a:hover,
.signin-link:hover { color: var(--red2); }

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, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: 36px;
}
footer.site h4 {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: #f2f2f2; margin-bottom: 14px; font-weight: 700;
}
footer.site a,
footer.site .cols span { display: block; padding: 7px 0; color: #a3a3a8; font-size: 14px; }
footer.site a:hover { color: #fff; }
footer.site .foot-soon {
  position: relative;
  width: fit-content;
  cursor: default;
}
footer.site .foot-soon::after {
  content: attr(data-tip);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  z-index: 4;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
footer.site .foot-soon::before {
  content: "";
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;
  z-index: 4;
  border: 5px solid transparent;
  border-right-color: var(--red);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
footer.site .foot-soon:hover {
  color: #fff;
}
footer.site .foot-soon:hover::after,
footer.site .foot-soon:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
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; }
.foot-mark {
  margin: 8px auto 0;
  padding: 0 0 20px;
  color: #8d8d93;
  font-size: 13px;
  letter-spacing: .02em;
}
.foot-mark a { color: #8d8d93; text-decoration: none; }
.foot-mark a:hover { color: #fff; }
.foot-mark span { color: var(--red2); margin: 0 8px; }
footer.site .legal {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid #1f1f22;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: #8d8d93;
}
footer.site .legal-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
footer.site .foot-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  padding: 8px 0 0;
  margin: 0;
}
footer.site a.foot-soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: #c8c8cc;
  line-height: 0;
  transform: none !important;
  transition: color .2s ease;
}
footer.site a.foot-soc svg { width: 26px; height: 26px; display: block; }
footer.site a.foot-soc-x svg { width: 21px; height: 21px; transform: translateY(1px); }
footer.site a.foot-soc:hover {
  background: none;
  color: var(--red);
  transform: none !important;
}
footer.site .legal nav { display: flex; gap: 16px; flex-wrap: wrap; }
footer.site .legal a { display: inline; padding: 0; }
footer.site .legal a.foot-soc { display: grid; 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: 8px 0 96px; text-align: left; }
.legal-doc .k { margin: 28px 0 12px; }
.legal-doc h1 {
  margin: 0 0 16px;
  max-width: 18ch;
  font-size: clamp(36px, 5vw, 56px);
}
.legal-doc .legal-lead {
  color: var(--dim);
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 12px;
  font-family: inherit;
}
.legal-doc .legal-meta {
  color: #6f6f76;
  font-size: 13px;
  margin: 0 0 36px;
  max-width: 62ch;
  font-family: inherit;
}
.legal-doc .legal-meta a { color: #fff; }
.legal-doc h2 {
  font-size: 20px;
  max-width: none;
  margin: 32px 0 10px;
  letter-spacing: -.03em;
  color: #fff;
  font-family: inherit;
}
.legal-doc p, .legal-doc li {
  color: var(--dim);
  line-height: 1.7;
  font-size: 16px;
  max-width: 68ch;
  font-family: inherit;
}
.legal-doc p + p { margin-top: 12px; }
.legal-doc ul { margin: 10px 0 0; padding: 0; max-width: 68ch; }
.legal-doc li { list-style: disc; margin-left: 18px; padding: 4px 0; }
.legal-doc a { color: #fff; }
.legal-doc a:hover { color: var(--red2); }
.legal-doc .legal-links { margin: 48px 0 0; color: var(--dim); }
.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(520px, 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;
  background: none;
  border: 0;
  padding: 0;
  margin-bottom: 10px;
}
.lead-card label { display: block; font-size: 12px; font-weight: 600; margin: 10px 0 6px; color: #111; }
.lead-card label.consent {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 16px 0 4px;
}
.lead-card input:not([type="checkbox"]), .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;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 16px 0 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #333;
  white-space: nowrap;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  margin: 0;
  padding: 0;
  flex: 0 0 16px;
  border: 1.5px solid #e10600;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.consent input[type="checkbox"]:checked {
  background: #111;
  border-color: #111;
}
.consent input[type="checkbox"]:checked::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0, -1px);
}
.consent span { display: inline; white-space: nowrap; }
.consent a { color: #111; text-decoration: underline; text-underline-offset: 2px; }
.consent .consent-short { display: none; }
.consent .consent-full { display: inline; }
@media (max-width: 700px) {
  .consent .consent-full { display: none; }
  .consent .consent-short { display: inline; }
}

@media (max-width: 700px) {
  .lead-overlay { padding: 10px; align-items: end; }
  .lead-card {
    width: 100%;
    max-width: 100%;
    max-height: min(92dvh, 100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 22px 16px 16px;
    border-radius: 20px 20px 16px 16px;
  }
  .lead-card h2 { font-size: 22px; }
  .lead-card p { font-size: 13px; }
  .consent { white-space: nowrap; overflow: hidden; font-size: 13px; }
  .consent span { font-size: 13px; }
  .consent a { font-size: 13px; }
}
.phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fafafa;
  padding: 0 12px;
}
.phone-plus { font-weight: 700; color: #111; font-size: 14px; }
.phone-cc-input {
  width: 52px !important;
  flex: 0 0 52px;
  border: 0 !important;
  background: transparent !important;
  padding: 11px 0 !important;
  font-weight: 700;
  border-right: 1px solid #e6e6e6 !important;
  border-radius: 0 !important;
  margin-right: 8px;
}
.phone-field input {
  border: 0 !important;
  background: transparent !important;
  padding: 11px 0 !important;
  border-radius: 0 !important;
}
.phone-hint {
  margin: 6px 0 0 !important;
  color: #8a8a8a !important;
  font-size: 12px !important;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.lead-err { color: #a10; font-size: 13px; margin-top: 8px; }
.lead-card #lead-ok,
.lead-card p.lead-ok,
.lead-card #lead-ok.lead-ok {
  color: #e10600;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
  margin: 4px 0 0;
  max-width: none;
  white-space: normal;
}
.lead-card.is-done h2 { font-size: 28px; }
.lead-card.is-done #lead-intro { max-width: none; }
.lead-hint {
  display: none;
  margin: 6px 0 0;
  color: #e10600;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
}
.lead-card .is-invalid {
  border-color: #e10600 !important;
  background: #fff8f8;
}
.lead-card .is-invalid + .lead-hint,
.lead-field.is-invalid .lead-hint { display: block; }

.dash { padding: 28px 0 80px; }
.dash-login { min-height: 80vh; display: grid; place-items: center; }
.dash-card { width: min(440px, 100%); }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 36px;
}
.dash-stats .card { padding: 20px; }
.dash-stats b { display: block; font-size: 32px; letter-spacing: -.04em; }
.dash-stats span { color: var(--dim); font-size: 13px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 8px 0 16px; }
.dash-table-wrap { overflow: visible; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.dash-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dash-table th, .dash-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.dash-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--dim); background: #0c0c0e; }
.dash-table tr:last-child td { border-bottom: 0; }
.dash-table a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.dash-links { display: flex !important; }
.dash-ok { color: #7dcea0; margin: 12px 0 20px; }
.dash-form { max-width: 640px; padding: 28px; margin: 24px 0 40px; }
.dash-form h2 { margin-bottom: 16px; }
.dash-form label { display: block; font-size: 12px; font-weight: 600; color: #cfcfd4; margin: 14px 0 6px; }
.dash-form input, .dash-form textarea {
  width: 100%;
  background: #111113;
  border: 1px solid #2a2a30;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
.dash-form .btn { margin-top: 18px; }
.dash-ed-tools { display: flex; gap: 8px; margin: 0 0 8px; }
.dash-ed-table {
  width: 36px; height: 36px; padding: 7px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #141416; color: #fff; cursor: pointer;
}
.dash-ed-table svg { width: 100%; height: 100%; display: block; }
.dash-ed-table:hover { border-color: #3a3a42; }
.blog-pack-wrap { margin: 28px 0; overflow-x: auto; }
.blog-prose .pack { margin-top: 0; }
.dash-blog-feed { max-width: 720px; margin: 12px 0 48px; }
.dash-blog-item { padding: 28px 0; border-bottom: 1px solid var(--line); }
.dash-blog-item time { display: block; color: var(--dim); font-size: 13px; margin-bottom: 10px; }
.dash-blog-item h2 { font-size: 28px; letter-spacing: -.04em; margin: 0 0 12px; max-width: none; }
.dash-blog-item h2 a { color: #fff; }
.dash-blog-item h2 a:hover { color: var(--red2); }
.dash-blog-item p { color: var(--dim); font-size: 16px; line-height: 1.65; max-width: 62ch; }
.dash-blog-img { display: block; margin: 0 0 14px; }
.dash-blog-img img { width: 100%; max-height: 280px; object-fit: cover; border-radius: 16px; }
.dash-blog-more { color: #fff; font-weight: 600; }
.dash-blog-more:hover { color: var(--red2); }
.dash-blog-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; }
.tag-list { list-style: none; margin: 0 0 20px; padding: 0; }
.tag-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.tag-add { margin: 0 0 16px; }
.dash-mini { color: var(--dim); font-size: 11px; margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
#dash-mix-tip {
  position: fixed; z-index: 200; max-width: 420px; padding: 14px 16px;
  background: #16161a; border: 1px solid #2a2a30; border-radius: 12px;
  color: #fff; font-size: 16px; line-height: 1.45; font-weight: 500;
  white-space: pre-wrap; box-shadow: 0 16px 40px rgba(0,0,0,.45); pointer-events: none;
}
.dash-mix {
  display: inline-block;
  max-width: 22ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  position: relative;
}
.dash-mix[data-full]:hover::after {
  content: attr(data-full);
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 30;
  min-width: 240px;
  max-width: 420px;
  white-space: pre-wrap;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: #fff;
  background: #16161a;
  border: 1px solid #2a2a30;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.blog-shot {
  display: block;
  margin: 0;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background: #141416;
  position: relative;
}
.blog-shot img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  border-radius: 22px 22px 0 0;
  position: relative;
  z-index: 1;
}
.blog-shot.is-skel::before,
.blog-figure.is-skel::before,
.blog-thumb.is-skel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #141416 0%, #1e1e22 45%, #141416 100%);
  background-size: 200% 100%;
  animation: blog-skel 1.1s ease-in-out infinite;
}
@keyframes blog-skel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.blog-shot.is-skel img,
.blog-figure.is-skel img,
.blog-thumb.is-skel img { opacity: 0; }
.blog-figure, .blog-thumb { position: relative; }
a.blog-card-link { color: inherit; text-decoration: none; cursor: pointer; }
a.blog-card-link:hover h3 { color: #fff; }
a.blog-card-link:hover .blog-more-inline { color: var(--red); }
#blog .fn-rail .card,
#more-posts .fn-rail .card {
  padding: 0 0 20px;
  overflow: hidden;
  border-radius: 22px;
  min-height: 0;
}
#blog .fn-rail .card:hover,
#more-posts .fn-rail .card:hover {
  overflow: hidden;
  border-radius: 22px;
}
#blog .fn-rail,
#more-posts .fn-rail,
#functions .fn-rail {
  --blog-row: min(1120px, calc(100vw - var(--gutter) * 2));
  --blog-card: calc((var(--blog-row) - 48px) / 3.5);
}
#blog .fn-rail .card,
#more-posts .fn-rail .card,
#functions .fn-rail .card {
  flex: 0 0 var(--blog-card);
}
#blog .fn-rail .card h3,
#more-posts .fn-rail .card h3 { max-width: none; font-size: 20px; line-height: 1.25; padding: 16px 22px 0; margin: 0; }
#blog .fn-rail .card p,
#more-posts .fn-rail .card p {
  position: relative;
  color: var(--dim);
  padding: 8px 36px 0 22px;
}
.blog-read {
  position: static;
  flex: none;
  color: var(--red2);
  font-size: 18px;
  line-height: 1.2;
  margin-top: 4px;
}
.blog-ellipsis { color: inherit; }
.blog-more-inline {
  position: absolute;
  right: 18px;
  top: auto;
  bottom: 16px;
  color: var(--red2);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  margin: 0;
}
#blog .fn-rail .card .blog-more-inline {
  top: calc(168px + 16px + 1.35em);
  bottom: auto;
}
.blog-more-inline:hover { color: var(--red); }
.blog-article {
  max-width: none;
  width: 100%;
  margin: 8px 0 20px;
  text-align: left;
}
.blog-article .k { margin-bottom: 12px; }
.blog-article h1 {
  max-width: none;
  margin: 0 0 16px;
  letter-spacing: -.05em;
}
.blog-article .lead { max-width: none; margin-bottom: 28px; }
.blog-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 32px;
}
.blog-avatar {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #17171a;
}
.blog-by {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: var(--dim);
  font-size: 13px;
  margin: 0;
}
.blog-meta time,
.blog-meta span {
  display: inline-flex;
  align-items: center;
}
.blog-meta time + span::before,
.blog-meta span + span::before {
  content: "·";
  margin: 0 10px;
  color: #5a5a60;
}
.blog-figure { margin: 8px 0 36px; max-width: none; }
.blog-figure img { width: 100%; border-radius: 22px; display: block; border: 1px solid var(--line); }
.blog-prose { max-width: none; margin: 0; text-align: left; overflow: visible; height: auto; }
.blog-prose h2 { font-size: 28px; letter-spacing: -.04em; margin: 32px 0 12px; max-width: none; }
.blog-prose h3 { font-size: 20px; letter-spacing: -.03em; margin: 24px 0 10px; max-width: none; }
.blog-prose p { color: var(--dim); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
.blog-prose strong { color: #fff; font-weight: 800; }
.blog-inline-img { display: block; width: 100%; max-width: 760px; margin: 18px 0; border-radius: 18px; }
.blog-keys { color: var(--dim); font-size: 13px; margin-top: 28px; }
.blog-more { margin: 20px 0 8px; }
.dash-pager { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 8px; }
.dash-pager a {
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: #fff;
}
.dash-pager a.is-on { background: var(--red); border-color: var(--red); }
.dash-page-meta { color: var(--dim); font-size: 13px; }
.blog-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.blog-grid-3 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.blog-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.blog-grid-1, .blog-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blog-card time { display: block; color: var(--dim); font-size: 12px; margin-bottom: 10px; letter-spacing: .06em; text-transform: uppercase; }
.blog-card h3 { max-width: none; font-size: 18px; }
.blog-card h3 a:hover { color: var(--red2); }
.blog-card p { color: var(--dim); font-size: 15px; line-height: 1.55; }
.blog-thumb { display: block; margin: 0 0 14px; border-radius: 16px; overflow: hidden; }
.blog-thumb img, .blog-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.blog-hero-img { max-width: 68ch; margin: 24px 0 0; }
.news-hero { padding-bottom: 24px; }
.news-body { max-width: 68ch; margin: 0 0 32px; color: var(--dim); line-height: 1.7; font-size: 16px; font-family: inherit; }
.news-back { margin: 18px 0 0; text-align: left; }
@media (max-width: 980px) {
  .blog-grid-3, .blog-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .blog-grid, .blog-grid-1, .blog-grid-2, .blog-grid-3, .blog-grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .dash-stats { grid-template-columns: 1fr; }
}

#blog .fn-rail .card,
#more-posts .fn-rail .card,
#functions .fn-rail .card {
  opacity: 1;
  transform: none;
}
#faq { padding-top: 8px; }
.faq-list { margin-top: 28px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  background: none;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 20px;
  letter-spacing: -.03em;
  text-align: left;
  cursor: pointer;
}
.faq-q > span:not(.faq-mark) { flex: 1; }
.faq-mark {
  flex: none;
  width: 36px;
  height: 36px;
  margin: -6px -4px 0 0;
  position: relative;
  color: transparent;
  font-size: 0;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
}
.faq-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--red2);
  transform: translate(-30%, -50%) rotate(0deg);
  transform-origin: 30% 50%;
  transition: transform .4s cubic-bezier(.22,.8,.28,1), border-color .25s ease;
}
.faq-item.is-open .faq-mark::after {
  transform: translate(-30%, -50%) rotate(90deg);
  border-left-color: var(--red);
}
.faq-q:hover .faq-mark::after { border-left-color: var(--red); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .62s cubic-bezier(.22,.8,.28,1), opacity .4s ease;
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-a p {
  transform: translateY(-8px);
  transition: transform .55s cubic-bezier(.22,.8,.28,1);
}
.faq-item.is-open .faq-a p {
  transform: translateY(0);
}
.faq-a p {
  color: var(--dim);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  padding: 0 2px 22px 32px;
  max-width: none;
  text-align: left;
}
@media (max-width: 720px) {
  .faq-q { font-size: 17px; padding: 18px 0; }
  .faq-a p { padding-left: 24px; padding-bottom: 18px; }
}

.plat-hero {
  padding: 28px 0 8px;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.28fr);
  align-items: center;
  column-gap: 28px;
  overflow: visible;
}
.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: 0;
  perspective: 1400px;
  margin: 0;
  overflow: visible;
}
.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(-8deg) rotateX(4deg);
  transform-origin: 50% 50%;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.plat-kv-stage img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.plat-kv-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 62%, rgba(8,8,8,0) 78%, var(--bg) 100%);
  pointer-events: none;
}

@keyframes skel-shine {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
body:not(:has(> header.site)) {
  padding-top: var(--header-h);
}
body:not(:has(> header.site))::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 40;
  background: #0c0c0e;
  border-bottom: 1px solid #1a1a1a;
}
.hero-kv,
.stat-visual,
.plat-kv-stage,
.contact-map-frame,
.chip.pay-item {
  position: relative;
}
.stat-visual {
  overflow: hidden;
  border-radius: 16px;
  background: #121214;
}
.stat-visual.skel-done { background: none; }
.hero-kv img,
.stat-visual img,
.plat-kv-stage img,
.chip.pay-item img {
  opacity: 1;
}
.chip.pay-item .pay-label { visibility: visible; }


@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: 560px; margin: 12px auto 0; }
  .hero-kv img { width: 100%; margin-left: 0; }
  .hero-company .hero-kv,
  .hero-compliance .hero-kv,
  .hero-launch .hero-kv,
  .hero-payments .hero-kv {
    height: 340px;
    max-width: 420px;
  }
  .hero-company .hero-kv img,
  .hero-compliance .hero-kv img,
  .hero-launch .hero-kv img,
  .hero-payments .hero-kv img {
    width: auto;
    max-width: 100%;
    max-height: 340px;
    margin: 0;
  }
}

@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; }
  .row, .row-3, .mods, .stats, .games, .games-3, .grid, .launch, .cta, footer.site .cols {
    grid-template-columns: 1fr;
  }
  .cookie { flex-direction: column; align-items: stretch; text-align: left; }
  .pack { display: block; overflow-x: auto; }
  .launch { padding: 28px 24px; margin-bottom: 56px; }
  .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; }
  .signin { grid-template-columns: 1fr; min-height: 0; }
  .signin-visual { min-height: 220px; padding: 32px 24px; }
  .signin-panel { padding: 40px 24px 64px; border-left: 0; border-top: 1px solid rgba(225, 6, 0, .1); }
}

html.motion-on .card,
html.motion-on .g,
html.motion-on .stat,
html.motion-on .contact-tile,
html.motion-on .chip {
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
html.motion-on .card,
html.motion-on .g,
html.motion-on .contact-tile {
  box-shadow: inset 1px 0 0 var(--line);
}
html.motion-on .card:hover,
html.motion-on .g:hover,
html.motion-on .contact-tile:hover {
  border-color: #3a2020;
  box-shadow: inset 1px 0 0 #3a2020, 0 16px 40px rgba(0, 0, 0, .38);
}
html.motion-on .chip:hover {
  border-color: #4a2424;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-kv img, .stat-visual img, .plat-kv-stage img, .chip.pay-item img { opacity: 1 !important; }
  .hero-kv::before, .stat-visual::before, .plat-kv-stage::before, .contact-map-frame::before, .chip.pay-item::before { display: none !important; animation: none !important; }
  .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, .kori-timer-bar, .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, .launch, footer.site .foot-soon::after, footer.site .foot-soon::before {
    animation: none !important; transition: none !important;
  }
}

.blog-index { max-width: 720px; margin: 8px auto 64px; }
.blog-index h1 { max-width: none; }
.blog-index-item { padding: 32px 0; border-bottom: 1px solid var(--line); }
.blog-index-item time { display: block; color: var(--dim); font-size: 13px; margin-bottom: 10px; }
.blog-index-item h2 { font-size: 28px; letter-spacing: -.04em; margin: 0 0 14px; max-width: none; }
.blog-index-item h2 a { color: #fff; }
.blog-index-item h2 a:hover { color: var(--red2); }
.blog-index-item p { color: var(--dim); font-size: 16px; line-height: 1.65; max-width: 62ch; margin: 0 0 14px; }
.blog-index-shot { display: block; margin: 0 0 16px; }
.blog-index-shot img { width: 100%; max-height: 320px; object-fit: cover; border-radius: 18px; display: block; }

.dash-wp-body main.dash-wp {
  width: min(1120px, calc(100% - var(--gutter) * 2));
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 0 96px;
  box-sizing: border-box;
}
.dash-wp .dash-form { max-width: none; width: 100%; }
.dash-wp .dash-blog-feed,
.dash-wp .dash-blog-grid { width: 100%; max-width: none; }
.dash-wp textarea#post-body { min-height: 64vh; }
.dash-wp textarea#post-body { min-height: 52vh; font-size: 16px; line-height: 1.6; }
.dash-ed-tools { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; }
.dash-ed-tools button {
  border: 1px solid var(--line); background: #141416; color: #fff;
  border-radius: 8px; padding: 6px 10px; font: 600 12px inherit; cursor: pointer;
}
.dash-ed-tools button:hover { border-color: #3a3a42; }
.blog-prose h1 { font-size: 34px; letter-spacing: -.05em; margin: 28px 0 12px; max-width: none; }

.news-back a { display: inline-flex; align-items: center; gap: 8px; }
.news-back a { font-size: 16px; }
.blog-back-ico { color: var(--red2); font-size: 1.25em; line-height: 1; }

.blog-hero { margin: 8px 0 36px; }
.blog-hero h1 { max-width: 16ch; }
.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  margin-bottom: 28px;
  min-height: 320px;
}
.blog-feature-shot { display: block; background: #141416; min-height: 280px; }
.blog-feature-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-feature-copy { padding: 32px 28px; display: flex; flex-direction: column; }
.blog-feature-copy h2 { font-size: 32px; letter-spacing: -.045em; margin: 8px 0 12px; max-width: none; }
.blog-feature-copy p { color: var(--dim); margin: 0 0 16px; }
.blog-readnow { margin-top: auto; color: var(--red2); font-weight: 600; }
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 64px;
}
.blog-index-grid .card { padding: 0 0 18px; overflow: hidden; min-height: 0; }
.blog-index-grid .card h3 { padding: 16px 22px 0; font-size: 20px; max-width: none; margin: 0; }
.blog-index-grid .blog-meta { padding: 10px 22px 0; margin: 0; }
@media (max-width: 900px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-index-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .blog-index-grid { grid-template-columns: 1fr; }
}

.blog-ledger { list-style: none; margin: 8px 0 80px; padding: 0; border-top: 1px solid var(--line); overflow: visible; }
.blog-count { color: var(--dim); font-size: 13px; margin-top: 8px; }
.blog-ledger-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(200px, 260px);
  gap: 24px;
  align-items: center;
  padding: 32px 12px;
  margin: 0 -12px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  min-width: 0;
  border-radius: 16px;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-ledger-copy { min-width: 0; }
.blog-ledger li:first-child .blog-ledger-title { font-size: 28px; }
.blog-ledger-row:hover {
  background: rgba(255,255,255,.025);
  box-shadow: inset 1px 0 0 #3a2020, inset -1px 0 0 #3a2020;
}
.blog-ledger-row time {
  color: var(--dim);
  font-size: 13px;
  letter-spacing: .02em;
}
.blog-ledger-title {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
  color: #fff;
  overflow-wrap: anywhere;
}
.blog-ledger-ex {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.5;
  max-width: none;
}
.blog-ledger-shot {
  display: block;
  width: 100%;
  height: 168px;
  aspect-ratio: 260 / 168;
  border-radius: 18px;
  overflow: hidden;
  background: #141416;
  border: 1px solid var(--line);
  justify-self: end;
}
.blog-ledger-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-ledger-row:hover .blog-ledger-title { color: var(--red2); }
.blog-ledger-row:hover .blog-ledger-shot { border-color: #3a2020; }
@media (max-width: 900px) {
  .blog-ledger-row { grid-template-columns: 80px minmax(0, 1fr) minmax(160px, 200px); gap: 18px; }
  .blog-ledger-shot { height: 132px; }
}
@media (max-width: 720px) {
  .blog-ledger-row { grid-template-columns: 1fr; gap: 14px; }
  .blog-ledger-shot { width: 100%; height: 200px; justify-self: stretch; }
}

@media (max-width: 720px) {
  #blog .fn-rail-wrap,
  #more-posts .fn-rail-wrap {
    overflow: hidden;
    margin-right: 0;
  }
  #blog .fn-rail,
  #more-posts .fn-rail {
    padding: 8px 0 12px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  #blog .fn-rail .card,
  #more-posts .fn-rail .card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
    backface-visibility: hidden;
  }
  #blog .fn-rail-wrap::before,
  #blog .fn-rail-wrap::after,
  #more-posts .fn-rail-wrap::before,
  #more-posts .fn-rail-wrap::after {
    display: none;
  }
}

body[data-page="docs"] main,
body[data-page="api"] main,
body[data-page="status"] main {
  padding-top: 56px;
}

body[data-page="dashboard"] {
  background: var(--bg);
}
body[data-page="dashboard"] main.dash,
body[data-page="dashboard"] main.wrap {
  padding-top: 48px;
  padding-bottom: 96px;
}
body[data-page="dashboard"] h1 {
  max-width: none;
}
body[data-page="dashboard"] .lead {
  margin: 16px 0 36px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.dash-stats .card {
  padding: 22px 22px 20px;
  border-radius: 22px;
}
.dash-stats b {
  display: block;
  font-size: 32px;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.dash-stats span {
  color: var(--dim);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dash-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}
.dash-table th {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  background: #0c0c0e;
}
.dash-links a[aria-current="page"] { color: #fff; }
.dash-form {
  max-width: 720px;
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
}

.dash-wp .dash-form { max-width: none; }
.dash-ed-tools { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 10px; }
.dash-ed-tools button {
  border: 1px solid var(--line);
  background: #17171a;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.dash-ed-tools button:hover { border-color: #3a2020; color: var(--red2); }
.dash-form textarea#post-body {
  min-height: 420px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.65;
}
.dash-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.dash-blog-item { padding: 0 0 18px; overflow: hidden; }
.dash-blog-item time {
  display: block;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 20px 0;
}
.dash-blog-item h3 { padding: 8px 20px 0; margin: 0; font-size: 18px; max-width: none; }
.dash-blog-item h3 a { color: #fff; text-decoration: none; }
.dash-blog-item h3 a:hover { color: var(--red2); }
.dash-blog-actions {
  display: flex;
  gap: 8px;
  padding: 14px 20px 0;
  align-items: center;
}
.dash-blog-actions form { margin: 0; }

@media (max-width: 900px) {
  footer.site .cols { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--gutter); }
}
@media (max-width: 560px) {
  footer.site .cols { grid-template-columns: 1fr; }
}

.tag-core { color: var(--dim); font-size: 12px; letter-spacing: .04em; }

.dash-pin {
  display: inline-block;
  margin-right: 8px;
  color: var(--red2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dash-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 16px 0 8px !important;
  color: #fff;
  font-size: 14px !important;
  font-weight: 600;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.dash-check input { width: auto; accent-color: var(--red); }
.dash-file {
  display: block;
  margin: 0 0 10px;
}
.dash-file input[type="file"] {
  position: absolute;
  width: .1px;
  height: .1px;
  opacity: 0;
}
.dash-file span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #17171a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.dash-file:hover span { border-color: #3a2020; color: var(--red2); }

body[data-page="platform"] #kori,
body[data-page="platform"] .kori-acc,
body[data-page="platform"] .kori-panel {
  overflow: visible !important;
}
body[data-page="platform"] #kori li,
body[data-page="platform"] #kori ul {
  list-style: none !important;
  list-style-type: none !important;
}
body[data-page="platform"] #kori li::before,
body[data-page="platform"] #kori li::after,
body[data-page="platform"] #kori li::marker {
  content: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}


body[data-page="docs"] .launch,
body[data-page="api"] .launch,
body[data-page="status"] .launch {
  margin-top: 72px;
}






body[data-page="platform"] li,
body[data-page="platform"] ul,
body[data-page="platform"] ol {
  list-style: none !important;
  list-style-type: none !important;
}
body[data-page="platform"] li::marker {
  content: none !important;
  color: transparent !important;
}
body[data-page="platform"] .card li::before {
  content: none !important;
}

body[data-page="platform"] .kori-panel.card {
  border-color: transparent;
  box-shadow: 0 0 0 1px var(--line);
}

main.wrap > section:not(.hero):not(.hero-home):not(#kori):not(#functions):not(#blog):not(#faq):not(#more-posts) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 640px;
}
#faq, #more-posts {
  content-visibility: visible;
  contain: none;
}
#kori, #functions {
  content-visibility: visible;
  contain: none;
}


.is-skel.skel-done::before { display: none !important; }
.blog-shot.is-skel {
  background: #141416;
  position: relative;
  overflow: hidden;
}
.stat-visual.is-skel.skel-done::before,
.hero-kv.is-skel.skel-done::before,
.plat-kv-stage.is-skel.skel-done::before,
.blog-ledger-shot.is-skel.skel-done::before,
.blog-shot.is-skel.skel-done::before,
.stat-visual.is-skel::before,
.hero-kv.is-skel::before,
.plat-kv-stage.is-skel::before {
  content: none;
}
@keyframes skel-shine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

main.wrap {
  overflow: visible;
}
.row, .mods, .row-3, .stats, .games, .grid {
  overflow: visible;
}

.hero-kv.is-skel:not(.skel-done)::before,
.stat-visual.is-skel:not(.skel-done)::before,
.plat-kv-stage.is-skel:not(.skel-done)::before,
.blog-shot.is-skel:not(.skel-done)::before,
.blog-ledger-shot.is-skel:not(.skel-done)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, #121214 0%, #1a1214 40%, #2a1618 50%, #1a1214 60%, #121214 100%);
  background-size: 220% 100%;
  animation: skel-shine 1.35s ease-in-out infinite;
}
.hero-kv img,
.stat-visual img,
.plat-kv-stage img {
  opacity: 1;
  position: relative;
  z-index: 1;
}
.hero-kv.skel-done::before,
.stat-visual.skel-done::before {
  display: none !important;
}






#blog .fn-rail,
#more-posts .fn-rail {
  will-change: transform;
  transform: translateX(-22%);
}
#blog.is-train .fn-rail,
#more-posts.is-train .fn-rail {
  transform: translateX(0);
  transition: transform 2.4s cubic-bezier(.16,.72,.22,1);
}
#blog .fn-rail .card,
#more-posts .fn-rail .card {
  opacity: 1;
}
@media (max-width: 720px) {
  #blog .fn-rail,
  #more-posts .fn-rail,
  #blog.is-train .fn-rail,
  #more-posts.is-train .fn-rail {
    transform: none;
    transition: none;
  }
}
