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

.panel-tmja { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.plate-1ywi { max-width: 820px; }

/* ---------- buttons ---------- */
.band-16qu {
  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;
}
.slab-12lv { width: 100%; }
.mark-1v35 { padding: 14px 30px; font-size: 16px; }
.grid-ytod {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), .28);
}
.grid-ytod: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 ---------- */
.panel-1m33 { display: grid; grid-template-columns: var(--sidebar-w) 1fr; min-height: 100vh; }

/* ---------- sidebar (= the page menu) ---------- */
.holder-yrjc {
  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;
}
.segment-7dox { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.segment-ku2z { display: none; background: transparent; border: 0; color: var(--muted-2); cursor: pointer; padding: 4px; }

.cell-1sqp { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.deck-1kv6 { display: inline-flex; align-items: center; }
.bar-9odi { height: 38px; width: auto; }
.box-ub0o { height: 30px; }
.brand__name {
  font-family: var(--fd); font-weight: 800; font-size: 20px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

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

.slot-xo2k { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.slot-xo2k 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). */
.slot-xo2k a:hover { background: rgba(255, 255, 255, .05); color: var(--text); }
.slot-xo2k a.is-active { background: var(--accent-soft); color: var(--ink); }

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

/* mobile topbar (burger) — hidden on desktop */
.field-14fz { display: none; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.grid-er6v { background: transparent; border: 0; color: var(--text); cursor: pointer; padding: 4px; }
.field-14fz.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. */
.panel-mh5e { margin-bottom: 22px; border-radius: var(--radius); overflow: hidden; }
.box-hkie { display: block; transition: filter .15s; }
.box-hkie:hover { filter: brightness(1.05); }
.slab-1tys { display: block; }
.frame-1ng2 { width: 100%; height: auto; display: block; }

/* ---------- game-type pills ---------- */
.node-xhoa { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 22px; }
.slab-5jbo {
  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;
}
.slab-5jbo:hover { border-color: var(--accent); background: var(--accent-soft); }
.pill__icon { width: 16px; height: 16px; opacity: .9; }

/* ---------- game-card grid ---------- */
.rail-1cnl { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px 16px; margin-bottom: 30px; }
.band-1av6 { display: block; }
.panel-79yj {
  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;
}
.cover__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shell-vfk0 {
  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);
}
.band-1av6:hover .panel-79yj { transform: translateY(-3px); }
.area-lp3e { margin-top: 9px; font-size: 14px; font-weight: 600; color: var(--text); }

/* ---------- brief games block (distinct from the lobby grid above) ---------- */
.chunk-cli2 { padding: 6px 0; }
.grid-10x2 { color: var(--muted-2); text-align: center; font-size: 14px; margin: 0 0 4px; }
.cell-eyuq { color: var(--muted); text-align: center; font-size: 13px; margin: 0 0 16px; }
.slot-gz48 { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.box-7bbf { display: block; }
.cell-1jug {
  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;
}
.cell-1jug img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.face-1mcm {
  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);
}
.box-7bbf:hover .cell-1jug { transform: translateY(-3px); }
.tile-14b2 { margin-top: 9px; display: flex; flex-direction: column; gap: 2px; }
.grid-1741 { font-size: 14px; font-weight: 600; color: var(--text); }
.col-190m { font-size: 12px; color: var(--muted); }

/* ---------- brief: intro lead (hero) ---------- */
.wrapper-8ulj { margin: 8px 0 26px; }
.bit-1kha { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; padding: 0; }
.hero__inner--single { grid-template-columns: 1fr; }
.item-1gai { font-size: clamp(28px, 4vw, 40px); }
.pane-qsi1 { color: var(--muted-2); font-size: 16px; }
.rail-1r0v { margin-top: 18px; }

.band-bev7 {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px;
}
.section-15zv {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-text);
}
.field-1ijw { font-family: var(--fd); font-weight: 800; font-size: 18px; margin: 8px 0; color: var(--ink); }
.mark-18h7 { font-family: var(--fd); font-weight: 900; font-size: 34px; color: var(--ink); }
.item-10ic { color: var(--muted-2); font-size: 14px; }
.strip-emkn { list-style: none; margin: 14px 0; padding: 0; display: grid; gap: 8px; }
.strip-emkn li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; font-size: 14px; }
.strip-emkn span { color: var(--muted); }
.strip-emkn strong { color: var(--ink); }

/* ---------- brief sections (text/legacy) ---------- */
.node-klbf { padding: 6px 0; }
.tile-1vq2 { margin-bottom: 30px; }
.spot-6tk7 { 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; }
.panel-qfp5 { color: var(--text); }
.panel-qfp5 p { margin: 0 0 1em; }
.panel-qfp5 a { color: var(--accent-text); text-decoration: underline; }
.panel-qfp5 h2, .panel-qfp5 h3 { margin-top: 1.2em; }
.panel-qfp5 ul, .panel-qfp5 ol { padding-left: 1.3em; }
.panel-qfp5 table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.panel-qfp5 th, .panel-qfp5 td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.panel-qfp5 th { background: var(--surface); color: var(--ink); }

/* ---------- section heads (faq/payments/bonuses) ---------- */
.bar-126d { margin-bottom: 18px; }
.chunk-1y8t { text-align: center; }
.module-hu7f { font-size: clamp(22px, 3vw, 28px); }
.node-g8zg { padding: 6px 0; }

/* ---------- faq ---------- */
.region-6bll { padding: 6px 0 10px; }
.crate-1s1b { 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; }
.pane-1jzd { position: relative; width: 16px; height: 16px; flex: none; }
.pane-1jzd::before, .pane-1jzd::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; }
.pane-1jzd::before { left: 0; right: 0; top: 7px; height: 2px; }
.pane-1jzd::after { top: 0; bottom: 0; left: 7px; width: 2px; transition: opacity .15s; }
.faq__item[open] .pane-1jzd::after { opacity: 0; }
.stack-1t4e { padding: 0 16px 16px; color: var(--muted-2); }

