@font-face {
  font-family: Inter;
  src: url("./inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #070906;
  --panel: #121510;
  --raised: #1b1e17;
  --text: #f2f0e8;
  --muted: #abaea3;
  --line: #30342a;
  --accent: #f08a2a;
  --lime: #d8ff62;
  --gutter: clamp(22px, 5vw, 76px);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  min-width: 320px;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
button,
input,
summary {
  font: inherit;
}
h1,
h2,
h3,
p,
ul {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 570;
}
ul {
  padding: 0;
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
  border-radius: 4px;
}
.container {
  width: min(100%, 1440px);
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.symbol-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 15px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: relative;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 96px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 40px;
  font-weight: 680;
  letter-spacing: -2px;
  display: inline-flex;
  gap: 11px;
  align-items: center;
  line-height: 1;
}
.zen-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex: 0 0 auto;
}
.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.product-brand .zen-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}
.primary-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
.primary-nav a,
.footer-top nav a {
  transition: color 180ms;
}
.primary-nav a:hover,
.footer-top nav a:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 60px;
  padding: 18px 25px;
  border-radius: 100px;
  background: var(--accent);
  color: #11120e;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 550;
  border: 1px solid transparent;
  transition:
    background 180ms,
    transform 200ms;
}
.button:hover {
  background: #ffa54f;
  transform: translateY(-2px);
}
.button svg,
.button-outline svg,
.text-link svg {
  transition: transform 180ms;
}
.button:hover svg,
.button-outline:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}
.button-small {
  min-height: 44px;
  padding: 12px 19px;
  font-size: 13px;
  gap: 15px;
}
.button-small svg {
  width: 18px;
  height: 18px;
}
.button-wide {
  width: 100%;
}
.button-outline {
  background: transparent;
  color: var(--text);
  border-color: #62674f;
}
.button-outline:hover {
  background: var(--raised);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  padding-block: 11px;
  border-bottom: 1px solid #5d624f;
}
.language-menu {
  position: relative;
}
.language-menu summary {
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  list-style: none;
}
.language-menu summary::-webkit-details-marker {
  display: none;
}
.language-menu summary svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms;
}
.language-menu[open] summary svg {
  transform: rotate(180deg);
}
.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
  background: #20251c;
  border: 1px solid #484e3c;
  box-shadow: 0 20px 40px #0009;
  min-width: 190px;
  padding: 8px;
  border-radius: 14px;
}
.language-options a {
  display: block;
  padding: 12px 13px;
  border-radius: 8px;
  font-size: 14px;
}
.language-options a:hover,
.language-options [aria-current="true"] {
  background: #303626;
  color: #ffd2a5;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 38px;
  align-items: center;
  min-height: 760px;
  padding-top: 54px;
  padding-bottom: 66px;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
h1 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.035;
  letter-spacing: -0.065em;
}
h1 span {
  display: block;
}
.quiet {
  color: #a0a48f;
}
.hero-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 470px;
  margin-top: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 33px;
}
.hero-actions .text-link {
  font-size: 12px;
  gap: 10px;
}
.hero-product {
  position: relative;
  min-width: 0;
  padding: 24px 36px 36px 0;
  transform: rotate(-2deg);
  transition: transform 500ms ease;
}
.wallet-window {
  position: relative;
  border: 1px solid #484c3b;
  border-radius: 28px;
  padding: 25px;
  background: linear-gradient(145deg, #20241b, #11150f 70%);
  box-shadow: 0 22px 60px #0008;
}
.window-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.window-top strong {
  font-size: 17px;
  font-weight: 580;
  letter-spacing: -0.4px;
}
.wallet-balance {
  padding: 24px 0;
}
.wallet-balance > p {
  color: var(--muted);
  font-size: 11px;
}
.hero-balance {
  font-size: 22px;
  letter-spacing: -0.8px;
  margin-top: 10px;
  font-weight: 500;
}
.hero-balance span {
  color: #686f59;
  padding-inline: 3px;
}
.coins {
  border-radius: 18px;
  background: #0d110b;
  padding: 4px 15px;
  border: 1px solid #303528;
}
.coin-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 67px;
  font-size: 14px;
}
.coin-row + .coin-row {
  border-top: 1px solid #2d3425;
}
.coin-row img,
.currency-strip img,
.swap-amount img {
  border-radius: 50%;
}
.coin-row img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.masked {
  margin-left: auto;
  letter-spacing: 3px;
  font-size: 20px;
  color: #c5cbb7;
}
.wallet-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.wallet-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 9px;
}
.wallet-actions svg {
  width: 39px;
  height: 39px;
  padding: 10px;
  border-radius: 50%;
  background: #2a3022;
  transition: background 180ms;
}
.wallet-actions a:hover svg {
  background: var(--accent);
  color: var(--bg);
}
.wallet-pay {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid #41482f;
  border-radius: 15px;
  margin-top: 23px;
}
.wallet-pay:hover {
  background: #262d1c;
}
.wallet-pay > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wallet-pay strong {
  font-size: 13px;
  font-weight: 550;
}
.wallet-pay small {
  font-size: 10px;
  color: var(--muted);
}
.wallet-pay > svg {
  margin-left: auto;
  width: 20px;
}
.pay-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}
.floating-card {
  position: absolute;
  right: -28px;
  bottom: -5px;
  width: 230px;
  display: block;
  transform: rotate(8deg);
  transition: transform 250ms;
}
.floating-card img {
  width: 100%;
  height: auto;
}
.floating-card:hover {
  transform: rotate(4deg) translateY(-4px);
}
.currency-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.currency-strip a {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-block: 17px;
}
.currency-strip a + a {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.currency-strip a > span {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.currency-strip strong {
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.5px;
}
.currency-strip small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.currency-strip a > svg {
  margin-left: auto;
  margin-right: 25px;
  width: 19px;
  color: #a4ac91;
}
.currency-strip a:hover > svg {
  color: var(--accent);
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: end;
  gap: 85px;
  margin-bottom: 54px;
}
.section-label {
  font-size: 10px;
  line-height: 1.4;
  font-weight: 550;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 25px;
}
h2 {
  font-size: clamp(36px, 4.35vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  white-space: pre-line;
}
.section-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}
.wallet-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.editorial-tabs a {
  display: flex;
  gap: 23px;
  align-items: start;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}
.editorial-tabs a:last-child {
  border-bottom: 1px solid var(--line);
}
.editorial-tabs .number {
  color: #7e876d;
  font-size: 11px;
  margin-top: 6px;
}
.editorial-tabs strong {
  display: block;
  font-size: 22px;
  font-weight: 520;
  letter-spacing: -0.55px;
  line-height: 1.3;
}
.editorial-tabs small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
}
.editorial-tabs svg {
  width: 19px;
  height: 19px;
  margin-top: 6px;
  margin-left: auto;
  opacity: 0.4;
}
.editorial-tabs [aria-selected="true"] .number,
.editorial-tabs [aria-selected="true"] svg {
  color: var(--accent);
  opacity: 1;
}
.editorial-tabs [aria-selected="true"] strong {
  color: #ffb776;
}
.wallet-preview-stack {
  min-width: 0;
  padding: 20px 36px;
}
.wallet-preview {
  background: var(--panel);
  border: 1px solid #3b4430;
  border-radius: 24px;
  padding: 27px;
  min-height: 437px;
  box-shadow: 0 22px 50px #0005;
}
.wallet-preview + .wallet-preview {
  margin-top: 20px;
}
.wallet-preview[role="tabpanel"] {
  margin: 0;
}
.preview-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.preview-top strong {
  font-size: 16px;
  font-weight: 550;
}
.recipient {
  display: flex;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 23px;
}
.recipient > svg:first-child {
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #262d20;
  border-radius: 50%;
  color: #c3cdb0;
}
.recipient div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recipient small {
  color: var(--muted);
  font-size: 10px;
}
.recipient strong {
  font-size: 14px;
  font-weight: 500;
}
.recipient > svg:last-child {
  margin-left: auto;
  width: 18px;
}
.field-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 22px;
}
.preview-currencies {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}
.preview-currencies span {
  padding: 8px 15px;
  font-size: 11px;
  border: 1px solid #384030;
  border-radius: 8px;
}
.preview-currencies .chosen {
  border-color: #bc7535;
  background: #362619;
  color: #ffb26b;
}
.amount-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding: 22px 0;
}
.amount-preview > span {
  font-size: 11px;
  color: var(--muted);
}
.amount-preview strong {
  font-size: 26px;
  letter-spacing: 3px;
}
.amount-preview small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.preview-caption {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 8px 0 17px;
}
.wallet-preview .button {
  min-height: 45px;
  padding: 12px 17px;
  font-size: 12px;
}
.swap-amount {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 24px 16px;
  background: #1f2519;
  border: 1px solid #353e2b;
  border-radius: 15px;
}
.swap-amount img {
  width: 33px;
  height: 33px;
}
.swap-amount strong {
  font-size: 14px;
}
.swap-amount span {
  margin-left: auto;
  font-size: 24px;
  letter-spacing: 3px;
}
.swap-connector {
  display: grid;
  place-items: center;
  height: 42px;
  color: var(--accent);
}
.history-row {
  display: flex;
  gap: 13px;
  align-items: center;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}
