/* ===========================================================================
   mono-04-cashhunter — casino lobby.
   Sidebar (brand + login/register + page menu) · lobby hero banner · game-type
   pills · game-card grid · brief sections · CTA strip · footer.

   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.

   STATE CONTRACT (BR-GEN-03):
   Element state and every JS hook is a data-* attribute — [data-open] on the
   sidebar drawer, [data-scrolled] on the mobile topbar, plus data-header,
   data-nav-toggle, data-primary-nav, data-section, data-faq, data-aff — never a
   class: the per-domain obfuscation step renames class tokens in the HTML and in
   this file, but never touches data-*, so a class-based state driven from JS
   would desync. `is-active` is the one modifier class here and is emitted at
   render time only (no JS reads it), so the rename stays in lockstep.
   =========================================================================== */

:root {
  /* Derived surface / line / muted tones (from --bg + --text). */
  --bg-2: color-mix(in srgb, var(--bg) 95%, var(--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);
  --accent-ring: color-mix(in srgb, var(--accent) 40%, transparent);
  --accent-text: color-mix(in srgb, var(--accent) 72%, var(--text));
  --on-accent: color-mix(in srgb, var(--bg) 86%, var(--text));

  /* Derived shadow / hover lift (translucent shades of the two base tones). */
  --shadow: color-mix(in srgb, var(--bg) 55%, transparent);
  --lift: color-mix(in srgb, var(--text) 6%, transparent);

  /* Geometry. */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --sidebar-w: 244px;
  --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: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 0.5em;
}

/* ---------- prose (inline-HTML block bodies) ---------- */
.xe91feb1b7b p {
  margin: 0 0 1em;
}
.xe91feb1b7b a {
  color: var(--accent-text);
  text-decoration: underline;
}
.xe91feb1b7b h3 {
  margin-top: 1.2em;
}
.xe91feb1b7b ul,
.xe91feb1b7b ol {
  padding-left: 1.3em;
}
.xe91feb1b7b table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}
.xe91feb1b7b th,
.xe91feb1b7b td {
  border: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
}
.xe91feb1b7b th {
  background: var(--surface);
}

/* ---------- buttons ---------- */
.x92ffd41196 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 22px;
  transition:
    transform 0.12s,
    background 0.12s,
    box-shadow 0.12s;
}
.x01caa1e89b {
  width: 100%;
}
.x807abe9991 {
  padding: 14px 30px;
  font-size: 16px;
}
.xa8c7717c61 {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 16px var(--accent-ring);
}
.xa8c7717c61:hover {
  background: var(--accent-2);
  box-shadow: 0 10px 22px var(--accent-ring);
  transform: translateY(-1px);
}
.xd3703ebc4c {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.xd3703ebc4c:hover {
  border-color: var(--accent);
}

/* ---------- app shell ---------- */
.xf78c1c9ac0 {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

/* ---------- sidebar (= the page menu) ---------- */
.xc41385de27 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 18px;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow-y: auto;
}
.xed65f061d2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.x066e02b7ac {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: 0;
  color: var(--muted-2);
  cursor: pointer;
  padding: 4px;
}
.xbaff744bc1 {
  margin: 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted-2);
}

