/* ===========================================================================
   mono-04-cashhunter — navy casino lobby (monobrand).
   Sidebar (brand + Login/Register + page menu) · brand hero · game-type pills ·
   game-card grid · brief sections · footer.

   Obfuscation: the build appends an accent-only :root overlay (see
   mono04-overlay.ts) overriding --accent* from the brand palette; the navy
   chrome below stays as authored. Class names are renamed per-site in HTML+CSS
   in lockstep — INVARIANTS (see docs/MONO03_BRIEF.md):
     · NEVER use :has()/:not()/:is()/:where() with a class arg.
     · Conditional styling via render-time modifier classes.
     · Skiplisted state classes stay literal: is-active, is-open, is-scrolled,
       faq__item. JS hooks are data-attrs (data-nav-toggle, data-primary-nav,
       data-header) — never renamed.
   =========================================================================== */

:root {
  /* Navy chrome (authored — NOT touched by the accent overlay) */
  --bg: #0f1c33;
  --bg-2: #16243f;
  --surface: #1a2a47;
  --surface-2: #1f3052;
  --line: #27375a;
  --line-2: #33466b;
  --text: #eaf0fb;
  --muted: #8593b0;
  --muted-2: #aab4c8;
  --ink: #ffffff;

  /* Accent (per-site overlay overrides these from the brand palette) */
  --accent: #ff8a1e;
  --accent-2: #ff7300;
  --accent-rgb: 255, 138, 30;
  --accent-soft: rgba(255, 138, 30, 0.14);
  --accent-ring: rgba(255, 138, 30, 0.40);
  --accent-text: #ffb25e;
  --on-accent: #3a1c00;
  --on-accent-2: #ffffff;

  /* Geometry */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --sidebar-w: 244px;
  --maxw: 1120px;

  --fb: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --fd: 'Manrope', var(--fb);
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  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 { font-family: var(--fd); line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }

.rail-1qzu { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.body-k1c5 { max-width: 820px; }

/* ---------- buttons ---------- */
.block-1y17 {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: var(--radius-pill); cursor: pointer;
  font-family: var(--fb); font-weight: 800; font-size: 15px;
  padding: 12px 22px; transition: transform .12s, background .12s, box-shadow .12s;
}
.wrap-w05i { width: 100%; }
.grid-1348 { padding: 14px 30px; font-size: 16px; }
.node-1871 {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), .28);
}
.node-1871:hover {
  background: var(--accent-2); color: var(--on-accent-2);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), .36); transform: translateY(-1px);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--ink); }

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

/* ---------- sidebar (= the page menu) ---------- */
.unit-1g2f {
  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;
}
.stack-envf { display: flex; align-items: center; justify-content: center; gap: 10px; position: relative; }
.piece-1uel { display: none; position: absolute; top: 0; right: 0; background: transparent; border: 0; color: var(--muted-2); cursor: pointer; padding: 4px; }

