:root {
  --bg: #f8f4ef;
  --ink: #21191c;
  --muted: #74676c;
  --panel: #fffdfa;
  --deep: #171116;
  --teal: #007f8c;
  --cyan: #10c4d4;
  --coral: #ff7a59;
  --rose: #c2415d;
  --line: #eadfd8;
  --shadow: 0 18px 40px rgba(33, 25, 28, .13);
  --r: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.62 Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.skip-link { position: absolute; left: -999px; }
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffdfa;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(33, 25, 28, .06);
}
.topbar {
  max-width: var(--max);
  margin: auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
}
.brand img { width: 148px; height: auto; }
.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav a,
.mobile-nav a {
  padding: 10px 12px;
  border-radius: var(--r);
  font-weight: 700;
  color: #39262c;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: #fff0e9;
  color: #8a2f18;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--coral), #e95534);
  color: #220b05;
  font-weight: 800;
  padding: 12px 18px;
  box-shadow: 0 8px 20px rgba(233, 85, 52, .24);
}
.cta-small { white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fffdfa;
  border-radius: var(--r);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  margin: 5px auto;
}
.mobile-nav { display: none; }

.page {
  max-width: var(--max);
  margin: auto;
  padding: 24px 20px 64px;
}
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--deep);
  color: #fff;
  box-shadow: var(--shadow);
  min-height: 430px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 17, 22, .94), rgba(57, 25, 36, .76) 42%, rgba(0, 127, 140, .14));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 54px;
}
.eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.08;
  margin: 14px 0 16px;
  letter-spacing: 0;
}
.lede {
  font-size: 19px;
  color: #fff4ec;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: none;
}

.section {
  margin-top: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(33, 25, 28, .06);
}
.section-dark {
  background: var(--deep);
  color: #fff;
  border-color: #4a2732;
}
.section h2 {
  font-size: 28px;
  line-height: 1.18;
  margin: 0 0 14px;
}
.section h3 {
  font-size: 20px;
  margin: 22px 0 8px;
}
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  background: #fffdfa;
}
.section-dark .card {
  background: #251821;
  border-color: #553040;
}
.metric {
  display: grid;
  gap: 4px;
}
.metric strong {
  font-size: 24px;
  color: var(--teal);
}
.note {
  border-left: 4px solid var(--coral);
  padding: 12px 14px;
  background: #fff0e9;
  border-radius: 0 var(--r) var(--r) 0;
}
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: #fffdfa;
  border-radius: var(--r);
  overflow: hidden;
}
th,
td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  background: #fff0e9;
  color: #8a2f18;
}

.banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  margin: 20px 0;
}
.banner img {
  width: 100%;
  height: auto;
}
.banner figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(23, 17, 22, .86);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--r);
  font-weight: 800;
}
.games {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.game {
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(33, 25, 28, .09);
}
.game img {
  width: 100%;
  height: auto;
}
.game strong {
  display: block;
  padding: 10px;
  font-size: 14px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 16px;
  background: #fffdfa;
  margin-top: 10px;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  background: var(--deep);
  color: #ffe8df;
  margin-top: 40px;
  padding: 36px 20px;
}
.footer-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 24px;
}
.site-footer img { width: 160px; }
.site-footer a {
  display: block;
  color: #fff;
  margin: 7px 0;
}
.fineprint {
  max-width: var(--max);
  margin: 24px auto 0;
  color: #d7b9b1;
}
.trust-list { columns: 2; }
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  background: #fff0e9;
  border: 1px solid #ffd0bf;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  color: #8a2f18;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 18px;
}
.breadcrumbs a { text-decoration: underline; }

@media (max-width: 900px) {
  .topbar { grid-template-columns: auto 1fr auto; }
  .nav,
  .cta-small { display: none; }
  .menu-toggle {
    display: block;
    justify-self: end;
  }
  .mobile-nav.is-open {
    display: grid;
    gap: 6px;
    padding: 8px 20px 18px;
    border-top: 1px solid var(--line);
  }
  .hero { min-height: 520px; }
  .hero::after {
    background: linear-gradient(180deg, rgba(23, 17, 22, .92), rgba(57, 25, 36, .72));
  }
  .hero-content { padding: 38px 24px; }
  .hero h1 { font-size: 34px; }
  .grid-3,
  .grid-2,
  .footer-grid { grid-template-columns: 1fr; }
  .games { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-list { columns: 1; }
}

@media (max-width: 520px) {
  .page { padding: 14px; }
  .section { padding: 20px; }
  .hero h1 { font-size: 30px; }
  .hero-actions { display: grid; }
  .games { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .banner figcaption {
    position: static;
    border-radius: 0;
  }
  .topbar { padding: 8px 14px; }
  .brand img { width: 132px; }
}
