/* ===========================================================================
   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;
}

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

/* ---------- buttons ---------- */
.x1f1uag0 {
  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;
}
.xwvpdkg {
  width: 100%;
}
.x1m460b6 {
  padding: 15px 30px;
  font-size: 16px;
}
.xjmc4jg {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 18px var(--accent-soft);
}
.xjmc4jg:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.x1hcalrw {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.x1hcalrw:hover {
  border-color: var(--accent);
}

/* ---------- header ---------- */
.x1jvpsbu {
  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);
}
.x1plnoh6 {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.xafxecx {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.x8zg6ez {
  height: 40px;
  width: auto;
}
.xkty7fe {
  height: 44px;
}
.x1wg971r {
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}

.x1f8f36m {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.x1p3vqbv {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.x18929t5 {
  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;
}
.x18929t5:hover {
  background: color-mix(in srgb, var(--text) 8%, transparent);
  color: var(--text);
}
.x18929t5.xqgn83g {
  background: var(--accent-soft);
  color: var(--text);
}
.x1356a2p .x18929t5 {
  font-size: 14px;
  color: var(--muted);
}
.x1lygfat {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ---------- hero ---------- */
.x15hz33 {
  padding: 30px 0 8px;
}
.x1152cp5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.x1fq7bdr {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  max-width: 22ch;
}
.x13jpsbh {
  align-self: flex-start;
}
.xu4hban {
  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;
}
.xu4hban:hover {
  filter: brightness(1.04);
}
.x1cn28nj {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.xrd2lyj {
  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;
}
.x17d7odr {
  margin: 0;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}
.x1i9naqz {
  color: var(--muted-2);
  font-size: 15px;
}
.x1i9naqz p {
  margin: 0 0 0.6em;
}

/* ---------- prose ---------- */
.x1l02gtr {
  color: var(--text);
}
.x1l02gtr p {
  margin: 0 0 1em;
}
.x1l02gtr a {
  color: var(--accent);
  text-decoration: underline;
}
.x1l02gtr ul,
.x1l02gtr ol {
  padding-left: 1.3em;
  margin: 0 0 1em;
}
.x1l02gtr 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. */
.x1l02gtr h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin: 1.4em 0 0.5em;
  color: var(--text);
}
.x1l02gtr table {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 0 0 1em;
  font-size: 15px;
}
.x1l02gtr th,
.x1l02gtr td {
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}
.x1l02gtr th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.x1l02gtr thead th {
  border-bottom: 2px solid var(--line-2);
}
.x1l02gtr td {
  color: var(--text);
}
.x1l02gtr tbody tr:last-child td {
  border-bottom: 0;
}

/* ---------- text block image ---------- */
.x1l370cv {
  display: flow-root;
}
.xjrgjm5 {
  width: 40%;
  border-radius: var(--radius-sm);
}
.x1hanexg {
  float: right;
  margin: 0 0 14px 20px;
}
.x5oqy0m {
  float: left;
  margin: 0 20px 14px 0;
}

/* ---------- bonuses ---------- */
.xrys0js {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.x2np2nm {
  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;
}
.x2np2nm:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.x66bppu {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.x1nd24l9 {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.x1xya4bb {
  font-weight: 900;
  font-size: 24px;
  color: var(--accent);
}
.x10nli9t {
  font-weight: 800;
  color: var(--text);
}
.xl34sjb {
  color: var(--muted-2);
  font-size: 14px;
}
.xl34sjb p {
  margin: 0;
}
.x1x7d99d {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 14px;
  color: var(--muted);
}
.x1cu3y85 {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- games ---------- */
.xn77nh5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.xigd226 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.x6pqy92 {
  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;
}
.x6pqy92 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x150ifff {
  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);
}
.xigd226:hover .x6pqy92 {
  transform: translateY(-3px);
}
.xd5m3jh {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.x1evabin {
  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);
}
.x1dcb4gj {
  font-size: 12px;
  color: var(--muted);
}

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

/* ---------- faq ---------- */
.x1c1f78m {
  display: grid;
  gap: 10px;
}
.x104069i {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}
.x2g550z {
  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);
}
.x2g550z::-webkit-details-marker {
  display: none;
}
.x1mv05oh {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.x1mv05oh::before,
.x1mv05oh::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.x1mv05oh::before {
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
}
.x1mv05oh::after {
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  transition: opacity 0.15s;
}
.x104069i[open] .x1mv05oh::after {
  opacity: 0;
}
.xdytico {
  padding: 0 16px 16px;
  color: var(--muted-2);
}

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

/* ---------- cta strip ---------- */
.x1l0am1p {
  margin: 34px 0;
}
.x1vazydj {
  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);
}
.xano71m {
  margin: 0;
  font-size: 22px;
}
.x1xceyqo {
  margin: 6px 0 0;
  color: var(--muted-2);
}

/* ---------- footer ---------- */
.xtdf6id {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted-2);
}
.xlygpuq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.x1h05kxp {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.x1h05kxp a {
  color: var(--muted-2);
  font-size: 14px;
}
.x1h05kxp a:hover {
  color: var(--text);
}
.x12xztgu {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.xcxyyfo {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 10px;
}
.x19u3ays {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}
.x1euxnc7 {
  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);
}
.x1euxnc7 img {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.xu75imh {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.xu75imh p {
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .x1h53wuc {
    display: flex;
  }
  .x1f8f36m {
    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;
  }
  .x1f8f36m[data-open='true'] {
    display: flex;
  }
  .x1p3vqbv {
    flex-direction: column;
  }
  .x1lygfat {
    flex-direction: column;
  }
  .x1lygfat .x1f1uag0 {
    width: 100%;
  }
  .x1eza40 {
    grid-template-columns: 1fr;
  }
  .x1vazydj {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .xjrgjm5,
  .x5oqy0m,
  .x1hanexg {
    float: none;
    width: 100%;
    margin: 0 0 14px;
  }
}
