:root {
  --bg: #0a0b0e;
  --bg-deep: #07080a;
  --panel: #12141a;
  --panel-hi: #171a22;
  --line: #232733;
  --line-soft: #1a1e27;
  --text: #e6e9f0;
  --muted: #8b93a7;
  --dim: #5d6478;
  --gold: #ffc247;
  --gold-hi: #ffd88a;
  --gold-deep: #e29b16;
  --gold-dim: rgba(255, 194, 71, 0.14);
  --gold-glow: rgba(255, 194, 71, 0.35);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --indigo: #6f5cff;
  --indigo-hi: #8a7bff;
  --indigo-dim: rgba(111, 92, 255, 0.14);
  --mint: #17e0a3;
  --mint-dim: rgba(23, 224, 163, 0.13);
  --hot: #ff5c7a;
  --amber: #ffc14d;
  --rail: 232px;
  --cut: 10px;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
  --sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font: 15px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}
#app {
  min-height: 100%;
}
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.consent-panel {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel-hi);
  box-shadow: 0 20px 60px #00000073;
}
.consent-copy b {
  font-size: 15px;
}
.consent-copy p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.consent-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
}
.consent-toggle input {
  accent-color: var(--gold);
}
.consent-actions {
  margin-top: 14px;
  align-items: center;
}
.boot {
  display: grid;
  place-items: center;
  min-height: 100vh;
  color: var(--dim);
  font: 13px var(--mono);
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
a {
  color: var(--indigo-hi);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.cut {
  clip-path: polygon(
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%,
    0 var(--cut)
  );
}
.shell {
  display: grid;
  grid-template-columns: var(--rail) 1fr;
  min-height: 100vh;
}
.rail {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--line);
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 18px;
  cursor: pointer;
  background: none;
  border: 0;
  text-align: left;
}
.brand svg {
  flex: none;
}
.brand b {
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.brand span {
  display: block;
  font: 9px var(--mono);
  letter-spacing: 0.22em;
  color: var(--dim);
  text-transform: uppercase;
}
.rail nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rail nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: none;
  border: 0;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.12s;
}
.rail nav button:hover {
  color: var(--text);
  background: var(--panel);
}
.rail nav button[aria-current="true"] {
  color: var(--text);
  background: var(--indigo-dim);
  border-left-color: var(--indigo);
}
.wallet {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 12px;
  display: grid;
  gap: 8px;
}
.wallet .k {
  font: 9px var(--mono);
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
}
.wallet .v {
  font: 600 19px var(--mono);
  font-variant-numeric: tabular-nums;
}
.wallet .lvl {
  display: flex;
  justify-content: space-between;
  font: 10px var(--mono);
  color: var(--muted);
}
.bar {
  height: 3px;
  background: var(--line);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: var(--mint);
}
.main {
  padding: 34px 40px 80px;
  max-width: 1420px;
}
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.page-head h1 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.02em;
}
.page-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 62ch;
}
.kicker {
  font: 10px var(--mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--indigo-hi);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--indigo);
  color: #fff;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.12s;
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
}
.btn:hover:not(:disabled) {
  background: var(--indigo-hi);
}
.btn:disabled {
  opacity: 0.45;
  cursor: default;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn.ghost:hover:not(:disabled) {
  border-color: var(--indigo);
  background: var(--indigo-dim);
}
.btn.wide {
  width: 100%;
}
.btn.big {
  padding: 14px 24px;
  font-size: 14px;
}
.tag {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid var(--line);
  font: 9.5px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tag.mint {
  color: var(--mint);
  border-color: #17e0a359;
}
.tag.indigo {
  color: var(--indigo-hi);
  border-color: #6f5cff66;
}
.note {
  color: var(--dim);
  font-size: 12px;
  line-height: 1.6;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 26px;
}
.stats div {
  background: var(--panel);
  padding: 16px 18px;
}
.stats b {
  display: block;
  font: 600 21px var(--mono);
  font-variant-numeric: tabular-nums;
}
.stats span {
  font: 9px var(--mono);
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.filters button {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 13px;
  font: 10px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.filters button[aria-pressed="true"] {
  color: var(--text);
  border-color: var(--indigo);
  background: var(--indigo-dim);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 14px;
}
.card {
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: 0.14s;
  text-align: left;
  padding: 0;
  color: inherit;
}
.card:hover {
  border-color: var(--indigo);
  transform: translateY(-2px);
}
.card .art {
  height: 132px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.card .art canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.card .body {
  padding: 13px 15px 15px;
  display: grid;
  gap: 8px;
}
.card h3 {
  margin: 0;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  min-height: 2lh;
}
.card .meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.card .rtp {
  margin-left: auto;
  font: 10px var(--mono);
  color: var(--mint);
}
.game {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  background: var(--bg-deep);
}
.game-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.game-top h2 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.game-top .sub {
  font: 10px var(--mono);
  color: var(--dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.game-top .right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.readout {
  text-align: right;
}
.readout .k {
  font: 9px var(--mono);
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
}
.readout .v {
  font: 600 17px var(--mono);
  font-variant-numeric: tabular-nums;
}
.readout .v.win {
  color: var(--mint);
}
.stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px;
}
.stage canvas {
  display: block;
  max-width: 100%;
}
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}
.stepper button {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 15px;
}
.stepper button:hover:not(:disabled) {
  color: var(--text);
  background: var(--panel-hi);
}
.stepper .amount {
  min-width: 96px;
  text-align: center;
  font: 600 14px var(--mono);
  font-variant-numeric: tabular-nums;
}
.stepper .amount small {
  display: block;
  font: 8px var(--mono);
  letter-spacing: 0.2em;
  color: var(--dim);
}
.scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #050609d1;
  backdrop-filter: blur(5px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.dialog {
  width: 100%;
  max-width: 408px;
  background: var(--panel);
  border: 1px solid var(--line);
  max-height: calc(100vh - 40px);
  overflow: auto;
}
.dialog header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.dialog header b {
  font-size: 15px;
}
.dialog header button {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  width: 26px;
  height: 26px;
  cursor: pointer;
  line-height: 1;
}
.dialog header button:hover {
  color: var(--text);
  border-color: var(--indigo);
}
.dialog .body {
  padding: 20px;
  display: grid;
  gap: 14px;
}
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.tabs button {
  background: none;
  border: 0;
  padding: 9px;
  color: var(--muted);
  font: 10px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.tabs button[aria-pressed="true"] {
  background: var(--indigo-dim);
  color: var(--text);
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font: 9.5px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.field .box {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg);
}
.field .box:focus-within {
  border-color: var(--indigo);
}
.field input {
  flex: 1;
  background: none;
  border: 0;
  padding: 11px 12px;
  outline: none;
  font-size: 14px;
}
.field .box button {
  background: none;
  border: 0;
  color: var(--dim);
  font: 9px var(--mono);
  letter-spacing: 0.14em;
  padding: 0 12px;
  cursor: pointer;
}
.field .msg {
  font-size: 11.5px;
  color: var(--hot);
}
.field .hint {
  font-size: 11.5px;
  color: var(--dim);
}
.check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--muted);
}
.check input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  flex: none;
  margin: 1px 0 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.check input:checked {
  background: var(--indigo);
  border-color: var(--indigo);
}
.check input:checked:after {
  content: "✓";
  color: #fff;
  font-size: 11px;
  line-height: 1;
}
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font: 9px var(--mono);
  letter-spacing: 0.2em;
}
.divider:before,
.divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.link-btn {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 12.5px;
  cursor: pointer;
  padding: 0;
}
.link-btn:hover {
  color: var(--indigo-hi);
}
.form-error {
  color: var(--hot);
  font-size: 12.5px;
}
.fine {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--dim);
  font-size: 11px;
  text-align: center;
  line-height: 1.5;
}
.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.panels div {
  background: var(--panel);
  padding: 18px;
}
.panels b {
  display: block;
  font: 600 20px var(--mono);
  font-variant-numeric: tabular-nums;
}
.panels span {
  font: 9px var(--mono);
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
}
.prose {
  max-width: 72ch;
}
.prose h2 {
  font-size: 17px;
  margin: 28px 0 8px;
}
.prose p,
.prose li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.toasts {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  z-index: 80;
}
.toast {
  border: 1px solid var(--line);
  border-left: 2px solid var(--indigo);
  background: var(--panel);
  padding: 10px 14px;
  font-size: 13px;
  animation: rise 0.16s ease-out;
}
.toast.win {
  border-left-color: var(--mint);
}
.toast.bad {
  border-left-color: var(--hot);
}
@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
}
@media (max-width: 900px) {
  .shell {
    grid-template-columns: 1fr;
  }
  .rail {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 12px;
  }
  .rail .brand {
    padding: 0 8px 0 0;
  }
  .rail nav {
    flex-direction: row;
  }
  .rail nav button {
    border-left: 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }
  .rail nav button[aria-current="true"] {
    border-bottom-color: var(--indigo);
  }
  .rail .wallet {
    display: none;
  }
  .main {
    padding: 22px 16px 60px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.foot {
  margin: 64px -28px -28px;
  padding: 40px 28px 30px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-deep), #05060a);
  display: grid;
  gap: 22px;
}
.foot-top {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 34px;
}
@media (max-width: 860px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-brand b {
  display: block;
  letter-spacing: 0.16em;
  font-size: 15px;
}
.foot-brand span {
  display: block;
  color: var(--dim);
  font: 10px/1.6 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}
.foot-cols h4 {
  margin: 0 0 10px;
  font: 10px var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--indigo-hi);
}
.foot-link {
  display: block;
  background: none;
  border: 0;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13.5px;
  cursor: pointer;
  text-align: left;
  transition:
    color 0.14s ease,
    transform 0.14s ease;
}
.foot-link:hover {
  color: var(--text);
  transform: translate(3px);
}
.foot-note {
  margin: 0;
  color: var(--dim);
  font-size: 12.5px;
  line-height: 1.7;
}
.foot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge-lite {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  font: 9.5px var(--mono);
  letter-spacing: 0.16em;
  color: var(--dim);
}
.badge-lite:first-child {
  border-color: #6f5cff8c;
  color: var(--indigo-hi);
}
.foot-legal {
  margin: 0;
  max-width: 100ch;
  color: var(--dim);
  font-size: 11.5px;
  line-height: 1.75;
}
.foot-rights {
  margin: 0;
  color: #454b5c;
  font-size: 11px;
}
.stepper .edge {
  font: 10px var(--mono);
  letter-spacing: 0.14em;
  padding: 0 12px;
  color: var(--indigo-hi);
}
.amount.short {
  color: #ff5c7a;
}
.btn.big.short {
  background: linear-gradient(180deg, #2a2030, #1d1622);
  border-color: #ff5c7a80;
  color: #ff8fa3;
  box-shadow: none;
}
.bigwin {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 6px;
  background: radial-gradient(circle at 50% 45%, #0a0b0ed1, #05060af2);
  z-index: 6;
  animation: bw-in 0.28s ease-out both;
  overflow: hidden;
}
.bigwin.out {
  animation: bw-out 0.3s ease-in both;
}
.bw-rays {
  position: absolute;
  width: 150%;
  aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    transparent 0 6deg,
    rgba(111, 92, 255, 0.16) 6deg 12deg,
    transparent 12deg 24deg
  );
  animation: bw-spin 9s linear infinite;
}
.bigwin.mega .bw-rays {
  background: conic-gradient(
    from 0deg,
    transparent 0 5deg,
    rgba(255, 194, 71, 0.18) 5deg 10deg,
    transparent 10deg 20deg
  );
}
.bigwin.epic .bw-rays {
  background: conic-gradient(
    from 0deg,
    transparent 0 4deg,
    rgba(255, 61, 113, 0.2) 4deg 8deg,
    transparent 8deg 16deg
  );
}
.bw-title {
  position: relative;
  font: 800 13px var(--mono);
  letter-spacing: 0.42em;
  color: var(--indigo-hi);
  animation: bw-title 0.5s 0.05s ease-out both;
}
.bigwin.mega .bw-title {
  color: #ffc247;
}
.bigwin.epic .bw-title {
  color: #ff5c7a;
}
.bw-amount {
  position: relative;
  font-size: clamp(38px, 7vw, 74px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 10px 40px rgba(111, 92, 255, 0.45);
}
.bw-sub {
  position: relative;
  color: var(--muted);
  font: 11px var(--mono);
  letter-spacing: 0.2em;
}
@keyframes bw-in {
  0% {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
  }
}
@keyframes bw-out {
  to {
    opacity: 0;
    transform: scale(1.04);
  }
}
@keyframes bw-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes bw-title {
  0% {
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 0.8em;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.brand:hover .wheel,
.foot-brand .wheel {
  animation: wheel-spin 6s linear infinite;
}
@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(
      120% 140% at 88% 50%,
      rgba(255, 194, 71, 0.22),
      transparent 58%
    ),
    radial-gradient(
      90% 120% at 10% 20%,
      rgba(111, 92, 255, 0.16),
      transparent 60%
    ),
    linear-gradient(160deg, #14120c, #0a0b0e 60%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 10px;
  padding: 40px 0 40px 44px;
  margin-bottom: 26px;
  box-shadow: 0 30px 90px -50px var(--gold-glow);
}
.hero:after {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(
    72deg,
    transparent 42%,
    rgba(255, 216, 138, 0.07) 50%,
    transparent 58%
  );
  animation: sheen 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%,
  to {
    transform: translate(-18%);
  }
  50% {
    transform: translate(18%);
  }
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 54ch;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 194, 71, 0.4);
  background: var(--gold-dim);
  color: var(--gold-hi);
  border-radius: 999px;
  padding: 5px 13px;
  font: 10px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(
    100deg,
    var(--gold-hi),
    var(--gold) 45%,
    var(--gold-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  max-width: 52ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: var(--dim);
  font-size: 12.5px;
}
.hero-trust span:before {
  content: "✓";
  color: var(--gold);
  margin-right: 7px;
  font-weight: 700;
}
.hero-art {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 30px 60px rgba(255, 170, 40, 0.28));
  animation: hover-float 6s ease-in-out infinite;
}
@keyframes hover-float {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .hero-art {
    max-width: 100%;
    justify-self: center;
  }
}
.card,
.stats,
.prose,
.readout,
.bigwin,
.stage,
.foot-cols > div {
  border-radius: var(--r-lg);
}
.card {
  overflow: hidden;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #ffc24766;
  box-shadow: 0 24px 60px -34px var(--gold-glow);
}
.card .art {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.btn,
.filters button,
.stepper,
.badge-lite,
.tag,
.rtp {
  border-radius: 999px;
}
.btn.big {
  background: linear-gradient(
    180deg,
    var(--gold-hi),
    var(--gold) 46%,
    var(--gold-deep)
  );
  border-color: #ffd88ad9;
  color: #2a1c00;
  font-weight: 800;
  box-shadow:
    0 14px 34px -16px var(--gold-glow),
    inset 0 1px #ffffff8c;
}
.btn.big:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.stats > div {
  border-radius: var(--r-md);
}
.stats b {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rail-pod {
  margin: 4px 4px 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, #ffc24717, #12141ae6);
}
.rail-pod .who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rail-pod .who .av {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-content: center;
  font-weight: 800;
  color: #2a1c00;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-deep));
}
.rail-pod .who b {
  display: block;
  font-size: 13px;
}
.rail-pod .who span {
  color: var(--dim);
  font: 9.5px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rail-pod .coins {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.rail-pod .coins small {
  display: block;
  color: var(--dim);
  font: 9.5px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.xp {
  margin-top: 12px;
}
.xp-track {
  height: 6px;
  border-radius: 4px;
  background: #0b0d12;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.xp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-hi));
  transition: width 0.4s ease;
}
.xp-line {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: var(--dim);
  font: 9.5px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rail-title {
  margin: 16px 10px 8px;
  font: 9.5px var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}
.rail-recent {
  display: grid;
  gap: 4px;
  padding: 0 4px;
  margin-top: 18px;
}
.rail-recent h4,
.rail-fact h4 {
  margin: 0 0 8px 8px;
  color: var(--dim);
  font: 9.5px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rail-recent button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 7px 8px;
  border: 0;
  border-radius: var(--r-sm);
  background: none;
  color: var(--muted);
  font-size: 12.5px;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}
.rail-recent button:hover {
  background: var(--panel-hi);
  color: var(--text);
}
.rail-recent .thumb {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  flex: none;
  border: 1px solid var(--line);
}
.rail-fact {
  margin: 14px 8px 0;
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px dashed var(--line);
  color: var(--dim);
  font-size: 11.5px;
  line-height: 1.65;
}
.rail-fact h4 {
  color: var(--gold);
  margin: 0 0 6px;
}
.rail-fact p {
  margin: 0;
}
.section-head {
  margin: 46px 0 18px;
}
.section-head h2 {
  margin: 6px 0 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.why article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--panel), var(--bg-deep));
}
.why h3 {
  margin: 14px 0 8px;
  font-size: 16px;
}
.why p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}
.why .glyph {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(255, 194, 71, 0.35);
  color: var(--gold);
  font-size: 18px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  counter-reset: step;
}
.steps article {
  position: relative;
  padding: 20px 20px 20px 58px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
}
.steps article:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  font-weight: 800;
  color: #2a1c00;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-deep));
}
.steps h3 {
  margin: 0 0 6px;
  font-size: 15px;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.game-top {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--panel), var(--bg-deep));
  padding: 16px 20px;
}
.stage {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 120px -60px var(--gold-glow);
}
.stage canvas {
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.controls {
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.9), var(--bg-deep));
  border-top: 1px solid rgba(255, 194, 71, 0.22);
}
.stepper {
  border: 1px solid var(--line);
  background: #0b0d12;
  overflow: hidden;
}
.stepper button:hover,
.readout .v.win {
  color: var(--gold);
}
.card {
  position: relative;
  display: block;
  padding: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}
.card .art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
}
.card-scrim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    #06070a1a,
    #06070a00,
    #06070ab8 68%,
    #06070af2
  );
  pointer-events: none;
}
.card-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 1;
}
.card-body {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}
.card-body h3 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.card-body p {
  margin: 0 0 10px;
  color: #b9c0d0;
  font-size: 12.5px;
}
.card-body .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-play {
  position: absolute;
  z-index: 1;
  inset: auto 16px 16px auto;
  padding: 8px 18px;
  border-radius: 999px;
  font: 700 11px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2a1c00;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-deep));
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}
.card:hover .card-play,
.card:focus-visible .card-play {
  opacity: 1;
  transform: none;
}
.card:hover .art {
  transform: scale(1.03);
}
.card .art {
  transition: transform 0.4s ease;
}
.game-top {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  padding: 18px 22px;
}
.game-top:before {
  content: "";
  position: absolute;
  inset: -60% -20% auto;
  height: 220%;
  background: radial-gradient(
    60% 50% at 22% 40%,
    rgba(255, 194, 71, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.game-top > * {
  position: relative;
}
.game-thumb {
  width: 66px;
  height: 66px;
  flex: none;
  border-radius: 22px;
  border: 1px solid rgba(255, 194, 71, 0.35);
  box-shadow: 0 18px 40px -22px var(--gold-glow);
}
.game-top .title {
  min-width: 0;
  flex: 1;
}
.game-top .title h2 {
  margin: 0 0 9px;
  font-size: 26px;
  letter-spacing: -0.025em;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #0b0d1299;
  color: var(--dim);
  font: 9.5px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill.lead {
  border-color: #ffc24773;
  background: linear-gradient(180deg, #ffc24729, #ffc2470d);
  color: var(--gold-hi);
}
.game-top .right {
  display: flex;
  gap: 10px;
  flex: none;
}
@media (max-width: 720px) {
  .game-top {
    flex-wrap: wrap;
    gap: 12px;
  }
  .game-top .right {
    width: 100%;
    justify-content: space-between;
  }
}
.wincard {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translate(-50%) scale(1);
  z-index: 6;
  min-width: 210px;
  padding: 16px 26px 18px;
  text-align: center;
  border-radius: 26px;
  border: 1px solid rgba(255, 194, 71, 0.5);
  background: linear-gradient(170deg, #1e1808f5, #0b0d12f5);
  box-shadow:
    0 30px 70px -30px #000000e6,
    0 0 60px -20px var(--gold-glow);
  backdrop-filter: blur(6px);
  animation: wc-in 0.28s cubic-bezier(0.2, 1.5, 0.4, 1);
  pointer-events: none;
}
.wincard.out {
  opacity: 0;
  transform: translate(-50%, -14px) scale(0.96);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}
.wc-title {
  color: var(--gold-hi);
  font: 10px var(--mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.wc-amount {
  margin: 6px 0 2px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 0 26px var(--gold-glow);
}
.wc-sub {
  color: var(--dim);
  font: 10px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@keyframes wc-in {
  0% {
    opacity: 0;
    transform: translate(-50%, 16px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%) scale(1);
  }
}
.stage {
  position: relative;
}
.controls .btn.sound {
  font: 10px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 16px;
  white-space: nowrap;
}
.controls .btn.sound[aria-pressed="false"] {
  color: var(--dim);
  border-color: var(--line-soft);
}
.game-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.side {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--panel), var(--bg-deep));
  max-width: 300px;
}
.side.pay {
  justify-self: end;
}
.side h3 {
  margin: 0 0 4px;
  font: 10px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.side-note {
  margin: 0 0 12px;
  color: var(--dim);
  font: 10px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pay-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.pay-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  border-radius: var(--r-sm);
  background: #0b0d128c;
}
.pay-art {
  width: 34px;
  height: 34px;
  flex: none;
}
.pay-nums {
  display: grid;
  gap: 1px;
  width: 100%;
  min-width: 0;
}
.pay-nums span {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 0 2px;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.pay-nums i {
  font-style: normal;
  color: var(--dim);
  font: 8.5px var(--mono);
  letter-spacing: 0.08em;
}
.pay-nums b {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
}
.feature-card {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.feature-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  font-size: 11.5px;
}
.feature-row span {
  color: var(--dim);
}
.feature-row b {
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
.log-tally {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.log-tally div {
  padding: 8px 10px;
  border-radius: var(--r-sm);
  background: #0b0d128c;
}
.log-tally span {
  display: block;
  color: var(--dim);
  font: 9px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.log-tally b {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.log-list {
  display: grid;
  gap: 2px;
}
.log-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 8px;
  border-radius: var(--r-sm);
  font-size: 11.5px;
  color: var(--dim);
  animation: log-in 0.25s ease;
}
.log-row b {
  margin-left: auto;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.log-row i {
  font-style: normal;
  font: 9.5px var(--mono);
  min-width: 40px;
  text-align: right;
}
.log-row.won {
  background: #ffc24714;
  color: var(--muted);
}
.log-row.won b {
  color: var(--gold-hi);
}
@keyframes log-in {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@media (max-width: 1240px) {
  .game-body {
    grid-template-columns: minmax(0, 1fr);
  }
  .side {
    max-width: none;
    justify-self: stretch;
  }
  .side.pay {
    order: 2;
  }
}
:root {
  --bg: #070516;
  --bg-deep: #04030d;
  --panel: rgba(23, 16, 56, 0.62);
  --panel-hi: rgba(38, 26, 88, 0.72);
  --line: rgba(150, 110, 255, 0.28);
  --line-soft: rgba(120, 90, 220, 0.16);
  --text: #f2ecff;
  --muted: #b3a6e0;
  --dim: #7d72ad;
  --gold: #ffc247;
  --gold-hi: #ffe1a0;
  --gold-deep: #f0951c;
  --gold-dim: rgba(255, 194, 71, 0.16);
  --gold-glow: rgba(255, 140, 240, 0.45);
  --indigo: #ff3df0;
  --indigo-hi: #ff86f6;
  --indigo-dim: rgba(255, 61, 240, 0.16);
  --mint: #2ff3ff;
  --mint-dim: rgba(47, 243, 255, 0.14);
  --hot: #ff4d6d;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 38px;
  --cut: 0px;
  --sans:
    "Outfit", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body {
  background:
    linear-gradient(
      180deg,
      rgba(7, 5, 22, 0.55) 0%,
      rgba(7, 5, 22, 0.88) 55%,
      var(--bg-deep) 100%
    ),
    image-set(url(/hero/raccoon.jpg) 1x, url(/hero/raccoon.jpg) 2x) center top /
      cover no-repeat fixed,
    var(--bg-deep);
  color: var(--text);
}
@media (max-width: 900px) {
  body {
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 5, 22, 0.6) 0%,
        rgba(7, 5, 22, 0.9) 55%,
        var(--bg-deep) 100%
      ),
      url(/hero/raccoon-sm.jpg);
  }
}
.shell {
  grid-template-columns: 1fr;
}
.rail {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: auto;
  padding: 14px 26px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background: #070516b8;
  backdrop-filter: blur(18px) saturate(140%);
  overflow: visible;
  flex-direction: row;
  flex-wrap: nowrap;
}
.rail .btn.wide,
.rail .btn.big {
  width: auto;
  padding: 10px 22px;
  margin: 0;
  white-space: nowrap;
}
.rail .link-btn {
  margin: 0;
  white-space: nowrap;
}
.rail nav {
  display: flex;
  gap: 4px;
  margin: 0;
}
.rail nav button {
  border-radius: 999px;
  padding: 9px 18px;
}
.rail nav button[aria-current="true"] {
  background: linear-gradient(180deg, var(--indigo), #c318c0);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 30px -12px var(--gold-glow);
}
.rail .spacer {
  flex: 1;
}
.rail .brand {
  margin: 0 6px 0 0;
}
.rail-pod {
  order: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff3df029, #2ff3ff1f);
  border: 1px solid var(--line);
}
.rail-pod .who {
  margin: 0;
}
.rail-pod .coins {
  font-size: 17px;
}
.rail-pod .coins small,
.rail-pod .xp {
  display: none;
}
.rail-pod .btn.big {
  width: auto;
  padding: 10px 20px;
}
.rail-pod .foot-note,
.rail-recent,
.rail-fact {
  display: none;
}
.main {
  padding-top: 34px;
}
.card,
.side,
.stats,
.prose,
.readout,
.game-top,
.rail-pod,
.foot-cols > div,
.why article,
.log-tally div {
  background: var(--panel);
  backdrop-filter: blur(14px) saturate(130%);
  border-color: var(--line);
}
.card {
  box-shadow: 0 30px 80px -40px #000000e6;
}
.card:hover {
  border-color: var(--indigo);
  box-shadow: 0 40px 90px -40px var(--gold-glow);
}
.btn {
  background: linear-gradient(180deg, var(--indigo), #b312b6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 34px -16px var(--gold-glow);
}
.btn.ghost {
  background: #ffffff0d;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}
.hero {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 40px 0 26px;
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero img,
.hero picture {
  display: none;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}
.hero p {
  max-width: 46ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}
@media (max-width: 760px) {
  .rail {
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  .rail nav {
    order: 4;
    width: 100%;
    overflow-x: auto;
  }
}
.rail nav {
  flex-direction: row;
  align-items: center;
}
.rail > .btn,
.rail > .link-btn,
.rail > .rail-pod {
  flex: 0 0 auto;
}
.rail > .link-btn {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 1080px) {
  .rail > .link-btn {
    display: none;
  }
}
.ticker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 26px;
  padding: 0 0 0 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 61, 240, 0.35);
  background: linear-gradient(90deg, #ff3df029, #2ff3ff14);
  overflow: hidden;
}
.ticker-tag {
  flex: none;
  margin: 5px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--indigo);
  color: #fff;
  font: 11px var(--mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 30px -6px var(--indigo);
}
.ticker-track {
  flex: 1;
  overflow: hidden;
}
.crawl {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: crawl 42s linear infinite;
}
.crawl span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  font-size: 12.5px;
  color: var(--muted);
}
.crawl b {
  color: var(--gold-hi);
}
.crawl i {
  font-style: normal;
  font: 10px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
@keyframes crawl {
  to {
    transform: translate(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .crawl {
    animation: none;
  }
}
.deck {
  position: relative;
  margin: 0 -6px;
}
.floor {
  display: flex;
  gap: 14px;
  padding: 26px 6px 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  perspective: 1400px;
  perspective-origin: 50% 45%;
}
.floor::-webkit-scrollbar {
  display: none;
}
.floor .card {
  flex: 0 0 clamp(190px, 17vw, 236px);
  height: 318px;
  scroll-snap-align: center;
  transform-style: preserve-3d;
}
.floor .card.lead {
  border-color: #ffc2478c;
  box-shadow:
    0 30px 80px -40px #000000e6,
    0 0 44px -18px var(--gold-glow);
}
.floor .card h3 {
  font-size: 16px;
}
.floor .card p {
  font-size: 11.5px;
  -webkit-line-clamp: 2;
}
.floor .card .card-body {
  padding: 14px;
  gap: 6px;
}
.floor .card .tag,
.floor .card .rtp {
  font-size: 8.5px;
  padding: 3px 7px;
}
.floor .card .card-play {
  padding: 8px 16px;
  font-size: 11px;
}
@supports (animation-timeline: view()) {
  .floor .card {
    animation: deck-flow linear both;
    animation-timeline: view(inline);
    animation-range: entry 0% exit 100%;
  }
  @keyframes deck-flow {
    0% {
      transform: translateZ(-190px) rotateY(34deg) scale(0.9);
      opacity: 0.45;
    }
    32%,
    68% {
      transform: none;
      opacity: 1;
    }
    to {
      transform: translateZ(-190px) rotateY(-34deg) scale(0.9);
      opacity: 0.45;
    }
  }
  .deck:after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: -2px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--indigo), var(--mint));
    transform-origin: left;
    animation: deck-progress linear both;
    animation-timeline: scroll(nearest inline);
  }
  @keyframes deck-progress {
    0% {
      transform: scaleX(0.08);
    }
    to {
      transform: scaleX(1);
    }
  }
}
.deck {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}
.deck-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  margin-top: -30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #070516d1;
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}
.deck-arrow:hover {
  background: var(--indigo);
  border-color: transparent;
  transform: scale(1.08);
}
.deck-arrow.left {
  left: -16px;
}
.deck-arrow.right {
  right: -16px;
}
@media (max-width: 760px) {
  .deck-arrow {
    display: none;
  }
}
.tag.hot {
  border-color: #ff4d6d80;
  background: #ff4d6d2e;
  color: #ffc2cd;
}
.wordmark b {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}
.wordmark b em {
  font-style: normal;
  background: linear-gradient(100deg, var(--indigo-hi), var(--gold-hi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 61, 240, 0.55));
}
.wordmark span {
  display: block;
  margin-top: 5px;
  color: var(--dim);
  font: 9px var(--mono);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.foot {
  width: 100vw;
  margin: 70px calc(50% - 50vw) 0;
  padding: 54px clamp(20px, 5vw, 70px) 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 5, 22, 0.86), var(--bg-deep));
  backdrop-filter: blur(20px);
}
.foot-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.foot-top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2.2fr;
  gap: 46px;
  align-items: start;
}
.foot-brand {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.foot-cols > div {
  background: none;
  border: 0;
  padding: 0;
  backdrop-filter: none;
}
.foot-cols h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font: 10px var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.foot-link {
  display: block;
  padding: 5px 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}
.foot-note {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.7;
}
.foot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.foot-legal {
  margin: 0;
  max-width: 105ch;
  color: var(--dim);
  font-size: 11.5px;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .foot-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .foot-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.main {
  margin-inline: auto;
}
.hand {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  padding: 10px 0 4px;
}
.hand .rule {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 30px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, #1c1442e6, #0c0820eb);
  box-shadow: 0 26px 60px -34px #000000f2;
  transform: rotate(var(--tilt)) translateY(calc(var(--tilt) * 1.4));
  transition:
    transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.2),
    border-color 0.2s ease;
}
.hand:hover .rule {
  transform: none;
}
.hand .rule:hover {
  border-color: var(--gold);
}
.rule-pip {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 17px;
  color: var(--gold-hi);
  line-height: 1;
}
.rule-pip.flip {
  inset: auto 18px 14px auto;
  transform: rotate(180deg);
}
.rule-wash {
  position: absolute;
  right: -18px;
  bottom: -46px;
  font-size: 190px;
  line-height: 0.8;
  color: #ffffff0b;
  pointer-events: none;
}
.hand .rule h3 {
  position: relative;
  margin: 26px 0 10px;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.hand .rule p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}
.trail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
  margin-top: 34px;
  padding-top: 26px;
}
.trail:before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 8px,
    transparent 8px 16px
  );
}
.trail article {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  text-align: center;
}
.trail .chip {
  position: relative;
  display: grid;
  place-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  font: 700 19px var(--sans);
  color: #1a0b28;
  background: radial-gradient(
    circle at 34% 30%,
    #ffe9b8,
    var(--gold) 58%,
    var(--gold-deep)
  );
  box-shadow:
    0 0 0 4px #070516e6,
    0 0 0 6px #ffc24780,
    0 16px 34px -14px #ffc24799;
}
.trail article:hover .chip {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}
.trail h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.trail p {
  margin: 0 auto;
  max-width: 34ch;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}
@media (max-width: 720px) {
  .trail:before {
    display: none;
  }
}
.rail {
  gap: 0;
  padding: 0 clamp(16px, 3vw, 34px);
  height: 74px;
  border-bottom: 0;
  box-shadow:
    0 1px #ffffff0f,
    0 18px 40px -30px #000000e6;
}
.rail:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--indigo) 22%,
    var(--gold) 62%,
    transparent
  );
  opacity: 0.75;
}
.rail .brand {
  flex: 0 0 auto;
  gap: 12px;
  padding: 0;
  margin-right: 26px;
}
.rail nav {
  margin: 0 auto;
  gap: 2px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: #00000040;
}
.rail nav button {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.rail nav button[aria-current="true"] {
  color: #fff;
  background: linear-gradient(180deg, var(--indigo), #b312b6);
  box-shadow:
    0 8px 24px -10px var(--indigo),
    inset 0 1px #ffffff59;
}
.rail .spacer {
  display: none;
}
.rail > .btn,
.rail > .link-btn,
.rail > .rail-pod {
  margin-left: 12px;
}
.rail > .btn.wide {
  padding: 11px 24px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.rail-pod {
  padding: 7px 8px 7px 18px;
  gap: 16px;
  background: linear-gradient(120deg, #ff3df024, #2ff3ff1a);
  box-shadow: inset 0 1px #ffffff1f;
}
.rail-pod .coins {
  font-size: 16px;
  letter-spacing: 0;
}
.rail-pod .who .av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
}
@supports (animation-timeline: scroll()) {
  .rail {
    animation: bar-shrink linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 240px;
  }
  @keyframes bar-shrink {
    to {
      height: 62px;
      background: #070516e6;
    }
  }
}
@media (max-width: 900px) {
  .rail {
    height: auto;
    padding: 10px 14px;
  }
  .rail nav {
    margin: 8px 0 0;
    order: 5;
    width: 100%;
  }
}
.trail article:before {
  display: none;
}
.floor .card {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0620;
  box-shadow: 0 24px 60px -34px #000000f2;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.floor .card:after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  pointer-events: none;
  z-index: 3;
}
.floor .card:hover {
  border-color: var(--gold);
  box-shadow:
    0 30px 70px -30px #000000f2,
    0 0 40px -14px var(--gold-glow);
}
.floor .card.lead:after {
  border-color: #ffc24799;
}
.floor .card .art,
.floor .card .card-scrim {
  border-radius: 5px;
}
.floor .card .tag,
.floor .card .rtp {
  border-radius: 3px;
}
.floor .card .card-play {
  border-radius: 4px;
}
.side {
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.side h3 {
  margin: 0;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 61, 240, 0.14), transparent);
}
.side .side-note {
  margin: 0;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: #00000040;
}
.pay-list {
  gap: 0;
  padding: 4px 0;
}
.pay-row {
  gap: 12px;
  padding: 7px 16px;
  border-radius: 0;
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pay-row:last-child {
  border-bottom: 0;
}
.pay-row:nth-child(odd) {
  background: #ffffff07;
}
.pay-row:hover {
  background: #ff3df01a;
}
.pay-art {
  width: 38px;
  height: 38px;
}
.pay-nums {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 10px;
  align-items: baseline;
}
.pay-nums span {
  display: block;
  text-align: right;
}
.pay-nums i {
  display: block;
  margin-bottom: 1px;
  text-align: right;
  font-size: 8.5px;
  opacity: 0.75;
}
.pay-nums b {
  display: block;
  font-size: 12px;
  color: var(--text);
}
.pay-row:first-child .pay-nums b {
  color: var(--gold-hi);
}
.feature-card {
  margin: 0;
  padding: 14px 16px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(47, 243, 255, 0.1), transparent);
}
.feature-card h3 {
  padding: 0 0 10px;
  border: 0;
  background: none;
  color: var(--mint);
}
.feature-row {
  padding: 5px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.07);
}
.feature-row:last-child {
  border-bottom: 0;
}
.log-tally {
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line-soft);
}
.log-tally div {
  border-radius: 0;
  background: #0b0620e6;
  padding: 10px 12px;
}
.log-list {
  gap: 0;
  padding: 6px 0 10px;
}
.log-row {
  border-radius: 0;
  padding: 6px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.log-row.won {
  background: #ffc24717;
  box-shadow: inset 3px 0 0 var(--gold);
}
:root {
  --bg: #05070c;
  --bg-deep: #020306;
  --panel: #090d15;
  --panel-hi: #0e131e;
  --line: #1b2333;
  --line-soft: #131926;
  --text: #eef4ff;
  --muted: #93a1bd;
  --dim: #5d6c8a;
  --indigo: #4fd8ff;
  --indigo-hi: #a5efff;
  --indigo-dim: rgba(79, 216, 255, 0.12);
  --mint: #7cf0c8;
  --mint-dim: rgba(124, 240, 200, 0.12);
  --gold: #ffca5c;
  --gold-hi: #ffe6ab;
  --gold-deep: #e59b12;
  --gold-dim: rgba(255, 202, 92, 0.14);
  --gold-glow: rgba(79, 216, 255, 0.4);
  --hot: #ff6b81;
  --r-sm: 0px;
  --r-md: 0px;
  --r-lg: 0px;
  --r-xl: 0px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0
      0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 72px
      72px;
}
.shell {
  position: relative;
  z-index: 1;
}
.rail {
  height: auto;
  padding: 0;
  background: #05070ceb;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0 clamp(16px, 3vw, 40px);
  min-height: 68px;
}
.rail:after {
  display: none;
}
.rail .brand {
  margin: 0 34px 0 0;
  gap: 12px;
}
.rail nav {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  gap: 26px;
}
.rail nav button {
  position: relative;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--muted);
  font: 11px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rail nav button:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.rail nav button:hover {
  color: var(--text);
}
.rail nav button[aria-current="true"] {
  color: var(--text);
  background: none;
  box-shadow: none;
}
.rail nav button[aria-current="true"]:after {
  transform: scaleX(1);
}
.rail > .btn,
.rail > .link-btn,
.rail > .rail-pod {
  margin-left: 14px;
}
.rail-pod {
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: none;
  padding: 8px 14px;
}
.rail-pod .who .av {
  border-radius: 0;
  background: linear-gradient(180deg, var(--indigo-hi), var(--indigo));
  color: #04121a;
}
.wordmark b em {
  background: linear-gradient(100deg, var(--indigo-hi), var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
}
.btn {
  border-radius: 0;
  background: linear-gradient(180deg, var(--indigo-hi), var(--indigo));
  color: #03151d;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: none;
  border: 0;
}
.btn:hover {
  background: #fff;
}
.btn.ghost {
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn.ghost:hover {
  border-color: var(--indigo);
  background: none;
}
.ds-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0 46px;
  border-bottom: 1px solid var(--line);
}
.ds-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--indigo);
  color: var(--indigo-hi);
  font: 10px var(--mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.ds-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.ds-hero h1 em {
  font-style: normal;
  color: var(--indigo);
}
.ds-hero p {
  margin: 0 0 26px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.ds-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ds-hero-art {
  position: relative;
  aspect-ratio: 4 / 3;
}
.ds-hero-art:after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--indigo);
  opacity: 0.5;
  pointer-events: none;
}
.ds-hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
@media (max-width: 1000px) {
  .ds-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}

/* Google Ads social-casino disclosure: one complete homepage statement,
   visually integrated into the page background rather than presented as a card. */
.home-disclosure {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  margin: 0 calc(50% - 50vw);
  padding: clamp(28px, 4vw, 52px)
    max(clamp(20px, 6vw, 88px), calc((100vw - 1280px) / 2));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(111, 92, 255, 0.2),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(245, 207, 107, 0.1),
      transparent 28%
    ),
    linear-gradient(100deg, rgba(12, 8, 32, 0.94), rgba(5, 7, 12, 0.72));
}
.home-disclosure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 79px,
    rgba(255, 255, 255, 0.018) 80px
  );
}
.home-disclosure-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(70px, 9vw, 108px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 207, 107, 0.42);
  border-radius: 50%;
  color: var(--gold-hi);
  font: 800 clamp(24px, 4vw, 38px) var(--mono);
  box-shadow:
    inset 0 0 34px rgba(245, 207, 107, 0.08),
    0 0 42px rgba(111, 92, 255, 0.15);
}
.home-disclosure-copy {
  position: relative;
  z-index: 1;
  max-width: 105ch;
}
.home-disclosure h2 {
  margin: 6px 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
}
.home-disclosure p {
  margin: 0;
  color: #c5c8d4;
  font-size: clamp(13px, 1.25vw, 15px);
  line-height: 1.72;
}
.home-disclosure-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 14px;
}
.home-disclosure a,
.legal-action {
  color: var(--gold-hi);
  text-decoration: underline;
  text-decoration-color: rgba(245, 207, 107, 0.38);
  text-underline-offset: 4px;
}
.home-disclosure a:hover,
.legal-action:hover {
  color: #fff;
}
@media (max-width: 620px) {
  .home-disclosure {
    grid-template-columns: 1fr;
  }
  .home-disclosure-mark {
    width: 62px;
  }
}
.filters {
  margin: 26px 0 18px;
}
.filters button {
  border-radius: 0;
}
.ds-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: start;
  padding-bottom: 20px;
}
.ds-index {
  border-top: 1px solid var(--line);
}
.ds-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 12px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: none;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.14s ease,
    padding-left 0.14s ease;
}
.ds-row:hover,
.ds-row[aria-selected="true"] {
  background: var(--panel);
  padding-left: 18px;
}
.ds-row[aria-selected="true"] {
  box-shadow: inset 3px 0 0 var(--indigo);
}
.ds-rank {
  color: var(--dim);
  font: 10px var(--mono);
  letter-spacing: 0.1em;
}
.ds-row-main b {
  display: block;
  font-size: 14px;
  font-weight: 650;
}
.ds-row-main span {
  display: block;
  margin-top: 2px;
  color: var(--dim);
  font-size: 11.5px;
}
.ds-row-vol {
  color: var(--muted);
  font: 9.5px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ds-row-rtp {
  color: var(--gold);
  font: 11px var(--mono);
  font-variant-numeric: tabular-nums;
}
.ds-showcase {
  position: sticky;
  top: 92px;
}
.ds-show {
  display: grid;
  grid-template-rows: auto auto;
  border: 1px solid var(--line);
  background: var(--panel);
}
.ds-show-art {
  position: relative;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.ds-show-art canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.ds-show-body {
  padding: 22px 24px 26px;
}
.ds-show-kicker {
  display: flex;
  justify-content: space-between;
  color: var(--indigo);
  font: 10px var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ds-show-kicker i {
  font-style: normal;
  color: var(--gold);
}
.ds-show h2 {
  margin: 12px 0 8px;
  font-size: 27px;
  letter-spacing: -0.02em;
}
.ds-show p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13.5px;
}
.ds-spec {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 22px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.ds-spec > div {
  padding: 11px 12px;
  background: var(--bg);
}
.ds-spec dt {
  color: var(--dim);
  font: 9px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ds-spec dd {
  margin: 5px 0 0;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.ds-show .btn.big {
  width: 100%;
}
@media (max-width: 1000px) {
  .ds-board {
    grid-template-columns: minmax(0, 1fr);
  }
  .ds-showcase {
    position: static;
    order: -1;
  }
}
.section-head {
  margin: 54px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.ds-claims {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.ds-claim {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  gap: 26px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.ds-claim b {
  font-size: 15px;
  font-weight: 650;
}
.ds-claim p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}
@media (max-width: 720px) {
  .ds-claim {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
}
.foot {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 0;
  background: var(--bg-deep);
  backdrop-filter: none;
  clip-path: polygon(0 46px, 100% 0, 100% 100%, 0 100%);
}
.foot-top {
  grid-template-columns: minmax(240px, 1fr) 2fr;
}
.foot-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.foot-cols h4 {
  color: var(--indigo);
}
.foot-link:hover {
  color: var(--indigo-hi);
}
.badge-lite {
  border-radius: 0;
}
.rail {
  display: flex;
  flex-wrap: nowrap;
}
.rail nav {
  margin: 0 auto;
}
.rail .rail-pod .btn.big {
  width: auto;
  padding: 9px 16px;
  font-size: 12px;
  white-space: nowrap;
}
.rail .rail-pod .foot-note,
.rail .rail-pod .xp {
  display: none;
}
.rail .rail-pod {
  max-width: 340px;
}
@media (max-width: 1100px) {
  .rail nav {
    gap: 16px;
  }
  .rail > .link-btn {
    display: none;
  }
}
.ds-plate {
  position: relative;
  margin: 0;
}
.ds-facets {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  aspect-ratio: 16 / 10;
}
.ds-facet {
  background-image: url(/hero/raccoon.jpg);
  background-size: 300% 100%;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease;
}
.ds-facet.f1 {
  background-position: 0% 50%;
  transform: translateY(-14px);
}
.ds-facet.f2 {
  background-position: 50% 50%;
  transform: translateY(0);
}
.ds-facet.f3 {
  background-position: 100% 50%;
  transform: translateY(14px);
}
.ds-plate:hover .ds-facet {
  transform: none;
  border-color: #4fd8ff73;
}
.ds-plate-glow {
  position: absolute;
  inset: 8% 6%;
  z-index: 0;
  background: url(/hero/raccoon-sm.jpg) center / cover no-repeat;
  filter: blur(46px) saturate(1.5);
  opacity: 0.5;
  transform: scale(1.06);
  pointer-events: none;
}
.ds-plate figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.ds-plate figcaption b {
  color: var(--indigo-hi);
  font: 10px var(--mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.ds-plate figcaption span {
  color: var(--dim);
  font-size: 11.5px;
}
@supports (animation-timeline: view()) {
  .ds-facet {
    animation: facet-drift linear both;
    animation-timeline: view(block);
    animation-range: entry 20% exit 90%;
  }
  .ds-facet.f1 {
    --drift: -26px;
  }
  .ds-facet.f2 {
    --drift: 8px;
  }
  .ds-facet.f3 {
    --drift: 26px;
  }
  @keyframes facet-drift {
    to {
      transform: translateY(var(--drift));
    }
  }
  .ds-plate:hover .ds-facet {
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ds-facet {
    animation: none;
    transform: none;
  }
}
.ds-hero-art {
  display: none;
}
.game-body {
  grid-template-columns: 320px minmax(0, auto) 320px;
  gap: 22px;
}
.side {
  max-width: none;
}
.pay-row {
  gap: 14px;
  padding: 8px 14px;
}
.pay-art {
  width: 42px;
  height: 42px;
}
.pay-nums {
  gap: 0 14px;
}
.pay-nums span {
  min-width: 0;
}
.pay-nums b {
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pay-nums i {
  font-size: 9px;
}
@media (max-width: 1500px) {
  .game-body {
    grid-template-columns: 290px minmax(0, auto) 290px;
  }
}
@media (max-width: 1240px) {
  .game-body {
    grid-template-columns: minmax(0, 1fr);
  }
}
.pay-row {
  display: grid;
  grid-template-columns: 44px repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0 10px;
}
.pay-nums {
  display: contents;
}
.pay-nums span {
  display: block;
  min-width: 0;
  text-align: right;
  overflow: hidden;
}
.pay-nums i {
  display: block;
  font: 8.5px var(--mono);
  letter-spacing: 0.08em;
  color: var(--dim);
}
.pay-nums b {
  display: block;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pay-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.pay-row {
  padding: 8px 14px;
}
.pay-nums b {
  text-overflow: clip;
}

/* Compliance-footer and legal/support route refinements. */
.foot-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.foot-help {
  max-width: 32ch;
  color: var(--gold-hi);
}
.foot-legal {
  max-width: 118ch;
  color: #aeb3c2;
}
.foot-link {
  text-decoration: none;
}
.legal-action {
  display: inline-block;
  margin: 4px 0 18px;
}
.support-form {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.support-form h2,
.support-form p {
  margin: 0;
}
.support-form label {
  display: grid;
  gap: 7px;
  max-width: 720px;
  color: var(--muted);
  font-size: 13px;
}
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(7, 8, 14, 0.76);
  color: var(--text);
  font: inherit;
}
.support-form textarea {
  resize: vertical;
}
.support-form .btn {
  width: fit-content;
}
.prehydrate-shell {
  min-height: 100vh;
  padding: clamp(24px, 6vw, 80px);
  background:
    radial-gradient(circle at 75% 5%, rgba(111, 92, 255, 0.2), transparent 34%),
    var(--bg);
}
.prehydrate-hero {
  max-width: 1100px;
  margin: 0 auto;
}
.prehydrate-hero h1 {
  max-width: 14ch;
  margin: 18px 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
}
.prehydrate-hero > p {
  max-width: 62ch;
  color: var(--muted);
}
.prehydrate-hero .home-disclosure {
  margin-top: 34px;
}
.prehydrate-footer {
  max-width: 1100px;
  margin: 52px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.prehydrate-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 14px 0;
}
.prehydrate-footer a {
  color: var(--muted);
}
.prehydrate-footer p {
  color: #aeb3c2;
  font-size: 12px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .foot-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .foot-cols {
    grid-template-columns: 1fr;
  }
}