.bit-1f9t { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.piece-oeia { display: inline-flex; align-items: center; }
.panel-16dq { height: 40px; width: auto; max-width: 100%; }
.wrap-15x0 { height: 44px; }
.unit-1g2f .bit-1f9t { display: flex; width: 100%; justify-content: center; }
.unit-1g2f .piece-oeia { display: flex; width: 100%; justify-content: center; }
.unit-1g2f .panel-16dq { height: 110px; }
.strip-1ghh .panel-16dq { height: 64px; }
.brand__name {
  font-family: var(--fd); font-weight: 800; font-size: 20px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

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

.tile-1fc3 { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.tile-1fc3 a {
  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 .14s, color .14s;
}
/* Hover/active sit a hair off the navy chrome: a faint white lift on hover,
   then a faint accent wash for the current page. NOT the near-white block the
   light-mode palette token used to paint here — both keep text readable on the
   dark sidebar (see mono04-overlay.ts: --accent-soft is a low-alpha accent). */
.tile-1fc3 a:hover { background: rgba(255, 255, 255, .05); color: var(--text); }
.tile-1fc3 a.is-active { background: var(--accent-soft); color: var(--ink); }

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

/* mobile topbar (burger) — hidden on desktop */
.strip-1ghh { display: none; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tray-1pa5 { background: transparent; border: 0; color: var(--text); cursor: pointer; padding: 4px; }
.strip-1ghh.is-scrolled { box-shadow: 0 4px 14px rgba(0, 0, 0, .25); }

/* ---------- brand hero banner ---------- */
/* The hero is a promotional BANNER (offer text + artwork), so it must render in
   FULL — full width, height following the image's own aspect ratio. NO fixed
   height + object-fit:cover (that cropped the bonus text off the bottom). Upload
   a wide banner; recommended ~1900×440 desktop, ~1080×600 mobile crop. */
.lobby-hero { margin-bottom: 22px; border-radius: var(--radius); overflow: hidden; }
.lobby-hero__link { display: block; transition: filter .15s; }
.lobby-hero__link:hover { filter: brightness(1.05); }
.lobby-hero__pic { display: block; }
.lobby-hero__img { width: 100%; height: auto; display: block; }

/* ---------- game-type pills ---------- */
.face-zui7 { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 22px; }
.stack-p4iy {
  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: .02em;
  text-transform: uppercase; color: var(--text);
  background: rgba(255, 255, 255, .015); transition: border-color .12s, background .12s;
}
.stack-p4iy:hover { border-color: var(--accent); background: var(--accent-soft); }
.pill__icon { width: 16px; height: 16px; opacity: .9; }

/* ---------- game-card grid ---------- */
.box-njh9 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px 16px; margin-bottom: 30px; }
.tray-59ur { display: block; }
.piece-1nfc {
  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 rgba(0, 0, 0, .3); transition: transform .14s;
}
.layout-pnzd { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 900; font-size: 46px; color: rgba(255, 255, 255, .22);
}
.tray-59ur:hover .piece-1nfc { transform: translateY(-3px); }
.bit-1o59 { margin-top: 9px; font-size: 14px; font-weight: 600; color: var(--text); }

/* ---------- brief games block (distinct from the lobby grid above) ---------- */
.games { padding: 6px 0; }
.games__stats { color: var(--muted-2); text-align: center; font-size: 14px; margin: 0 0 4px; }
.games__providers { color: var(--muted); text-align: center; font-size: 13px; margin: 0 0 16px; }
.games__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.game-tile { display: block; }
.game-tile__media {
  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 rgba(0, 0, 0, .3); transition: transform .14s;
}
.game-tile__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.game-tile__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 900; font-size: 42px; color: rgba(255, 255, 255, .22);
}
.game-tile:hover .game-tile__media { transform: translateY(-3px); }
.game-tile__meta { margin-top: 9px; display: flex; flex-direction: column; gap: 2px; }
.game-tile__name { font-size: 14px; font-weight: 600; color: var(--text); }
.game-tile__label { font-size: 12px; color: var(--muted); }

/* ---------- brief: intro lead (hero) ---------- */
.tray-1e7f { margin: 8px 0 26px; }
.tray-1wf2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; padding: 0; }
.hero__inner--single { grid-template-columns: 1fr; }
.block-62gg { font-size: clamp(28px, 4vw, 40px); }
.area-11qq { color: var(--muted-2); font-size: 16px; }
.slab-1lmb { margin-top: 18px; }

.part-1mxh {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px;
}
.layout-182y {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-text);
}
.col-1p8w { font-family: var(--fd); font-weight: 800; font-size: 18px; margin: 8px 0; color: var(--ink); }
.wrap-wl8r { font-family: var(--fd); font-weight: 900; font-size: 34px; color: var(--ink); }
.block-xwlz { color: var(--muted-2); font-size: 14px; }
.stack-1bu7 { list-style: none; margin: 14px 0; padding: 0; display: grid; gap: 8px; }
.stack-1bu7 li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; font-size: 14px; }
.stack-1bu7 span { color: var(--muted); }
.stack-1bu7 strong { color: var(--ink); }

/* ---------- brief sections (text/legacy) ---------- */
.row-12rd { padding: 6px 0; }
.tray-190q { margin-bottom: 30px; }
.panel-kt24 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 12px; }
.brief-section__body--with-image { display: flow-root; }
.brief-section__img { width: 38%; border-radius: var(--radius-sm); margin: 0 0 14px 18px; float: right; }
.brief-section__img--left { float: left; margin: 0 18px 14px 0; }
.row-1bgq { color: var(--text); }
.row-1bgq p { margin: 0 0 1em; }
.row-1bgq a { color: var(--accent-text); text-decoration: underline; }
.row-1bgq h2, .row-1bgq h3 { margin-top: 1.2em; }
.row-1bgq ul, .row-1bgq ol { padding-left: 1.3em; }
.row-1bgq table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.row-1bgq th, .row-1bgq td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.row-1bgq th { background: var(--surface); color: var(--ink); }

/* ---------- section heads (faq/payments/bonuses) ---------- */
.box-1jja { margin-bottom: 18px; }
.section-hskd { text-align: center; }
.deck-oci6 { font-size: clamp(22px, 3vw, 28px); }
.field-sc7u { padding: 6px 0; }

/* ---------- faq ---------- */
.mark-141a { padding: 6px 0 10px; }
.layout-11l3 { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 16px; font-weight: 700; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.body-1968 { position: relative; width: 16px; height: 16px; flex: none; }
.body-1968::before, .body-1968::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; }
.body-1968::before { left: 0; right: 0; top: 7px; height: 2px; }
.body-1968::after { top: 0; bottom: 0; left: 7px; width: 2px; transition: opacity .15s; }
.faq__item[open] .body-1968::after { opacity: 0; }
.group-80nu { padding: 0 16px 16px; color: var(--muted-2); }

