:root {
  --bg: #09090d;
  --surface: #121218;
  --surface-2: #191920;
  --line: #2d2d37;
  --text: #f8f6ef;
  --muted: #aaa7b1;
  --gold: #f5c451;
  --pink: #ff3c78;
  --cyan: #42d9db;
  --green: #64d98b;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(245, 196, 81, .12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 13, .94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 950;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 20px;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a,
.language-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover,
.language-links a:hover,
.language-links a[aria-current="page"] {
  color: var(--text);
}

.header-actions,
.language-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-links {
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #171208;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn:hover {
  background: #ffd66d;
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--surface);
}

.hero {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .85fr);
  align-items: center;
  gap: 72px;
  padding: 74px 0 60px;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin: 18px 0 22px;
  font-size: clamp(48px, 6.6vw, 92px);
  letter-spacing: -.055em;
  line-height: .94;
}

h1 .accent {
  display: block;
  color: var(--gold);
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: #d2cfd8;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.microcopy {
  display: flex;
  max-width: 650px;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.microcopy strong {
  color: var(--green);
}

.machine {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #49434b;
  background: #111116;
  padding: 18px;
  box-shadow: 18px 18px 0 #050507;
}

.machine::before {
  position: absolute;
  inset: 8px;
  border: 1px solid #332e35;
  content: "";
  pointer-events: none;
}

.machine-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 14px 18px;
  border-bottom: 1px solid var(--line);
}

.machine-label {
  display: block;
  color: var(--pink);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.machine-balance {
  color: var(--gold);
  font-size: clamp(25px, 4vw, 34px);
  font-variant-numeric: tabular-nums;
  font-weight: 950;
}

.free-pill {
  border: 1px solid #315e48;
  color: var(--green);
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 950;
}

.reels {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 26px 14px;
}

.reel {
  display: grid;
  min-width: 0;
  aspect-ratio: 1 / 1.08;
  place-items: center;
  overflow: hidden;
  border: 1px solid #3d3a42;
  background: #f4f1e9;
  box-shadow: inset 0 0 0 8px #ded9ce;
  color: #111;
  font-size: clamp(46px, 6vw, 70px);
}

.machine-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 0 14px 14px;
}

.machine-note {
  border: 1px solid var(--line);
  background: #0a0a0e;
  padding: 10px 14px;
}

.machine-note small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.machine-note strong {
  color: var(--cyan);
  font-size: 19px;
}

.spin-link {
  display: grid;
  width: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.proof-band {
  border-block: 1px solid var(--line);
  background: #0d0d12;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-size: 21px;
}

.proof-item span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--pink);
}

h2 {
  margin: 7px 0 0;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -.035em;
  line-height: 1.04;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.card {
  min-width: 0;
  background: var(--surface);
  padding: 28px;
}

.card-number {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
}

.card h3 {
  margin: 48px 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.content-main,
.content-side {
  background: var(--surface);
  padding: 34px;
}

.content-main h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.15;
}

.content-main p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
  text-underline-offset: 4px;
}

.link-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.link-list a {
  display: block;
  background: var(--surface-2);
  padding: 18px 20px;
  text-decoration: none;
}

.link-list a:hover {
  color: var(--gold);
}

.link-list strong,
.link-list span {
  display: block;
}

.link-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.faq {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

details {
  background: var(--surface);
  padding: 0 24px;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  color: var(--gold);
  content: "+";
  font-size: 22px;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 850px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.locale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.locale-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
  text-decoration: none;
}

.locale-card:hover {
  border-color: var(--gold);
}

.locale-card strong,
.locale-card span {
  display: block;
}

.locale-card strong {
  font-size: 20px;
}

.locale-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.article-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--gold);
}

.article-header {
  padding: 54px 0 32px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 72px);
}

.article-deck {
  max-width: 780px;
  margin: 0;
  color: #d2cfd8;
  font-size: 19px;
}

.byline {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.article-body {
  padding: 36px 0 76px;
}

.article-body h2 {
  margin: 54px 0 15px;
  font-size: clamp(29px, 4vw, 40px);
}

.article-body h3 {
  margin: 30px 0 8px;
  font-size: 21px;
}

.article-body p,
.article-body li {
  color: #c8c5ce;
}

.article-body a {
  color: var(--gold);
  text-underline-offset: 4px;
}

.article-body li + li {
  margin-top: 8px;
}

.toc,
.callout,
.table-wrap {
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
}

.toc strong {
  display: block;
  margin-bottom: 8px;
}

.toc ol {
  margin-bottom: 0;
  padding-left: 22px;
}

.callout {
  border-left: 4px solid var(--gold);
}

.callout strong {
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--text);
}

td {
  color: var(--muted);
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 28px;
}

.article-cta h2 {
  margin: 0 0 8px;
  font-size: 27px;
}

.article-cta p {
  margin: 0;
}

.site-footer {
  padding: 36px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 54px;
  }

  .machine {
    max-width: 620px;
  }

  .section-heading,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

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

  .card h3 {
    margin-top: 28px;
  }
}

@media (max-width: 680px) {
  .shell,
  .article-shell {
    width: min(100% - 24px, var(--max));
  }

  .header-inner {
    min-height: 62px;
    gap: 10px;
  }

  .brand-copy small,
  .header-actions .btn {
    display: none;
  }

  .language-links {
    margin-left: auto;
  }

  .hero {
    padding: 42px 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .machine {
    padding: 12px;
    box-shadow: 8px 8px 0 #050507;
  }

  .reels {
    gap: 6px;
    padding: 18px 8px;
  }

  .reel {
    box-shadow: inset 0 0 0 5px #ded9ce;
    font-size: 42px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 60px 0;
  }

  .content-main,
  .content-side {
    padding: 24px;
  }

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

  .article-header {
    padding-top: 38px;
  }

  .article-header h1 {
    font-size: 42px;
  }

  .article-deck {
    font-size: 17px;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
