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

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

/* ---------- buttons ---------- */
.xcd9bb98a6d {
  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;
}
.x49e3e29cee {
  width: 100%;
}
.xd07fe9e0e3 {
  padding: 16px 28px;
  font-size: 15px;
}
.xc44f2364d3 {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.xc44f2364d3:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}
.xb01a1e8ced {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.xb01a1e8ced:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

/* ---------- header ---------- */
.x617b42732e {
  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);
}
.x2a4c2372d5 {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}
.x4eb666e33a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.xa7d4a3ec2e {
  height: 34px;
  width: auto;
}
.xb9ff12f581 {
  height: 38px;
}
.x0c482f12f2 {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.x489534c1ee {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.x6389fcf97f {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
}
.x79e2d83b04 {
  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;
}
.x79e2d83b04:hover {
  color: var(--text);
}
.x79e2d83b04.xe02b6e1daf {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.xec357ed501 .x79e2d83b04 {
  font-size: 13px;
  color: var(--muted);
}
.xd818c911dc {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

/* ---------- generic section ---------- */
.x360bad7216 {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.xfa49977434 {
  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.xfa49977434 {
  font-size: calc(clamp(19px, 2.2vw, 25px) * 1.3);
}
.xfa49977434::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--accent);
}

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

.xe926451805 {
  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;
}
.x8491c50b0c {
  margin: 0;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-strong);
}
.x144220d4b4 {
  color: var(--text);
  font-size: 16px;
}
.x144220d4b4 p {
  margin: 0 0 0.6em;
}

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

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

/* ---------- bonuses ---------- */
.x3916630770 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.x120f80035e {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--surface);
  transition: background 0.14s;
}
.x120f80035e:hover {
  background: var(--accent-soft);
}
.x1f50b82c55 {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.xd463de48e5 {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.x0ea04f7e3a {
  font-weight: 900;
  font-size: 26px;
  color: var(--accent-strong);
  font-family: var(--font-mono);
}
.x983e900911 {
  font-weight: 800;
  color: var(--text);
}
.xca2383f8f6 {
  color: var(--muted-2);
  font-size: 14px;
}
.xca2383f8f6 p {
  margin: 0;
}
.x4201185f44 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.xa02ce4b92e {
  color: var(--accent-strong);
  font-weight: 700;
}

/* ---------- games ---------- */
.xc50f25b4ba {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}
.x4a08e5b054 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.x5d1eb7651f {
  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;
}
.x5d1eb7651f img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x70233df964 {
  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);
}
.x4a08e5b054:hover .x5d1eb7651f {
  border-color: var(--accent);
}
.xae6801477a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.x3541b4e1fa {
  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;
}
.xa8618efb1d {
  font-size: 12px;
  color: var(--muted);
}

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

/* ---------- faq ---------- */
.xd1820d2633 {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.x57f5d0a056 {
  border-bottom: 1px solid var(--line);
}
.xf431fa845e {
  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);
}
.xf431fa845e::-webkit-details-marker {
  display: none;
}
.x6e921c2a2e {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.x6e921c2a2e::before,
.x6e921c2a2e::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.x6e921c2a2e::before {
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
}
.x6e921c2a2e::after {
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  transition: opacity 0.15s;
}
.x57f5d0a056[open] .x6e921c2a2e::after {
  opacity: 0;
}
.x9dd0e6119c {
  padding: 0 4px 18px;
  color: var(--muted-2);
}

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

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

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

/* ---------- cta strip ---------- */
.x4cbb24085d {
  margin: 40px 0;
}
.xd762eae132 {
  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);
}
.x7666704468 {
  margin: 0;
  font-size: 21px;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.x5c7a25b9f7 {
  margin: 6px 0 0;
  color: color-mix(in srgb, var(--bg) 70%, var(--text));
}

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

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .xdbe2ee806b {
    display: flex;
  }
  .x489534c1ee {
    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;
  }
  .x489534c1ee[data-open='true'] {
    display: flex;
  }
  .x6389fcf97f {
    flex-direction: column;
  }
  .xd818c911dc {
    flex-direction: column;
  }
  .xd818c911dc .xcd9bb98a6d {
    width: 100%;
  }
  .x44b6e61bdc {
    grid-template-columns: 1fr;
  }
  .xd762eae132 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .x4e96689886,
  .xc68715f6fa,
  .x1fa18aa1f3 {
    float: none;
    width: 100%;
    margin: 0 0 14px;
  }
}