/* ---------- payments ---------- */
.row-6o6l { padding: 6px 0; }
.rail-7dv3 { overflow-x: auto; }
.bar-18r0 { width: 100%; border-collapse: collapse; }
.bar-18r0 th, .bar-18r0 td { border-bottom: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.bar-18r0 th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.bar-18r0 td { vertical-align: middle; }
.payments__icon { display: inline-block; height: 20px; width: auto; margin-right: 8px; vertical-align: middle; }

/* ---------- bonuses ---------- */
.wrapper-ex9f { padding: 6px 0; }
.bit-iw5o { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.holder-16mk { border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--surface); padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.plate-1dhm { font-size: 17px; margin: 0; }
.grid-1t2t { font-family: var(--fd); font-weight: 900; font-size: 22px; color: var(--accent-text); }
.slot-cibo { font-weight: 800; color: var(--ink); }
.spot-1xx1 { color: var(--muted); margin: 0 6px; }
.rail-11mc { color: var(--muted-2); font-size: 14px; }
.wrapper-1a2c { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.wrapper-1a2c li { display: flex; justify-content: space-between; font-size: 14px; }
.wrapper-1a2c span { color: var(--muted); }
.bonus-tile__code { color: var(--accent-text); }
.card-17w6 { color: var(--muted); font-size: 12.5px; margin-top: 14px; }

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

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

/* ---------- footer ---------- */
/* The lobby (hero/pills/grid) runs full-bleed across the main column, so the
   footer must too — otherwise its .rail-1qzu caps content to a centred 1120px
   column that floats left-of-centre under full-width rules and misaligns with
   everything above. .frame-14ss already supplies the side padding, so zero the
   container here and let footer content sit flush with the grid. */
.spot-7f62 .rail-1qzu { max-width: none; margin: 0; padding: 0; }
.spot-7f62 { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted-2); }
.region-1et8 { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.tray-10im { display: flex; align-items: center; gap: 14px; }
.stack-1qw2 { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 24px; padding: 0 8px; border-radius: var(--radius-pill); border: 1px solid var(--line-2); font-size: 12px; font-weight: 700; color: var(--muted-2); }
.slot-b4yk { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.slot-b4yk a { color: var(--muted-2); font-size: 14px; }
.slot-b4yk a:hover { color: var(--ink); }
.group-1d9c { margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.footer__strips { margin-top: 18px; display: grid; gap: 14px; }
.footer__strip-title { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 10px; }
.footer__strip-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 12px; max-width: 760px; margin: 0 auto; }
/* Chips sit on the navy surface — NOT white. The bundled system badges
   (Visa/Mastercard/18+/GamCare…) are white-monochrome SVGs authored for a dark
   footer, so a white chip rendered them invisible (white-on-white). var(--surface)
   gives the white marks contrast and colour uploads a neutral holder — the same
   treatment as mono-03's footer. */
.footer__chip { 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); }
.footer__chip img { height: 18px; width: auto; object-fit: contain; }
.footer__disclaimer { margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.cell-6jz0 { margin-top: 18px; border-top: 1px solid var(--line); padding: 16px 0; }
.band-1k1q { font-size: 13px; color: var(--muted); }

/* ===========================================================================
   Responsive — sidebar collapses to a drawer at <=960px.
   The drawer is position:fixed against the viewport. No ancestor uses
   backdrop-filter, so the mono-03 containing-block trap does not apply here.
   =========================================================================== */
@media (max-width: 1200px) {
  .box-njh9 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .field-rg7f { display: block; }
  .strip-1ghh { display: flex; }
  .piece-1uel { display: inline-flex; }
  .unit-1g2f {
    position: fixed; inset: 0; z-index: 60; height: 100vh; height: 100dvh; width: min(86vw, 320px);
    transform: translateX(-100%); transition: transform .22s ease; box-shadow: 0 0 40px rgba(0, 0, 0, .5);
  }
  .unit-1g2f.is-open { transform: translateX(0); }
  .frame-14ss { padding: 16px 18px 36px; }
  .tray-1wf2 { grid-template-columns: 1fr; }
  .box-njh9 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .brief-section__img, .brief-section__img--left { float: none; width: 100%; margin: 0 0 14px; }
  .card-13mn { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .box-njh9 { grid-template-columns: repeat(2, 1fr); }
  .face-zui7 { gap: 8px; }
  .stack-p4iy { padding: 9px 14px; font-size: 12px; }
}

/* per-site full palette overlay (mono-04-cashhunter) :: custom */
:root{
  --bg:#090c62;
  --bg-2:#101366;
  --surface:#181b6b;
  --surface-2:#242773;
  --line:#2b2e78;
  --line-2:#444688;
  --text:#e1e2ec;
  --muted:#8788b2;
  --muted-2:#a7a8c7;
  --ink:#f8f8fa;
  --accent:#810404;
  --accent-rgb:129,4,4;
  --accent-2:#590d0d;
  --accent-soft:#230a4d;
  --accent-ring:rgba(129,4,4,.30);
  --on-accent:#ffffff;
  --on-accent-2:#ffffff;
  --accent-text:#ab8484;
}

/* ck4a24 */
