/* ===========================================================================
   mono-07-realz — casino landing.

   Visual register: clean, high-contrast, editorial — a light surface, one
   bold accent colour, sharp (low-radius) edges, hairline rules and tightly-
   tracked uppercase headings with a short accent underline, in place of the
   soft rounded-card look of the sibling packages.

   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.
   =========================================================================== */

/* Package defaults (BR-GEN-05): a site configuring neither backgroundColor nor
   accentColor leaves these in place — the page's inlined \3c style>:root{...}\3c /style>
   only ever sets the variables the branding actually supplied, and :root's higher
   selector specificity lets it win over this lower-specificity `html` rule for
   just those variables, leaving the rest to cascade down to here. textColor is
   always present at the RenderPackage level, so it carries no default of its own. */
html {
  --bg: #f7f7f5;
  --accent: #0f6e5c;
  --text: #14161a;
}

:root {
  /* Derived surface / line / muted tones (from --bg + --text). */
  --surface: color-mix(in srgb, var(--bg) 96%, var(--text));
  --surface-2: color-mix(in srgb, var(--bg) 90%, var(--text));
  --line: color-mix(in srgb, var(--bg) 82%, var(--text));
  --line-strong: color-mix(in srgb, var(--bg) 55%, var(--text));
  --muted: color-mix(in srgb, var(--text) 58%, var(--bg));
  --muted-2: color-mix(in srgb, var(--text) 76%, var(--bg));

  /* Derived accent tints. */
  --accent-strong: color-mix(in srgb, var(--accent) 78%, black);
  --accent-soft: color-mix(in srgb, var(--accent) 12%, transparent);
  --on-accent: color-mix(in srgb, white 92%, var(--accent));

  --radius: 4px;
  --radius-pill: 999px;
  --maxw: 1160px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, 'Noto Sans', sans-serif;
  --font-mono: ui-monospace, 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
}

* {
  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.55em;
  color: var(--text);
  font-weight: 800;
}

