/* lebandit-slots.net — cinematic vault / heist landing */
:root {
  --bg: #0B0908;
  --bg-deep: #070605;
  --surface: #17130F;
  --surface-2: #211A13;
  --wine: #4D1719;
  --gold: #E5A32A;
  --gold-light: #F3B63F;
  --gold-dim: #9C6422;
  --bronze: #9C6422;
  --text: #F5EFE5;
  --muted: #B8AB9C;
  --border: rgba(229, 163, 42, 0.22);
  --hero-overlay: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.9) 0%,
    rgba(8, 8, 8, 0.76) 34%,
    rgba(8, 8, 8, 0.3) 58%,
    rgba(8, 8, 8, 0.06) 100%
  );
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --max: 1220px;
  --prose-max: 50rem;
  --section-pad: clamp(1.75rem, 2.5vw, 2.25rem);
  --section-pad-lg: clamp(2rem, 2.3vw, 2.375rem);
  --header-h: 3.5rem;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-light); }
a:hover { color: var(--gold); }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--bg);
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.88) 0%, transparent 100%);
}

.site-header-inner-page {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.site-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
}

.lang-switch { position: relative; }

.lang-switch-btn {
  background: rgba(23, 19, 15, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

.lang-switch-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 9rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 60;
}

.lang-switch.is-open .lang-switch-menu { display: block; }

.lang-switch-menu a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}
.lang-switch-menu a:hover,
.lang-switch-menu a[aria-current="true"] {
  background: rgba(229, 163, 42, 0.12);
  color: var(--gold-light);
}

