/* ===========================================================================
   mono-05-render-fit — casino landing.

   COLOUR CONTRACT (BR-GEN-05, BR-GEN-04):
   The only colours that enter this file are the three CSS variables the page
   injects inline from the per-site branding palette:
       --bg      background colour   (branding.backgroundColor)
       --accent  accent colour       (branding.accentColor)
       --text    text colour         (branding.textColor, always present)
   Every other tone below is DERIVED from those three with color-mix() +
   `transparent` — there is not a single hardcoded colour literal, so the
   stylesheet re-skins per site with no edits. Fonts are a system stack; no
   external font is fetched.

   JS hooks are data-* attributes only (data-header, data-nav-toggle,
   data-primary-nav, data-aff, data-faq) — never class names — so the later
   per-domain class-rename step cannot break behaviour.
   =========================================================================== */

:root {
  /* Derived surface / line / muted tones (from --bg + --text). */
  --surface: color-mix(in srgb, var(--bg) 92%, var(--text));
  --surface-2: color-mix(in srgb, var(--bg) 86%, var(--text));
  --line: color-mix(in srgb, var(--bg) 78%, var(--text));
  --line-2: color-mix(in srgb, var(--bg) 66%, var(--text));
  --muted: color-mix(in srgb, var(--text) 60%, var(--bg));
  --muted-2: color-mix(in srgb, var(--text) 78%, var(--bg));

  /* Derived accent tints. */
  --accent-2: color-mix(in srgb, var(--accent) 82%, var(--text));
  --accent-soft: color-mix(in srgb, var(--accent) 16%, transparent);
  --on-accent: color-mix(in srgb, var(--bg) 86%, var(--text));

  /* Derived shadow (a translucent shade of the text tone). */
  --shadow: color-mix(in srgb, var(--text) 26%, transparent);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --maxw: 1120px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, 'Noto Sans', sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
  font-weight: 800;
}