.x12aff3d394 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.x2b53de20bd {
  display: inline-flex;
  align-items: center;
}
.x75dd72c735 {
  height: 40px;
  width: auto;
  max-width: 100%;
}
.xca726252dd {
  height: 44px;
}
.xc41385de27 .x12aff3d394,
.xc41385de27 .x2b53de20bd {
  display: flex;
  width: 100%;
  justify-content: center;
}
.xc41385de27 .x75dd72c735 {
  height: 110px;
}
.xa6484eedeb .x75dd72c735 {
  height: 88px;
  max-width: 62vw;
}
.x6af57422ee {
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xf68e28b2b0 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.x29f0e6bab1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.xe3d27333ee {
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.x8ef071b229 {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted-2);
  font-weight: 600;
  font-size: 14.5px;
  transition:
    background 0.14s,
    color 0.14s;
}
/* Hover/active sit a hair off the base chrome: a faint text-toned lift on hover,
   then a faint accent wash for the current page — both keep the label readable
   on the sidebar surface. */
.x8ef071b229:hover {
  background: var(--lift);
  color: var(--text);
}
.x8ef071b229.x5e8be4082e {
  background: var(--accent-soft);
  color: var(--text);
}

/* ---------- main column ---------- */
.x943dc781f6 {
  min-width: 0;
  padding: 22px 26px 40px;
}

/* mobile topbar (brand + burger row, then login/register row) — hidden on desktop */
.xa6484eedeb {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.x55b91741ce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.xeb040b2a07 {
  display: flex;
  gap: 8px;
}
.xeb040b2a07 .x92ffd41196 {
  flex: 1 1 0;
  padding: 10px 12px;
  font-size: 14px;
}
.x7ceea88b7d {
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  flex: none;
}
/* Scroll state is a data-* attribute set from JS, never a class. */
.xa6484eedeb[data-scrolled='true'] {
  box-shadow: 0 4px 14px var(--shadow);
}

/* ---------- lobby hero banner (home page only) ---------- */
/* The banner is promotional artwork (offer text baked into the image), so it
   renders in FULL — full width, height following the image own aspect ratio.
   No fixed height + object-fit: cover, which would crop the offer off the
   bottom. Recommended crops: ~1900x440 desktop, ~1080x600 mobile.
   BR-GEN-15: with no configured hero background image the section keeps this
   default palette gradient; a configured one is layered in from main.eta with a
   darkening overlay. */
.x018561c21f {
  margin-bottom: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: linear-gradient(135deg, var(--surface-2), var(--bg-2));
}
.x7f3b065766 {
  display: block;
  transition: filter 0.15s;
}
.x7f3b065766:hover {
  filter: brightness(1.05);
}
.x309ec8f040 {
  display: block;
}
.x4b505bdc38 {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- game-type pills ---------- */
.xff4114c4f1 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 22px;
}
.x9d0327f905 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--lift);
  transition:
    border-color 0.12s,
    background 0.12s;
}
.x9d0327f905:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
/* The glyph is the package own inline SVG, inserted raw from the manifest
   declaration, so it is sized by element selector — it carries no class of its
   own. */
.x37eabbc404 {
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
}
.x37eabbc404 svg {
  width: 16px;
  height: 16px;
}

/* ---------- lobby game-card grid ---------- */
.x61c1b5e7e4 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px 16px;
  margin-bottom: 30px;
}
.x8518a539e2 {
  display: block;
}
.x0c5c222ed9 {
  position: relative;
  display: block;
  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;
}
.xd1f871e213 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x8518a539e2:hover .x0c5c222ed9 {
  transform: translateY(-3px);
}
.x7ce8d20888 {
  display: block;
  margin-top: 9px;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- brief: intro lead ---------- */
.xd9f356b48e {
  margin: 8px 0 26px;
}
.x1ce9ca3937 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
.xd2588b5691 {
  grid-template-columns: 1fr;
}
.x62741bb8c0 {
  font-size: clamp(28px, 4vw, 40px);
}
.xf042aeb9ca {
  color: var(--muted-2);
  font-size: 16px;
}
.x1550b38cfd {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  margin-top: 18px;
}
.x5c87d0b95e {
  margin-top: 18px;
}

.x41fc290e1d {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.x0574b04061 {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.xf11bd1138e {
  font-size: 18px;
  font-weight: 700;
}

/* ---------- brief sections (text) ---------- */
.x1fd1717342 {
  margin-bottom: 30px;
}
.x8d4bcf579c {
  font-size: clamp(20px, 2.6vw, 26px);
  margin-bottom: 12px;
}

/* BR-GEN-33: a section heading stored at level 1 renders an H1, sized above a section H2. */
h1.x8d4bcf579c {
  font-size: calc(clamp(20px, 2.6vw, 26px) * 1.3);
}
.xf2463e000d {
  display: flow-root;
}
.x025baf5b78 {
  width: 38%;
  border-radius: var(--radius-sm);
  margin: 0 0 14px 18px;
  float: right;
}
.x43b15941be {
  float: left;
  margin: 0 18px 14px 0;
}

/* ---------- section heads (games/payments/bonuses/faq) ---------- */
.xadf3f11527 {
  padding: 6px 0;
}
.xba5ed15c3e {
  margin-bottom: 18px;
}
.x787f599b0f {
  text-align: center;
}
.x0d4a996bd3 {
  font-size: clamp(22px, 3vw, 28px);
}

/* BR-GEN-33: a section heading stored at level 1 renders an H1, sized above a section H2. */
h1.x0d4a996bd3 {
  font-size: calc(clamp(22px, 3vw, 28px) * 1.3);
}

/* ---------- brief games block (distinct from the lobby grid above) ---------- */
.x9fb4762b76 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.xa15d03bce9 {
  display: block;
}
.x8c5ab10b92 {
  position: relative;
  display: block;
  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;
}
.x8c5ab10b92 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x16f690a2bb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 42px;
  color: var(--muted);
}
.xa15d03bce9:hover .x8c5ab10b92 {
  transform: translateY(-3px);
}
.xc485f71cff {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.x5e86fc0cb4 {
  font-size: 14px;
  font-weight: 600;
}
.xb9c8aa68be {
  font-size: 12px;
  color: var(--muted);
}

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

/* ---------- payments ---------- */
.x7b9d55cf02 {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  margin: 0 auto 20px;
  display: block;
}
.x7a2770d2f7 {
  overflow-x: auto;
}
.x7c6e9e2c7a {
  width: 100%;
  border-collapse: collapse;
}
.x7c6e9e2c7a th,
.x7c6e9e2c7a td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}
.x7c6e9e2c7a th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- bonuses ---------- */
.x3ca8aece51 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.x37f632fe36 {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    border-color 0.12s,
    transform 0.14s;
}
.x37f632fe36:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.xe4f558715c {
  font-size: 17px;
  margin: 0;
}
.x48a5463aa6 {
  margin: 0;
}
.x8fdec02e38 {
  font-weight: 900;
  font-size: 22px;
  color: var(--accent-text);
}
.x17d5ff9f82 {
  color: var(--muted);
  margin: 0 6px;
}
.x6d7d4f6aee {
  font-weight: 800;
}
.xea7306e521 {
  color: var(--muted-2);
  font-size: 14px;
}
.xe300c34ba9 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.xe300c34ba9 li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.xe300c34ba9 span {
  color: var(--muted);
}
.xc26557cb38 {
  color: var(--accent-text);
}

/* ---------- toc ---------- */
.x64b7c0406e {
  padding: 6px 0 16px;
}
.x979db9f6f2 {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 14px 18px;
}
.xe2859d3a1a {
  font-weight: 800;
  margin: 0 0 8px;
}
.x4fc20773d3 {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 4px;
}
.x13e8cd38df {
  color: var(--accent-text);
}
.x13e8cd38df:hover {
  text-decoration: underline;
}

/* ---------- cta strip ---------- */
.xa29c2cf159 {
  margin: 30px 0;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2);
}
.xc1330426bb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
}
.x7bebe73ecd {
  margin: 0;
  font-size: 20px;
}
.xe06d41c4da {
  margin: 4px 0 0;
  color: var(--muted-2);
}