.history-row svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: #26311d;
  color: #b6c99c;
}
.history-row strong {
  font-size: 12px;
  font-weight: 450;
}
.history-row > span {
  margin-left: auto;
  color: #b4bca6;
  font-size: 11px;
}
.pay-section {
  background: #11150e;
  border-block: 1px solid var(--line);
}
.pill-tabs {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid #484f3e;
  border-radius: 100px;
  margin-bottom: 32px;
}
.pill-tabs a {
  padding: 11px 24px;
  border-radius: 100px;
  font-size: 13px;
  min-width: 102px;
  text-align: center;
}
.pill-tabs a[aria-selected="true"] {
  background: var(--text);
  color: var(--bg);
}
.pay-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 70px;
}
.pay-panel + .pay-panel {
  margin-top: 35px;
}
.pay-panel[role="tabpanel"] {
  margin: 0;
}
.pay-ticket {
  border: 1px solid #586247;
  background: #1c2317;
  border-radius: 24px;
  padding: 35px;
  position: relative;
}
.ticket-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  color: #d8dfcc;
  margin-bottom: 30px;
}
.ticket-brand svg {
  width: 30px;
  height: 30px;
}
h3 {
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.045em;
  white-space: pre-line;
}
.pay-ticket > p {
  color: #bbc2b0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 450px;
  margin-top: 20px;
  min-height: 72px;
}
.pay-ticket .button {
  min-height: 48px;
  margin-top: 26px;
  font-size: 13px;
}
.pay-message {
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
}
.message-app {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #c8cdbf;
  align-items: center;
}
.message-app svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid #74865d;
  border-radius: 50%;
}
.shared-link {
  background: #d7dfbe;
  color: #1a210f;
  border-radius: 18px 18px 18px 4px;
  padding: 25px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 14px 25px;
  box-shadow: 0 20px 30px #0003;
  transform: rotate(-2deg);
}
.shared-label {
  grid-column: 1 / -1;
  font-size: 11px;
  color: #4f5c3a;
}
.shared-link strong {
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 550;
}
.pay-message > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.5;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  border-top: 1px solid #3a4330;
  margin-top: 47px;
  padding-top: 28px;
}
.steps p {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  line-height: 1.5;
}
.steps span {
  font-size: 10px;
  color: var(--accent);
}
.card-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.card-copy > .section-intro {
  margin-top: 25px;
}
.card-stage {
  position: relative;
  padding: 40px 0;
  min-width: 0;
}
.card-product-image {
  display: block;
  width: 100%;
  height: auto;
}
.feature-list {
  margin-block: 28px;
}
.feature-list li {
  display: flex;
  align-items: start;
  gap: 15px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}