/* ---------- payments ---------- */
.panel-lmjy { padding: 6px 0; }
.strip-wda6 { overflow-x: auto; }
.holder-15u0 { width: 100%; border-collapse: collapse; }
.holder-15u0 th, .holder-15u0 td { border-bottom: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.holder-15u0 th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.holder-15u0 td { vertical-align: middle; }
.payments__icon { display: inline-block; height: 20px; width: auto; margin-right: 8px; vertical-align: middle; }

/* ---------- bonuses ---------- */
.chunk-5pcw { padding: 6px 0; }
.tray-1wvq { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.plate-iftn { border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--surface); padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.chunk-1nk7 { font-size: 17px; margin: 0; }
.panel-15v8 { font-family: var(--fd); font-weight: 900; font-size: 22px; color: var(--accent-text); }
.face-1bjn { font-weight: 800; color: var(--ink); }
.widget-1k00 { color: var(--muted); margin: 0 6px; }
.layout-8d1v { color: var(--muted-2); font-size: 14px; }
.body-1cf9 { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.body-1cf9 li { display: flex; justify-content: space-between; font-size: 14px; }
.body-1cf9 span { color: var(--muted); }
.bonus-tile__code { color: var(--accent-text); }
.piece-n3c6 { 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 ---------- */
.wrapper-r825 { margin: 30px 0; border-radius: var(--radius); background: linear-gradient(120deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-2); }
.pane-pf3g { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; }
.wrapper-r825 h3 { margin: 0; font-size: 20px; }
.wrapper-r825 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 .panel-tmja caps content to a centred 1120px
   column that floats left-of-centre under full-width rules and misaligns with
   everything above. .tray-1am7 already supplies the side padding, so zero the
   container here and let footer content sit flush with the grid. */
.segment-r3gk .panel-tmja { max-width: none; margin: 0; padding: 0; }
.segment-r3gk { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted-2); }
.node-lz5d { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.module-1197 { display: flex; align-items: center; gap: 14px; }
.card-qpso { 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); }
.tile-1eyt { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.tile-1eyt a { color: var(--muted-2); font-size: 14px; }
.tile-1eyt a:hover { color: var(--ink); }
.row-1l2s { 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); }
.face-1qap { margin-top: 18px; border-top: 1px solid var(--line); padding: 16px 0; }
.tray-1ont { 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) {
  .rail-1cnl { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .panel-1m33 { display: block; }
  .field-14fz { display: flex; }
  .segment-ku2z { display: inline-flex; }
  .holder-yrjc {
    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);
  }
  .holder-yrjc.is-open { transform: translateX(0); }
  .tray-1am7 { padding: 16px 18px 36px; }
  .bit-1kha { grid-template-columns: 1fr; }
  .rail-1cnl { 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; }
  .pane-pf3g { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .rail-1cnl { grid-template-columns: repeat(2, 1fr); }
  .node-xhoa { gap: 8px; }
  .slab-5jbo { padding: 9px 14px; font-size: 12px; }
}

/* per-site accent overlay (mono-04-cashhunter) :: forest */
:root{
  --accent:#15803d;
  --accent-rgb:21,128,61;
  --accent-2:#116530;
  --accent-soft:rgba(21,128,61,.14);
  --accent-ring:rgba(21,128,61,.40);
  --on-accent:#ffffff;
  --on-accent-2:#ffffff;
  --accent-text:#116530;
}

/* 1gmd3dh */