/* Hero */
.hero-slot {
  position: relative;
  min-height: clamp(420px, 48vh, 540px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-slot-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slot-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-slot-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-slot-inner {
  position: relative;
  z-index: 2;
}

.hero-slot-content {
  max-width: 620px;
  padding: calc(var(--header-h) + 1.5rem) 0 2rem;
  margin-inline: 0;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.hero-slot h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
  max-width: 18ch;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--bg);
  border-color: var(--gold-light);
}
.btn-primary:hover {
  color: var(--bg);
  filter: brightness(1.06);
}

.hero-secondary-link {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-secondary-link:hover { color: var(--gold-light); }

/* Fact strip */
.fact-strip {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.fact-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  border-inline: 1px solid var(--border);
}

.fact-cell {
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.fact-cell:last-child { border-right: none; }

.fact-cell dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.fact-cell dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* Sections */
.section {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.section-alt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.section-wine {
  background: linear-gradient(180deg, #120909 0%, var(--bg) 100%);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 1.125rem;
  line-height: 1.2;
}

.section-title-sub {
  margin-top: 1.75rem;
  margin-bottom: 0.875rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.section-sub-block {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(229, 163, 42, 0.1);
}

.compare-sub-block {
  margin-top: 1.25rem;
  padding-top: 0;
  border-top: none;
}

.prose {
  max-width: var(--prose-max);
}

.prose-tight { max-width: var(--prose-max); }

.prose p,
.section p {
  margin: 0 0 0.875rem;
  color: var(--muted);
}

.prose p:last-child,
.section p:last-child { margin-bottom: 0; }

.schematic-caption {
  max-width: 52rem;
}

/* Tables */
.data-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 280px;
}

.data-table caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.data-table th,
.data-table td {
  padding: 0.8125rem 0.85rem;
  border: 1px solid var(--border);
  text-align: left;
}

.data-table thead th {
  background: var(--surface-2);
  color: var(--gold-light);
  font-weight: 600;
}

.data-table tbody th {
  background: rgba(23, 19, 15, 0.6);
  color: var(--text);
  font-weight: 500;
}

.data-table td { color: var(--muted); }

.specs-table tbody th { width: 42%; }

.compare-table thead th:first-child { width: 32%; }
.compare-table tbody th { width: 32%; }

/* Twin-column layouts */
.twin-col-grid {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.twin-col-panel {
  border: 1px solid rgba(229, 163, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(23, 19, 15, 0.45);
  padding: 1.15rem 1.25rem;
}

.base-game-grid {
  display: grid;
  gap: 1.25rem;
}

.base-game-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Base schematic */
.base-schematic {
  margin: 0 0 0.35rem;
  max-width: 300px;
  width: 100%;
}

.schematic-caption {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.intro-footnote {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.subsection-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.fact-note {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.gameplay-symbols-intro {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Compact pay lists */
.pay-compact-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.pay-compact-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.pay-compact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(229, 163, 42, 0.14);
}

.pay-compact-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(229, 163, 42, 0.1);
  font-size: 0.9rem;
}

.pay-item-label { color: var(--muted); }
.pay-item-value {
  color: var(--gold-light);
  font-weight: 600;
  font-family: var(--font-serif);
  white-space: nowrap;
}

/* Bonus section */
.bonus-card-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.bonus-card {
  background: rgba(23, 19, 15, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.bonus-card .subsection-title { margin-bottom: 0.55rem; }

.mechanics-block { margin-top: 0.25rem; }

.mechanics-intro {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.feature-spins-note {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
  background: rgba(229, 163, 42, 0.06);
  border-left: 3px solid var(--gold-dim);
  border-radius: var(--radius);
}

.compare-notes {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(229, 163, 42, 0.12);
}

.compare-note,
.inline-note {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.inline-note {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 0;
}

/* Clover flow grid */
.section-clover { background: linear-gradient(180deg, #130E0A 0%, var(--surface) 50%, var(--bg) 100%); }

.clover-flow-grid {
  display: grid;
  gap: 0.75rem;
}

.clover-flow-grid-3 {
  grid-template-columns: 1fr;
}

.clover-step {
  background: rgba(23, 19, 15, 0.92);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  min-height: 0;
}

.clover-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bronze);
  margin-bottom: 0.25rem;
}

.clover-step-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.clover-step-body {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* RTP stats */
.rtp-block .data-table-wrap { margin-bottom: 0.65rem; }

.rtp-stats-line {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.section-faq { padding-block: clamp(1.75rem, 2vw, 2.25rem); }

/* Pros / cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.pros-cons-card {
  background: rgba(23, 19, 15, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.pros-cons-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 0 0 0.55rem;
}

.verdict-block {
  margin-top: 1.5rem;
  max-width: var(--prose-max);
}

.verdict-prose { max-width: var(--prose-max); }

.pros-cons-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pros-cons-card li { margin-bottom: 0.35rem; }

/* FAQ */
.section-faq { background: var(--surface); }

.faq-list {
  max-width: 65rem;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  background: rgba(11, 9, 8, 0.6);
}

.faq-item summary {
  padding: 0.9375rem 1.05rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-a {
  padding: 0 1rem 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.clover-bonus-end {
  margin: 0.65rem 0 0;
  max-width: var(--prose-max);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229, 163, 42, 0.06) 0%, transparent 70%),
    var(--bg-deep);
  border-top: 1px solid rgba(229, 163, 42, 0.35);
}

.footer-minimal {
  display: grid;
  gap: 0.55rem;
  place-items: center;
  place-content: center;
  text-align: center;
  padding: clamp(1.25rem, 2vw, 1.75rem) 0 clamp(1rem, 2vw, 1.35rem);
}

.footer-age {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--bg-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-inline-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3rem 0.55rem;
  max-width: 68rem;
}

.footer-inline-nav a {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(229, 163, 42, 0.42);
}

.footer-inline-nav a:hover {
  color: var(--gold-light);
}

.footer-inline-nav span {
  color: rgba(184, 171, 156, 0.65);
  font-size: 0.72rem;
}

.footer-responsible-copy,
.footer-meta-copy,
.footer-editorial-line {
  max-width: 58rem;
  margin: 0;
  line-height: 1.45;
}

.footer-responsible-copy {
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-meta-copy {
  color: rgba(184, 171, 156, 0.88);
  font-size: 0.72rem;
}

.footer-editorial-line {
  color: rgba(184, 171, 156, 0.72);
  font-size: 0.68rem;
}

.footer-copy {
  margin: 0.15rem 0 0;
  color: rgba(184, 171, 156, 0.65);
  font-size: 0.68rem;
}

/* Legal / 404 */
.page-hero-compact {
  padding: calc(var(--header-h) + 1.5rem) 0 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-compact h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}

.page-lead {
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

.error-page {
  padding: 4rem 0;
  text-align: center;
}

.error-page h1 {
  font-family: var(--font-serif);
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 9, 8, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
  }

  .site-nav.is-open { display: block; }

  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-toggle { display: block; }

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

  .fact-cell:nth-child(2) { border-right: none; }
  .fact-cell:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .pros-cons-grid { grid-template-columns: 1fr; }

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

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

@media (max-width: 540px) {
  .clover-flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-slot {
    min-height: clamp(460px, 72vh, 580px);
  }

  .hero-slot-bg img {
    object-position: 72% center;
  }

  .hero-slot-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.78) 45%,
      rgba(8, 8, 8, 0.35) 100%
    );
  }

  .hero-slot-content {
    padding-top: calc(var(--header-h) + 1.25rem);
    max-width: 100%;
  }

  .hero-slot h1 { max-width: none; }
}

@media (max-width: 430px) {
  body { font-size: 16px; }

  .hero-slot-bg img {
    object-position: 78% center;
  }

  .fact-cell { padding: 0.85rem 0.5rem; }

  .fact-cell dd { font-size: 1.15rem; }
}

@media (min-width: 768px) {
  .section { padding-block: clamp(2.25rem, 2.8vw, 2.75rem); }
}

@media (min-width: 1024px) {
  .section { padding-block: var(--section-pad-lg); }

  .twin-col-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .twin-col .prose,
  .twin-col-panel .prose {
    max-width: none;
  }

  .base-game-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: center;
    gap: 2rem;
  }

  .base-game-visual {
    align-items: center;
    max-width: 320px;
    justify-self: end;
  }

  .base-schematic { max-width: 100%; }

  .pay-compact-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .bonus-card-grid { grid-template-columns: 1fr 1fr; }
  .clover-flow-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 901px) {
  .header-inner { position: relative; }
  .site-nav { display: block !important; }
}

@media (max-width: 1023px) {
  .twin-col-panel {
    background: transparent;
    border: none;
    padding: 0;
  }

  .twin-col-panel + .twin-col-panel {
    margin-top: 0.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(229, 163, 42, 0.12);
  }
}