/* ---------- footer ---------- */
/* The lobby (hero/pills/grid) runs full-bleed across the main column, so the
   footer does too: .main already supplies the side padding, so footer content
   sits flush with the grid above it. */
.xb5274b23c4 {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted-2);
}
.x9835281253 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.x9dd6d5ea11 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.x7b5a01b3ef {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.x7b5a01b3ef a {
  color: var(--muted-2);
  font-size: 14px;
}
.x7b5a01b3ef a:hover {
  color: var(--text);
}
.x3f161dfea5 {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.xc8d21be201 {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 10px;
}
.xb0b3e3a17e {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  max-width: 760px;
  margin: 0 auto;
}
/* Chips sit on the page surface tone, not on a fixed white holder: the badge
   set is site data (settings.paymentAssets / trustAssets), so the holder must
   stay neutral against whatever palette the site carries. */
.xb4d2be8dc3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line-2);
}
.xb4d2be8dc3 img {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.x1f9d93aa68 {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
}
.x7fec13a689 {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 13px;
  color: var(--muted);
}

/* ===========================================================================
   Responsive — the sidebar collapses to a drawer at <=960px. The drawer is
   position: fixed against the viewport, and its OPEN state is the data-open
   attribute the JS sets (never a class).
   =========================================================================== */
@media (max-width: 1200px) {
  .x61c1b5e7e4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 960px) {
  .xf78c1c9ac0 {
    display: block;
  }
  .xa6484eedeb {
    display: flex;
  }
  .x066e02b7ac {
    display: inline-flex;
  }
  /* login/register live on the topbar on mobile — drop the duplicate pair from
     inside the drawer so they are out of the menu. (The desktop sidebar keeps them.) */
  .xf68e28b2b0 {
    display: none;
  }
  .xc41385de27 {
    position: fixed;
    inset: 0;
    z-index: 60;
    height: 100vh;
    height: 100dvh;
    width: min(86vw, 320px);
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    box-shadow: 0 0 40px var(--shadow);
  }
  .xc41385de27[data-open='true'] {
    transform: translateX(0);
  }
  .x943dc781f6 {
    padding: 16px 18px 36px;
  }
  .x1ce9ca3937 {
    grid-template-columns: 1fr;
  }
  .x61c1b5e7e4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .x025baf5b78,
  .x43b15941be {
    float: none;
    width: 100%;
    margin: 0 0 14px;
  }
  .xc1330426bb {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .x61c1b5e7e4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .xff4114c4f1 {
    gap: 8px;
  }
  .x9d0327f905 {
    padding: 9px 14px;
    font-size: 12px;
  }
}