.xpkrfrb {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.x1q1gyz0 {
  max-width: 820px;
}

/* ---------- buttons ---------- */
.xwyogk1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  padding: 13px 24px;
  transition:
    transform 0.12s,
    background 0.12s,
    box-shadow 0.12s;
}
.xoolkbh {
  width: 100%;
}
.x1ypzfvu {
  padding: 15px 30px;
  font-size: 16px;
}
.x1gghk8i {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 18px var(--accent-soft);
}
.x1gghk8i:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.xzsyx2q {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.xzsyx2q:hover {
  border-color: var(--accent);
}

/* ---------- header ---------- */
.x1qjtoql {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.x1od6cdl {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.x1gct8ay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.xa533l0 {
  height: 40px;
  width: auto;
}
.x2qc5i7 {
  height: 44px;
}
.x1xw9xij {
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}

.xs3khib {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.ximc16z {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.x1n22geg {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted-2);
  font-weight: 600;
  font-size: 15px;
  transition:
    background 0.14s,
    color 0.14s;
}
.x1n22geg:hover {
  background: color-mix(in srgb, var(--text) 8%, transparent);
  color: var(--text);
}
.x1n22geg.xq6merm {
  background: var(--accent-soft);
  color: var(--text);
}
.x1sqpmk9 .x1n22geg {
  font-size: 14px;
  color: var(--muted);
}
.xr606w1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.x1qh0ir9 {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.xuh0e4s {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- hero ---------- */
.x98kn6x {
  padding: 30px 0 8px;
}
.x6r3xco {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.x1ctfzci {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  max-width: 22ch;
}
.xcn81o3 {
  align-self: flex-start;
}
.x9k0cjp {
  display: block;
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px var(--shadow);
  color: var(--accent);
  transition: filter 0.15s;
}
.x9k0cjp:hover {
  filter: brightness(1.04);
}
.x5jyfxl {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- generic section ---------- */
.ximf8zw {
  padding: 26px 0;
}
.x1kn2x9x {
  font-size: clamp(20px, 2.6vw, 28px);
  margin-bottom: 16px;
}

/* ---------- intro ---------- */
.x1r1rag8 {
  padding: 24px 0 8px;
}
.xqe6lmz {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: start;
}
.x5hpllv {
  font-size: clamp(28px, 4vw, 42px);
}
.x15b5gsx {
  color: var(--muted-2);
  font-size: 17px;
}
.x15b5gsx p {
  margin: 0 0 1em;
}
.xzudogh {
  margin-top: 18px;
}

.xnblile {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.x1w5j36j {
  margin: 0;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}
.xc2rn71 {
  color: var(--muted-2);
  font-size: 15px;
}
.xc2rn71 p {
  margin: 0 0 0.6em;
}

/* ---------- prose ---------- */
.xbni8an {
  color: var(--text);
}
.xbni8an p {
  margin: 0 0 1em;
}
.xbni8an a {
  color: var(--accent);
  text-decoration: underline;
}
.xbni8an ul,
.xbni8an ol {
  padding-left: 1.3em;
  margin: 0 0 1em;
}
.xbni8an li {
  margin: 0 0 0.3em;
}
/* Authored structural markers now allowed by the rich-text whitelist
   (BR-GEN-08): an <h3> sub-heading and tables inside body copy. Styled by
   plain tag selectors scoped under .prose so the per-domain class-rename step
   (SeedObfuscator) cannot break them — tag selectors are never obfuscated,
   and .prose is renamed consistently in both the CSS and the HTML. */
.xbni8an h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin: 1.4em 0 0.5em;
  color: var(--text);
}
.xbni8an table {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 0 0 1em;
  font-size: 15px;
}
.xbni8an th,
.xbni8an td {
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}
.xbni8an th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.xbni8an thead th {
  border-bottom: 2px solid var(--line-2);
}
.xbni8an td {
  color: var(--text);
}
.xbni8an tbody tr:last-child td {
  border-bottom: 0;
}

/* ---------- text block image ---------- */
.x593vt0 {
  display: flow-root;
}
.x73kc9h {
  width: 40%;
  border-radius: var(--radius-sm);
}
.xnjxj2k {
  float: right;
  margin: 0 0 14px 20px;
}
.xroxr9k {
  float: left;
  margin: 0 20px 14px 0;
}

/* ---------- bonuses ---------- */
.x1ydgiv7 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.x98gf6x {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 0.14s,
    border-color 0.14s;
}
.x98gf6x:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.x1b74aum {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.xs84imp {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.x1xw5bf0 {
  font-weight: 900;
  font-size: 24px;
  color: var(--accent);
}
.xrgfetl {
  font-weight: 800;
  color: var(--text);
}
.xrevv6h {
  color: var(--muted-2);
  font-size: 14px;
}
.xrevv6h p {
  margin: 0;
}
.x583xfi {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 14px;
  color: var(--muted);
}
.x15j3n46 {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- games ---------- */
.xqy8w9 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.x1t84db5 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.x1ph2kaa {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1.04;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--surface), var(--surface-2));
  box-shadow: 0 6px 16px var(--shadow);
  transition: transform 0.14s;
}
.x1ph2kaa img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xazp2qt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 44px;
  color: color-mix(in srgb, var(--text) 24%, transparent);
}
.x1t84db5:hover .x1ph2kaa {
  transform: translateY(-3px);
}
.x5kp51d {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.x1pjzvji {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.x133scil {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- payments ---------- */
.x124kmbh {
  overflow-x: auto;
}
.xo8gv5d {
  width: 100%;
  border-collapse: collapse;
}
.xo8gv5d th,
.xo8gv5d td {
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
}
.xo8gv5d th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.xo8gv5d td {
  color: var(--text);
  vertical-align: middle;
}

/* ---------- faq ---------- */
.xi2n67l {
  display: grid;
  gap: 10px;
}
.xe84wi8 {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}
.x1g6mpcs {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  font-weight: 700;
  color: var(--text);
}
.x1g6mpcs::-webkit-details-marker {
  display: none;
}
.x125tj9c {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.x125tj9c::before,
.x125tj9c::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.x125tj9c::before {
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
}
.x125tj9c::after {
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  transition: opacity 0.15s;
}
.xe84wi8[open] .x125tj9c::after {
  opacity: 0;
}
.x1798hcz {
  padding: 0 16px 16px;
  color: var(--muted-2);
}

/* ---------- toc ---------- */
.x163fdo1 {
  padding: 8px 0 4px;
}
.x2cp6jr {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 16px 20px;
}
.x14474jq {
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}
.xgix53m {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 4px;
}
.x1oftt6y {
  color: var(--accent);
}
.x1oftt6y:hover {
  text-decoration: underline;
}

/* ---------- cta strip ---------- */
.x18g66wp {
  margin: 34px 0;
}
.x14vcur6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-2);
}
.x1keaji9 {
  margin: 0;
  font-size: 22px;
}
.xsk95x4 {
  margin: 6px 0 0;
  color: var(--muted-2);
}

/* ---------- footer ---------- */
.x2id9fc {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted-2);
}
.x183dgdp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.xfm7awc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.xfm7awc a {
  color: var(--muted-2);
  font-size: 14px;
}
.xfm7awc a:hover {
  color: var(--text);
}
.xzzv8xt {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.x1ggu01z {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 10px;
}
.xsq9dyv {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}
.xclkthk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line-2);
}
.xclkthk img {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.x19sme8p {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.x19sme8p p {
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .x1qh0ir9 {
    display: flex;
  }
  .xs3khib {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .xs3khib[data-open='true'] {
    display: flex;
  }
  .ximc16z {
    flex-direction: column;
  }
  .xr606w1 {
    flex-direction: column;
  }
  .xr606w1 .xwyogk1 {
    width: 100%;
  }
  .xqe6lmz {
    grid-template-columns: 1fr;
  }
  .x14vcur6 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .x73kc9h,
  .xroxr9k,
  .xnjxj2k {
    float: none;
    width: 100%;
    margin: 0 0 14px;
  }
}
