/* Le Bandit — premium casino landing (dark + gold) */
:root {
  --bg-deep: #07060b;
  --bg-panel: #0f0d14;
  --bg-elevated: #16131f;
  --bg-card: linear-gradient(145deg, #1a1624 0%, #12101a 100%);
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #8a6d1f;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --text: #f4f1ea;
  --text-muted: #a39e93;
  --border: rgba(212, 175, 55, 0.22);
  --danger: #c94b4b;
  --success: #3ecf8e;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 40px var(--gold-glow);
  --maxw: 1120px;
  --tap: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 175, 55, 0.12), transparent),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(90, 60, 120, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(212, 175, 55, 0.06), transparent);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus {
  left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, rgba(7, 6, 11, 0.96) 0%, rgba(7, 6, 11, 0.88) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1206;
  box-shadow: var(--shadow-gold);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--gold);
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.lang-switch a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.lang-switch a[aria-current="true"] {
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
}

.nav-toggle {
  display: none;
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(212, 175, 55, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #ffe08a 0%, var(--gold) 40%, var(--gold-dark) 100%);
  color: #1a1206;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 36px rgba(212, 175, 55, 0.55);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold-light);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.25rem 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.14), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 13, 20, 0.8);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 420px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
}

.stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 6, 11, 0.85));
  pointer-events: none;
}

/* Sections */
main {
  padding-bottom: 6rem;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--gold-light);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 46rem;
}

.prose {
  font-size: 1.02rem;
  color: var(--text-muted);
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin-top: 2rem;
}

.prose h2 {
  font-size: 1.65rem;
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose strong {
  color: var(--text);
}

.prose figure {
  margin: 1.5rem 0;
}

.prose figure img {
  width: 100%;
  height: auto;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs span {
  color: var(--gold);
}

/* Internal links block */
.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.link-cluster a {
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.link-cluster a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* FAQ accordion */
.faq-list details {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  padding: 0.85rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.faq-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--bg-panel);
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.35rem;
}

.review-card .author {
  font-weight: 700;
  color: var(--text);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #050408;
  padding: 2rem 1.25rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 52rem;
}

.footer-disclaimer strong {
  color: var(--danger);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(7, 6, 11, 0.92) 25%);
  pointer-events: none;
}

.sticky-cta-inner {
  pointer-events: auto;
  max-width: 420px;
  margin: 0 auto;
}

.sticky-cta .btn-primary {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  animation: pulse-gold 2.4s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.55);
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 14px 48px rgba(255, 224, 138, 0.65);
  }
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

/* Desktop floating CTA hint */
@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

/* Mobile nav */
@media (max-width: 899px) {
  .hide-mobile {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: rgba(7, 6, 11, 0.98);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.is-open {
    max-height: 70vh;
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
  }

  .main-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    margin-left: auto;
  }

  .lang-switch {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }
}

/* Lazy blur placeholder */
img.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

th {
  background: var(--bg-elevated);
  color: var(--gold-light);
}

/* Terms / Privacy simple pages */
.legal-page .prose {
  max-width: 48rem;
  margin: 0 auto;
}
