/* ============================================================
   SLOT — stylesheet
   Palette lifted straight from the cabinet illustration already
   in the markup: deep felt green, gold trim, cream ink, a single
   card-suit red for accents. Nothing invented outside that set.
   ============================================================ */

:root {
  /* --- color: felt table, gold trim --- */
  --green-deep:      #0C1D13;
  --green-mid:        #173A26;
  --green-cabinet:   #1E3B27;
  --bg:               #0A1710;
  --bg-elevated:      #0E2116;
  --panel-line:       rgba(212, 175, 55, 0.22);
  --panel-line-soft:  rgba(212, 175, 55, 0.12);

  --gold:             #D4AF37;
  --gold-bright:      #E9CE7C;
  --gold-dim:         rgba(212, 175, 55, 0.55);
  --red:              #B3372C;
  --red-bright:       #D14A3D;

  --ink:              #F1EADA;
  --ink-dim:          #C9C0AC;
  --ink-faint:        #8E9A8F;

  /* --- type --- */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  /* --- shape / motion --- */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1160px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(212,175,55,0.07), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(179,55,44,0.06), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.2em; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0 0 0.5em; color: var(--gold-bright); }
p { margin: 0 0 1em; color: var(--ink-dim); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1006;
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(212, 175, 55, 0.7); }
.btn-outline {
  background: transparent;
  border-color: var(--panel-line);
  color: var(--gold-bright);
}
.btn-outline:hover { border-color: var(--gold); background: var(--panel-line-soft); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 23, 16, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: #1a1006;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.logo-text {
  font-family: var(--font-mono);
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--gold-bright);
}
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--gold-bright); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  color: var(--gold-bright);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.header-play { display: flex; align-items: center; padding: 0 24px 14px; justify-content: flex-end; }

@media (min-width: 861px) { .header-play { display: none; } }

/* ---------- hero ---------- */
.hero { padding: 64px 0 40px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.12;
  max-width: 12ch;
}
.hero-copy > p { max-width: 46ch; }
.hero-cta-row { display: flex; gap: 14px; margin: 28px 0 40px; flex-wrap: wrap; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
}
.hero-meta .num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.hero-meta .lbl {
  display: block;
  font-size: 0.74rem;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* --- cabinet illustration --- */
.machine-wrap { position: relative; }
.machine {
  position: relative;
  filter: drop-shadow(0 30px 60px -20px rgba(0, 0, 0, 0.7));
}
.machine svg { width: 100%; height: auto; }

.reel-symbol { animation: cascade 3.4s var(--ease) infinite; }
.reel-col-2 .reel-symbol { animation-delay: 0.25s; }
.reel-col-3 .reel-symbol { animation-delay: 0.5s; }
.reel-col-4 .reel-symbol { animation-delay: 0.75s; }
.reel-col-5 .reel-symbol { animation-delay: 1s; }
@keyframes cascade {
  0%, 100% { transform: translateY(0); opacity: 1; }
  45% { transform: translateY(-6px); opacity: 0.75; }
  55% { transform: translateY(6px); opacity: 0.75; }
}

.play-cta {
  position: absolute;
  left: 50%;
  bottom: 66px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.play-cta .ring {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 70%);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12), 0 10px 26px -6px rgba(212, 175, 55, 0.6);
  transition: transform 0.25s var(--ease);
}
.play-cta .ring svg { width: 22px; height: 22px; margin-left: 3px; }
.play-cta:hover .ring { transform: scale(1.08); }
.play-cta .play-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.age-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin-top: 18px;
}