.feature-list svg {
  width: 21px;
  height: 21px;
  color: #c6d0b6;
}
.feature-list strong {
  display: block;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.4;
}
.feature-list small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 6px;
}
.fine-print {
  color: #a6af99;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 22px;
  max-width: 850px;
}
.world-section {
  border-block: 1px solid var(--line);
  background: #0e110b;
}
.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.game-feature {
  overflow: hidden;
  border: 1px solid #424c36;
  border-radius: 24px;
  background: #161d11;
  display: flex;
  flex-direction: column;
}
.trade-feature {
  background: #191a11;
}
.game-copy {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.game-copy .section-label {
  margin-bottom: 15px;
}
.game-copy h3 {
  font-size: 36px;
}
.game-copy > p:not(.section-label) {
  color: #b2bda5;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
  margin-bottom: 23px;
}
.game-copy .text-link {
  margin-top: auto;
  font-size: 12px;
}
.poker-preview {
  height: 310px;
  display: grid;
  place-items: center;
  padding: 36px 25px;
  background: #111911;
  border-bottom: 1px solid #384b2f;
  overflow: hidden;
}
.poker-table {
  position: relative;
  width: 90%;
  height: 208px;
  background: radial-gradient(ellipse at 50% 40%, #2d4531, #1e3223);
  border: 11px solid #101913;
  outline: 1px solid #63744c;
  box-shadow:
    inset 0 0 0 1px #7a8d6640,
    inset 0 8px 22px #0005,
    0 12px 28px #0005;
  border-radius: 110px;
  display: grid;
  place-items: center;
  transform: rotate(-5deg);
}
.table-seat {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid #788367;
  background: #17201a;
  border-radius: 50%;
  box-shadow:
    0 2px 7px #0007,
    inset 0 0 0 4px #121a14;
}
.s1 {
  left: 20%;
  top: -25px;
}
.s2 {
  right: 18%;
  top: -25px;
}
.s3 {
  right: 37%;
  bottom: -25px;
}
.poker-cards {
  display: flex;
  gap: 6px;
  transform: rotate(3deg) translateY(-8px);
}
.poker-cards > span {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 46px;
  height: 70px;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: linear-gradient(150deg, #fffef8, #d9ddce);
  color: #172213;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 5px 7px #0005;
  transition: transform 280ms;
}
.poker-cards > span::after {
  content: attr(data-rank);
  position: absolute;
  right: 4px;
  bottom: 3px;
  font-size: 9px;
  transform: rotate(180deg);
}
.poker-cards i {
  font-family: Georgia, serif;
  font-size: 26px;
  font-style: normal;
  text-align: center;
  line-height: 1;
}
.poker-cards .red {
  color: #b04033;
}
.poker-feature:hover .poker-cards > span:nth-child(odd) {
  transform: translateY(-5px);
}
.chip-stack {
  position: absolute;
  bottom: 28px;
  right: 22%;
  display: flex;
  gap: 4px;
}
.chip-stack i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px dashed #c5d99a;
  background: #354828;
  box-shadow:
    0 2px 0 #6a7754,
    0 4px 0 #192415,
    0 6px 0 #526140,
    0 8px 6px #0006;
}
.trade-preview {
  position: relative;
  height: 310px;
  background-color: #141a11;
  background-image:
    linear-gradient(#a6b7870a 1px, transparent 1px), linear-gradient(90deg, #a6b7870a 1px, transparent 1px);
  background-size: 42px 42px;
  overflow: hidden;
  display: flex;
  padding: 30px;
  align-items: center;
  border-bottom: 1px solid #484d33;
}
.trade-word {
  font-size: 48px;
  line-height: 0.99;
  letter-spacing: -3px;
  font-weight: 550;
  position: relative;
  z-index: 2;
  color: #a7b893;
}
.trade-word b {
  color: #ebf1db;
  font-weight: 550;
}
.trade-bars {
  position: absolute;
  right: 14px;
  bottom: 35px;
  height: 230px;
  width: 53%;
  display: flex;
  align-items: end;
  gap: 9px;
  transform: rotate(-8deg);
}
.trade-bars i {
  position: relative;
  height: 23%;
  margin-bottom: 9%;
  flex: 1;
  background: #b7d384;
  border-radius: 2px;
}
.trade-bars i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  bottom: -16px;
  width: 1px;
  background: inherit;
}
.trade-bars i:nth-child(2) {
  margin-bottom: 26%;
  height: 18%;
}
.trade-bars i:nth-child(3) {
  margin-bottom: 17%;
  height: 20%;
  background: #947462;
}
.trade-bars i:nth-child(4) {
  margin-bottom: 32%;
  height: 31%;
}
.trade-bars i:nth-child(5) {
  margin-bottom: 40%;
  height: 15%;
  background: #947462;
}
.trade-bars i:nth-child(6) {
  margin-bottom: 28%;
  height: 17%;
  background: #947462;
}
.trade-bars i:nth-child(7) {
  margin-bottom: 24%;
  height: 15%;
}
.trade-bars i:nth-child(8) {
  margin-bottom: 33%;
  height: 29%;
}
.trade-bars i:nth-child(9) {
  margin-bottom: 45%;
  height: 25%;
}
.trade-bars i:nth-child(10) {
  margin-bottom: 52%;
  height: 16%;
  background: #947462;
}
.trade-bars i:nth-child(11) {
  margin-bottom: 54%;
  height: 22%;
}
.trade-bars i:nth-child(12) {
  margin-bottom: 68%;
  height: 14%;
}
.pets-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 75px;
}
.pets-copy .section-intro {
  margin-top: 25px;
}
.simple-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block: 30px;
  color: #d0d7c4;
  font-size: 13px;
}
.simple-list li {
  display: flex;
  gap: 13px;
  align-items: center;
}
.simple-list svg {
  width: 19px;
  height: 19px;
  color: #a5b588;
}
.pet-gallery {
  min-width: 0;
}
.pet-display {
  position: relative;
  min-width: 0;
}
.pet-display img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  mask-image: radial-gradient(ellipse, #000 53%, transparent 74%);
}
.pet-display > span {
  display: block;
  font-size: 20px;
  font-weight: 450;
  text-align: center;
  margin-top: -34px;
  position: relative;
}
.pet-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 23px;
}
.pet-tabs a {
  width: 86px;
  padding: 5px 6px 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 15px;
}
.pet-tabs img {
  width: 61px;
  height: 61px;
  object-fit: contain;
  mask-image: radial-gradient(ellipse, #000 45%, transparent 76%);
}
.pet-tabs a[aria-selected="true"] {
  border-color: #b57842;
  background: #292113;
  color: #ffd6ad;
}
.community-section {
  background: #14190f;
  border-block: 1px solid var(--line);
}
.community-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.community-preview {
  background: #0b1108;
  border: 1px solid #4c5939;
  border-radius: 23px;
  transform: rotate(-3deg);
  margin-inline: 25px;
  box-shadow: 0 25px 50px #0004;
}
.chat-top {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 22px 25px;
  border-bottom: 1px solid #39492b;
}
.chat-top strong {
  font-size: 16px;
  font-weight: 500;
}
.chat-top svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 50%;
  background: #2c3921;
  color: #c6d7ae;
}
.chat-body {
  padding: 30px;
}
.chat-line {
  width: 85%;
  height: 14px;
  border-radius: 5px;
  background: #2a3821;
  margin-bottom: 12px;
}
.chat-line.short {
  width: 55%;
  opacity: 0.6;
}
.chat-reply {
  margin: 30px -50px 0 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 27px 24px;
  background: #d4dfbb;
  color: #1c290e;
  border-radius: 17px 17px 4px 17px;
  font-size: 22px;
  transform: rotate(5deg);
  box-shadow: 0 15px 30px #0004;
}
.chat-reply strong {
  font-weight: 580;
}
.chat-reply svg {
  margin-left: auto;
}
.chat-body > p {
  font-size: 10px;
  line-height: 1.6;
  color: #a7b398;
  margin: 24px 0 33px;
}
.community-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background: #202d18;
  border-radius: 10px;
  padding: 15px;
  color: #cad6b9;
  font-size: 12px;
  line-height: 1.4;
}
.community-copy .section-intro {
  margin-top: 22px;
}
.staking-section .section-heading {
  margin-bottom: 45px;
}
.staking-section .text-link {
  margin-top: 18px;
}
.staking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #414a35;
  border-bottom: 1px solid #414a35;
}
.staking-steps article {
  padding: 32px 30px 35px 0;
}
.staking-steps article + article {
  border-left: 1px solid #414a35;
  padding-left: 30px;
}
.staking-steps article > span {
  display: block;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 33px;
}
.staking-steps h3 {
  font-size: 25px;
  letter-spacing: -0.7px;
}
.staking-steps p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 15px;
}
.faq-section {
  border-block: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-block: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
  transition: transform 200ms;
}
.faq-list details[open] summary svg {
  transform: rotate(45deg);
}
.faq-list details[open] summary {
  color: #ffc798;
}
.faq-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  padding-bottom: 25px;
}
.closing {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-top: 92px;
  padding-bottom: 86px;
  align-items: center;
}
.closing h2 {
  font-size: clamp(42px, 4.6vw, 66px);
}
.closing p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.site-footer {
  padding-bottom: 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 45px;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}
