:root {
  --bg: #ffffff;
  --bg-2: #f6f6f4;
  --surface: #ffffff;
  --border: #ececea;
  --border-strong: #d8d8d4;
  --text: #0a0a0a;
  --muted: #5a5a58;
  --muted-2: #8a8a86;

  --accent: #0a0a0a;
  --accent-hover: #2a2a2a;

  --radius: 10px;
  --radius-sm: 6px;
  --max: 1100px;
  --max-narrow: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s ease, color .15s ease;
}
a:hover { text-decoration-color: var(--text); }

p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

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

/* ── Header ──────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
  margin-left: auto;
  margin-right: 12px;
}
.nav a {
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s ease;
  font-weight: 500;
}
.nav a:hover { background: var(--bg-2); }

.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--text);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s ease;
}
.header-cta:hover {
  background: var(--accent-hover);
  color: #fff;
}

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

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 76px 0 68px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 20px;
  max-width: 900px;
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 30px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--text);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #fff;
}

/* ── Block ───────────────────────────────────────────── */
.block {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.block:last-of-type { border-bottom: none; }
.block-tint {
  background: var(--bg-2);
}

h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 16px;
}

.section-head {
  margin-bottom: 26px;
  max-width: 720px;
}
.section-head h2 { margin-bottom: 8px; }
.section-head p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.block .container.narrow > p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 14px;
}
.block .container.narrow > p strong {
  color: var(--text);
  font-weight: 600;
}

.block-cta {
  margin-top: 24px;
}

/* ── Facts list ──────────────────────────────────────── */
.facts {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  border-top: 1px solid var(--border);
}
.facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
}
.facts li span {
  color: var(--muted);
}
.facts li strong {
  font-weight: 600;
  color: var(--text);
}

/* ── Slots grid ──────────────────────────────────────── */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.slot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: var(--text);
}
.slot:hover {
  transform: translateY(-3px);
  border-color: var(--text);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.18);
  color: var(--text);
}

.slot-art {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.slot-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
.slot-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.slot-fallback span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  line-height: 1.15;
}

.slot-bamboo .slot-fallback { background: linear-gradient(135deg, #2d6a3f 0%, #f4a722 70%, #d97706 100%); }
.slot-retro .slot-fallback  { background: linear-gradient(135deg, #6b21a8 0%, #ec4899 60%, #f97316 100%); }
.slot-razor .slot-fallback  { background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 60%, #06b6d4 100%); }
.slot-jammin .slot-fallback { background: linear-gradient(135deg, #b91c1c 0%, #f59e0b 50%, #facc15 100%); }
.slot-banker .slot-fallback { background: linear-gradient(135deg, #14532d 0%, #15803d 50%, #84cc16 100%); }
.slot-returns .slot-fallback{ background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #06b6d4 100%); }
.slot-bison .slot-fallback  { background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #dc2626 100%); }
.slot-blast .slot-fallback  { background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #f59e0b 100%); }

.slot-info {
  padding: 14px 16px 16px;
}
.slot-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.slot-meta {
  font-size: 12.5px;
  color: var(--muted-2);
  font-weight: 500;
}

.slots-note {
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--muted);
}
.slots-note strong { color: var(--text); font-weight: 600; }

@media (max-width: 760px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .slot-fallback span { font-size: 17px; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted-2);
  transition: transform .2s ease, color .2s ease;
}
.faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--text);
}
.faq-item > p {
  padding: 0 28px 22px 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.footer-note {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted-2);
  max-width: 620px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .hero { padding: 54px 0 48px; }
  .block { padding: 48px 0; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

/* ── Floating CTA bar ────────────────────────────────── */
.floating-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 40;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.floating-bar-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--text);
  color: #fff;
  padding: 12px 12px 12px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.45), 0 4px 12px -4px rgba(0, 0, 0, 0.2);
  max-width: calc(100vw - 32px);
}
.floating-bar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.floating-bar-title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.floating-bar-meta {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.floating-bar-cta {
  flex-shrink: 0;
  background: #fff;
  color: var(--text) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.floating-bar-cta:hover {
  background: #f0f0ee;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .floating-bar { bottom: 12px; }
  .floating-bar-inner { gap: 12px; padding: 10px 10px 10px 18px; width: 100%; }
  .floating-bar-title { font-size: 14px; }
  .floating-bar-meta { font-size: 12px; }
  .floating-bar-cta { padding: 9px 16px; font-size: 13.5px; }
}
body { padding-bottom: 88px; }