.x209f2d33f9 {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.x1dcb2b5690 {
  max-width: 780px;
}

/* ---------- buttons ---------- */
.xa6d4aa63e9 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  padding: 13px 22px;
  transition:
    background 0.12s,
    border-color 0.12s,
    color 0.12s;
}
.x6560d4b681 {
  width: 100%;
}
.x434e2e7715 {
  padding: 16px 28px;
  font-size: 15px;
}
.xf1b9347ffc {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.xf1b9347ffc:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}
.x4f5ff242d9 {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.x4f5ff242d9:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

/* ---------- header ---------- */
.xede9cf8362 {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--line);
}
.xe64e2b1314 {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}
.x50c94b5e5d {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.xa90399ce1a {
  height: 34px;
  width: auto;
}
.x75f1b5d275 {
  height: 38px;
}
.xf0c6306692 {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.x5ad42035e2 {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.x52cc2d4fde {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
}
.xea332bc072 {
  padding: 8px 4px;
  color: var(--muted-2);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition:
    color 0.14s,
    border-color 0.14s;
}
.xea332bc072:hover {
  color: var(--text);
}
.xea332bc072.x558aa14339 {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.xa79e5aff60 .xea332bc072 {
  font-size: 13px;
  color: var(--muted);
}
.xab24a2d56e {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ---------- hero ---------- */
.x41435970cc {
  padding: 34px 0 10px;
  border-bottom: 1px solid var(--line);
}
.x1f5cb33ddd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.x98ddb8c85e {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 24ch;
}
.xd6b0c65df6 {
  align-self: flex-start;
}
.x66e974adb6 {
  display: block;
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--accent);
}
.xf831d35ae5 {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- generic section ---------- */
.x7dc771a2cb {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.xca46c06270 {
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

/* BR-GEN-33: a section heading stored at level 1 renders an H1, sized above a section H2. */
h1.xca46c06270 {
  font-size: calc(clamp(19px, 2.2vw, 25px) * 1.3);
}
.xca46c06270::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--accent);
}

/* ---------- intro ---------- */
.x5008c0f9f1 {
  padding: 28px 0 10px;
  border-bottom: 1px solid var(--line);
}
.x4c34297498 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 34px;
  align-items: start;
}
.x3dc3bd01c9 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
}
.x903e45ddef {
  color: var(--muted-2);
  font-size: 17px;
}
.x903e45ddef p {
  margin: 0 0 1em;
}
.xc5a1408a37 {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  margin-top: 18px;
  border: 1px solid var(--line);
}
.x3f58941574 {
  margin-top: 20px;
}

.xb63df9af01 {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.x235bf2e4d2 {
  margin: 0;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-strong);
}
.x94d0ccf728 {
  color: var(--text);
  font-size: 16px;
}
.x94d0ccf728 p {
  margin: 0 0 0.6em;
}

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

/* ---------- text block image ---------- */
.x144792b6b6 {
  display: flow-root;
}
.xce392c994c {
  width: 38%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.x04a97ba050 {
  float: right;
  margin: 0 0 14px 20px;
}
.xdefa0f7e0a {
  float: left;
  margin: 0 20px 14px 0;
}

/* ---------- bonuses ---------- */
.xfe5fe5d6c5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.xbf775d1ad8 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--surface);
  transition: background 0.14s;
}
.xbf775d1ad8:hover {
  background: var(--accent-soft);
}
.xd0a00cc026 {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.xd4af26405a {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.xab1d9ddd38 {
  font-weight: 900;
  font-size: 26px;
  color: var(--accent-strong);
  font-family: var(--font-mono);
}
.x9aaa733a1a {
  font-weight: 800;
  color: var(--text);
}
.xd7f5e7d09c {
  color: var(--muted-2);
  font-size: 14px;
}
.xd7f5e7d09c p {
  margin: 0;
}
.xe65aae6af8 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.x0fb2cbb68b {
  color: var(--accent-strong);
  font-weight: 700;
}

/* ---------- games ---------- */
.xc811933fdd {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}
.x42e4a22eff {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.x19cc2522f3 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1.04;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  transition: border-color 0.14s;
}
.x19cc2522f3 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x3b4b9c2209 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 42px;
  color: color-mix(in srgb, var(--text) 22%, transparent);
}
.x42e4a22eff:hover .x19cc2522f3 {
  border-color: var(--accent);
}
.xdcfaf54877 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.x4471a6bc15 {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 2px;
}
.x97cd548ddf {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- payments ---------- */
.x6007454a01 {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  margin: 0 auto 20px;
  display: block;
  border: 1px solid var(--line);
}
.xc8d793557a {
  overflow-x: auto;
}
.xf889014c7b {
  width: 100%;
  border-collapse: collapse;
}
.xf889014c7b th,
.xf889014c7b td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}
.xf889014c7b th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--line-strong);
}
.xf889014c7b td {
  color: var(--text);
  vertical-align: middle;
}

/* ---------- faq ---------- */
.xacd62eff03 {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.xc7c1d6a402 {
  border-bottom: 1px solid var(--line);
}
.xfb43e3c808 {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 4px;
  font-weight: 700;
  color: var(--text);
}
.xfb43e3c808::-webkit-details-marker {
  display: none;
}
.xfd03d8c4cd {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.xfd03d8c4cd::before,
.xfd03d8c4cd::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.xfd03d8c4cd::before {
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
}
.xfd03d8c4cd::after {
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  transition: opacity 0.15s;
}
.xc7c1d6a402[open] .xfd03d8c4cd::after {
  opacity: 0;
}
.xcd11b2d041 {
  padding: 0 4px 18px;
  color: var(--muted-2);
}

/* ---------- pros / cons ---------- */
.x5f14ef97ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.xd2e4bb8d62 {
  background: var(--surface);
  padding: 22px;
}
.x32700065ea {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.xecdbdb89fb .x32700065ea {
  color: var(--accent-strong);
}
.x6e715a3b9e {
  margin: 0;
  padding-left: 1.1em;
  color: var(--text);
}
.x6e715a3b9e li {
  margin: 0 0 0.5em;
}
@media (max-width: 640px) {
  .x5f14ef97ba {
    grid-template-columns: 1fr;
  }
}

/* ---------- login ---------- */
.x06a5107b05 {
  margin-bottom: 12px;
}
.x222311de24 {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  margin-bottom: 18px;
}
.x4def90bb44 {
  margin-top: 4px;
}

/* ---------- toc ---------- */
.x572aa60a68 {
  padding: 10px 0;
}
.x39d7f93225 {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.x27c866a7c0 {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  color: var(--muted);
}
.x0a14b41ce4 {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 4px;
}
.xb32fc11e9d {
  color: var(--accent-strong);
}
.xb32fc11e9d:hover {
  text-decoration: underline;
}

/* ---------- cta strip ---------- */
.xdfb77389c9 {
  margin: 40px 0;
}
.xacc7400702 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
}
.x7117e19155 {
  margin: 0;
  font-size: 21px;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.x5c18a742c0 {
  margin: 6px 0 0;
  color: color-mix(in srgb, var(--bg) 70%, var(--text));
}

/* ---------- footer ---------- */
.x4e6ff8bdda {
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted-2);
}
.x9d58c020dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.x5423f0c680 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.x5423f0c680 a {
  color: var(--muted-2);
  font-size: 14px;
}
.x5423f0c680 a:hover {
  color: var(--text);
}
.x0dac439001 {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.x0c8a189a11 {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}
.x4352f40ce7 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}
.x36caddd3b0 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}
.x36caddd3b0 img {
  height: 17px;
  width: auto;
  object-fit: contain;
}
.x937f8947b2 {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.x937f8947b2 p {
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .xf44ff17081 {
    display: flex;
  }
  .x5ad42035e2 {
    position: absolute;
    top: 64px;
    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;
  }
  .x5ad42035e2[data-open='true'] {
    display: flex;
  }
  .x52cc2d4fde {
    flex-direction: column;
  }
  .xab24a2d56e {
    flex-direction: column;
  }
  .xab24a2d56e .xa6d4aa63e9 {
    width: 100%;
  }
  .x4c34297498 {
    grid-template-columns: 1fr;
  }
  .xacc7400702 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .xce392c994c,
  .xdefa0f7e0a,
  .x04a97ba050 {
    float: none;
    width: 100%;
    margin: 0 0 14px;
  }
}