/* ---------- trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  background: var(--bg-elevated);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 22px 0;
  text-align: center;
}
.trust-row > div { border-right: 1px solid var(--panel-line-soft); }
.trust-row > div:last-child { border-right: none; }
.trust-row .num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.trust-row .lbl { display: block; font-size: 0.72rem; color: var(--ink-faint); margin-top: 2px; }

/* ---------- sections ---------- */
.section { padding: 76px 0; }
.section-head { max-width: 740px; margin-bottom: 40px; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.section-head p:last-child { margin-bottom: 0; }

.section h2 { font-size: 1.5rem; margin-top: 1.6em; }
.section h2:first-of-type { margin-top: 0; }
.section strong { color: var(--gold-bright); font-weight: 700; }

/* generic info tables */
.table-scroll { overflow-x: auto; margin-top: 24px; border-radius: var(--radius-md); border: 1px solid var(--panel-line); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
thead th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: var(--green-mid);
  padding: 12px 18px;
}
tbody td, tbody th {
  padding: 12px 18px;
  border-top: 1px solid var(--panel-line-soft);
  color: var(--ink-dim);
}
tbody th { text-align: left; color: var(--ink); font-weight: 600; width: 34%; }
tbody tr:nth-child(odd) { background: rgba(212, 175, 55, 0.03); }

.pay-table td { font-family: var(--font-mono); }
.pay-table thead th:first-child, .pay-table tbody td:first-child { font-family: var(--font-body); font-weight: 600; color: var(--ink); }

/* ---------- feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 26px;
  background: var(--bg);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-md);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.feature-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.feature-card .icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--panel-line-soft);
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.feature-card .icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--ink); }
.feature-card p { font-size: 0.9rem; margin: 0; }

/* ---------- pros / cons ---------- */
.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.panel {
  padding: 28px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-line);
  background: var(--bg-elevated);
}
.list-panel h3 { font-size: 1.05rem; margin-bottom: 14px; }
.list-panel ul { margin: 0; padding-left: 1.1em; }
.list-panel li { color: var(--ink-dim); margin-bottom: 10px; font-size: 0.94rem; }
.list-panel li::marker { color: var(--gold-dim); }
.pros { border-left: 3px solid var(--gold); }
.pros h3 { color: var(--gold-bright); }
.cons { border-left: 3px solid var(--red); }
.cons h3 { color: var(--red-bright); }

/* ---------- steps ---------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--panel-line-soft);
}
.step:first-child { border-top: none; }
.step .n {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--gold-dim);
  font-weight: 600;
}
.step h3 { font-size: 1.02rem; margin-bottom: 4px; color: var(--ink); }
.step p { margin: 0; font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q .plus {
  font-family: var(--font-mono);
  color: var(--gold-bright);
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  padding: 0 22px;
}
.faq-item[data-open="true"] .faq-a { max-height: 240px; padding-bottom: 18px; }
.faq-a p { margin: 0; font-size: 0.92rem; }

/* ---------- final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--green-mid), var(--green-deep));
  border: 1px solid var(--panel-line);
}
.final-cta h2 { margin-bottom: 8px; }
.final-cta p { max-width: 40ch; margin: 0 auto 26px; }

/* ---------- disclaimer ---------- */
.disclaimer { padding: 0 0 20px; }
.disclaimer .panel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 26px;
  font-size: 0.86rem;
}
.disclaimer .badge {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: #1a1006;
  background: var(--gold);
  border-radius: 6px;
  padding: 3px 9px;
}
.disclaimer p { margin: 0; color: var(--ink-faint); }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--panel-line);
  padding: 28px 0 40px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-lang { display: flex; gap: 14px; }
.footer-lang a { color: var(--ink-faint); }
.footer-lang a[aria-current="page"] { color: var(--gold-bright); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--panel-line);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy > p, .hero h1 { max-width: none; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .split-two { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; }
}

@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trust-row > div:nth-child(2n) { border-right: none; }
  .trust-row > div:nth-child(-n+2) { border-bottom: 1px solid var(--panel-line-soft); padding-bottom: 12px; }
  .section { padding: 52px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reel-symbol { animation: none; }
  .btn-primary:hover, .play-cta:hover .ring, .feature-card:hover { transform: none; }
}