.footer-top > div > p {
  font-size: 12px;
  line-height: 1.6;
  max-width: 190px;
  color: var(--muted);
  margin-top: 20px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  font-size: 12px;
  color: var(--muted);
}
.footer-top nav strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  border-top: 1px solid var(--line);
  margin-top: 43px;
  padding-top: 18px;
  font-size: 10px;
  color: var(--muted);
}
.footer-languages {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-languages a {
  min-width: 29px;
  min-height: 34px;
  display: grid;
  place-items: center;
  font-size: 11px;
}
.footer-languages [aria-current="true"] {
  color: #ffc798;
}
[data-panel][role="tabpanel"] {
  animation: panel-arrive 350ms ease-out;
}
.is-arriving {
  animation: section-arrive 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes panel-arrive {
  from {
    opacity: 0.45;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes section-arrive {
  from {
    opacity: 0.6;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 800px;
  }
}
@media (max-width: 1150px) {
  .header-inner {
    gap: 22px;
  }
  .primary-nav {
    gap: 22px;
    font-size: 12px;
  }
  .header-actions {
    gap: 17px;
  }
  .hero {
    gap: 35px;
    min-height: 700px;
  }
  h1 {
    font-size: clamp(52px, 6.4vw, 72px);
  }
  .hero-product {
    padding-right: 17px;
  }
  .wallet-window {
    padding: 20px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 13px;
    min-height: 54px;
    padding: 16px 20px;
  }
  .hero-balance {
    font-size: 20px;
  }
  .floating-card {
    right: -5px;
    width: 180px;
  }
  .currency-strip a + a {
    padding-left: 20px;
  }
  .currency-strip a > svg {
    margin-right: 15px;
  }
  .currency-strip small {
    font-size: 10px;
  }
  .section-heading {
    gap: 50px;
  }
  .wallet-explainer {
    gap: 45px;
  }
  .wallet-preview-stack {
    padding-inline: 8px;
  }
  .card-section,
  .pets-section,
  .community-layout {
    gap: 50px;
  }
  .pay-panel {
    gap: 35px;
  }
  .game-copy {
    padding: 28px;
  }
  .game-copy h3 {
    font-size: 31px;
  }
  .faq-layout {
    gap: 50px;
  }
  .closing {
    gap: 50px;
  }
  .footer-top {
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .header-inner {
    height: 82px;
  }
  .primary-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 54px;
    padding-bottom: 40px;
  }
  .hero-copy {
    max-width: 690px;
  }
  h1 {
    font-size: clamp(55px, 9.5vw, 78px);
  }
  .hero-description {
    font-size: 18px;
    max-width: 570px;
  }
  .hero-actions {
    gap: 25px;
  }
  .hero-product {
    width: min(520px, 93%);
    margin-inline: auto;
    padding: 0 25px 35px 0;
  }
  .wallet-window {
    padding: 25px;
  }
  .hero-balance {
    font-size: 24px;
  }
  .floating-card {
    bottom: 0;
    right: -10px;
    width: 200px;
  }
  .currency-strip {
    padding-block: 10px;
  }
  .currency-strip a {
    gap: 11px;
  }
  .currency-strip img {
    width: 34px;
    height: 34px;
  }
  .currency-strip strong {
    font-size: 17px;
  }
  .currency-strip small {
    font-size: 9px;
  }
  .currency-strip a > svg {
    display: none;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 35px;
  }
  .section-label {
    margin-bottom: 19px;
  }
  h2 {
    font-size: 46px;
  }
  .section-intro {
    max-width: 680px;
  }
  .wallet-explainer {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .editorial-tabs a {
    gap: 15px;
    padding-block: 21px;
  }
  .editorial-tabs strong {
    font-size: 19px;
  }
  .editorial-tabs small {
    font-size: 12px;
  }
  .editorial-tabs svg {
    display: none;
  }
  .wallet-preview {
    padding: 21px;
  }
  .preview-currencies {
    gap: 6px;
  }
  .preview-currencies span {
    padding: 8px 11px;
    font-size: 10px;
  }
  .pay-panel {
    gap: 30px;
    grid-template-columns: 1.1fr 1fr;
  }
  .pay-ticket {
    padding: 27px;
  }
  h3 {
    font-size: 29px;
  }
  .pay-ticket > p {
    font-size: 13px;
  }
  .pay-message {
    padding-right: 8px;
  }
  .shared-link {
    padding: 22px;
  }
  .card-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .card-stage {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }
  .card-copy {
    max-width: 680px;
  }
  .feature-list {
    max-width: 600px;
  }
  .games-grid {
    gap: 20px;
  }
  .poker-preview {
    padding-inline: 12px;
    height: 240px;
  }
  .poker-table {
    height: 155px;
  }
  .poker-cards > span {
    width: 30px;
    height: 49px;
    padding: 4px;
    font-size: 12px;
  }
  .poker-cards i {
    font-size: 17px;
  }
  .trade-preview {
    height: 240px;
    padding: 20px;
  }
  .trade-word {
    font-size: 43px;
  }
  .trade-bars {
    gap: 7px;
  }
  .game-copy {
    padding: 24px;
  }
  .game-copy h3 {
    font-size: 29px;
  }
  .game-copy > p:not(.section-label) {
    font-size: 13px;
  }
  .pets-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pet-gallery {
    max-width: 530px;
    width: 100%;
    margin-inline: auto;
  }
  .community-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .community-preview {
    width: calc(100% - 75px);
    max-width: 460px;
    margin-inline: auto;
    order: 2;
  }
  .community-copy {
    max-width: 680px;
  }
  .staking-steps h3 {
    font-size: 23px;
  }
  .staking-steps article {
    padding-right: 20px;
  }
  .staking-steps article + article {
    padding-left: 20px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .closing {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 70px;
  }
  .closing h2 {
    font-size: 50px;
  }
  .closing p {
    max-width: 580px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 25px;
  }
  .footer-top > div {
    grid-column: 1 / -1;
  }
  .footer-top > div > p {
    max-width: none;
    margin-top: 13px;
  }
  .footer-top nav {
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 39px;
    gap: 45px;
  }
  h1 {
    font-size: clamp(42px, 9.5vw, 58px);
  }
  .hero-description {
    font-size: 16px;
    max-width: 440px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    min-height: 56px;
    font-size: 14px;
  }
  .hero-product {
    width: 95%;
    padding-right: 17px;
    margin-top: 8px;
  }
  .wallet-window {
    padding: 22px;
  }
  .floating-card {
    width: 165px;
  }
  .wallet-balance {
    padding: 20px 0;
  }
  .hero-balance {
    font-size: 21px;
  }
  .coin-row {
    min-height: 59px;
  }
  .wallet-actions {
    gap: 7px;
  }
  .wallet-actions a {
    font-size: 8px;
  }
  .wallet-actions svg {
    width: 36px;
    height: 36px;
    padding: 9px;
  }
  .currency-strip {
    grid-template-columns: 1fr;
    padding-block: 5px;
  }
  .currency-strip a {
    padding-block: 17px;
  }
  .currency-strip a + a {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .currency-strip a > span {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .currency-strip a > svg {
    display: block;
    width: 16px;
    margin-right: 0;
  }
  .currency-strip strong {
    font-size: 16px;
    min-width: 55px;
  }
  .currency-strip small {
    font-size: 11px;
    max-width: 175px;
  }
  .currency-strip img {
    width: 31px;
    height: 31px;
  }
  h2 {
    font-size: 38px;
  }
  .section {
    padding-block: 62px;
  }
  .section-label {
    font-size: 9px;
  }
  .section-intro {
    font-size: 14px;
    line-height: 1.75;
  }
  .wallet-explainer {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .editorial-tabs a {
    padding-block: 23px;
    gap: 20px;
  }
  .editorial-tabs strong {
    font-size: 20px;
  }
  .editorial-tabs small {
    font-size: 13px;
  }
  .editorial-tabs svg {
    display: block;
  }
  .wallet-preview-stack {
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
    padding: 0;
  }
  .wallet-preview {
    min-height: 410px;
    padding: 26px;
  }
  .pay-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .pill-tabs {
    display: flex;
    margin-bottom: 23px;
  }
  .pill-tabs a {
    min-width: 0;
    flex: 1;
    font-size: 12px;
    padding: 11px 13px;
  }
  .pay-ticket {
    padding: 26px;
  }
  h3 {
    font-size: 30px;
  }
  .pay-ticket > p {
    min-height: 0;
    font-size: 14px;
  }
  .pay-message {
    width: 85%;
    padding: 0;
  }
  .steps {
    gap: 18px;
    padding-top: 22px;
    margin-top: 30px;
  }
  .steps p {
    flex-direction: column;
    gap: 10px;
    align-items: start;
    font-size: 11px;
  }
  .card-section {
    gap: 20px;
  }
  .card-stage {
    padding: 28px 10px 15px;
  }

  .card-copy > .section-intro {
    margin-top: 20px;
  }
  .feature-list strong {
    font-size: 13px;
  }
  .feature-list small {
    font-size: 12px;
  }
  .games-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .poker-preview,
  .trade-preview {
    height: 260px;
  }
  .poker-table {
    width: 85%;
    max-width: 360px;
    height: 170px;
  }
  .poker-cards > span {
    width: 35px;
    height: 56px;
    font-size: 14px;
  }
  .poker-cards i {
    font-size: 19px;
  }
  .trade-preview {
    padding: 30px;
  }
  .trade-word {
    font-size: 52px;
  }
  .game-copy {
    padding: 29px;
  }
  .game-copy h3 {
    font-size: 34px;
  }
  .game-copy > p:not(.section-label) {
    font-size: 14px;
  }
  .pet-display > span {
    margin-top: -25px;
    font-size: 18px;
  }
  .pet-tabs {
    gap: 12px;
  }
  .pet-tabs a {
    width: 79px;
  }
  .pets-section {
    gap: 20px;
  }
  .community-preview {
    width: calc(100% - 40px);
  }
  .chat-top {
    padding: 20px;
  }
  .chat-top strong {
    font-size: 14px;
  }
  .chat-body {
    padding: 25px 20px;
  }
  .chat-reply {
    margin-right: -37px;
    margin-left: 5px;
    font-size: 20px;
    padding: 24px 19px;
  }
  .chat-body > p {
    font-size: 9px;
  }
  .staking-steps {
    grid-template-columns: 1fr;
  }
  .staking-steps article {
    padding: 24px 0;
  }
  .staking-steps article + article {
    border-left: 0;
    border-top: 1px solid #414a35;
    padding-left: 0;
  }
  .staking-steps article > span {
    margin-bottom: 18px;
  }
  .staking-steps h3 {
    font-size: 25px;
  }
  .staking-steps p {
    margin-top: 10px;
    font-size: 13px;
  }
  .faq-list summary {
    font-size: 15px;
    padding-block: 22px;
  }
  .faq-list p {
    font-size: 13px;
  }
  .closing {
    padding-block: 61px;
  }
  .closing h2 {
    font-size: 40px;
  }
  .closing p {
    font-size: 14px;
  }
  .footer-top {
    gap: 33px 22px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-top nav:last-child {
    grid-column: 1 / -1;
  }
  .footer-top nav {
    gap: 14px;
    font-size: 12px;
  }
  .footer-top nav strong {
    margin-bottom: 2px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: start;
    gap: 18px;
    margin-top: 28px;
  }
  .footer-languages {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }
  .brand {
    font-size: 36px;
  }
  .header-inner {
    height: 78px;
    gap: 18px;
  }
  .header-actions {
    gap: 18px;
  }
  .header-actions > .button {
    display: none;
  }
  .language-menu summary {
    font-size: 12px;
  }
  .button,
  .button-outline {
    min-height: 55px;
    font-size: 13px;
    padding: 16px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-tilt] {
    transform: none !important;
  }
}
