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

.slot-9nx2 { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrapper-dp5i { max-width: 820px; }

/* ---------- buttons ---------- */
.section-w7tq {
  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;
}
.part-ke07 { width: 100%; }
.part-2end { padding: 14px 30px; font-size: 16px; }
.section-dpqy {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), .28);
}
.section-dpqy: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 ---------- */
.widget-158l { display: grid; grid-template-columns: var(--sidebar-w) 1fr; min-height: 100vh; }

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

.deck-1mai { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.strip-tti0 { display: inline-flex; align-items: center; }
.row-1568 { height: 40px; width: auto; max-width: 100%; }
.holder-1lzt { height: 44px; }
.cell-riij .deck-1mai { display: flex; width: 100%; justify-content: center; }
.cell-riij .strip-tti0 { display: flex; width: 100%; justify-content: center; }
.cell-riij .row-1568 { height: 110px; }
.row-1ua0 .row-1568 { 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;
}

.panel-1hj9 { display: flex; flex-direction: column; gap: 10px; }

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

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

/* mobile topbar (burger) — hidden on desktop */
.row-1ua0 { display: none; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.zone-9a7w { background: transparent; border: 0; color: var(--text); cursor: pointer; padding: 4px; }
.row-1ua0.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 ---------- */
.shell-hovo { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 22px; }
.cell-55eo {
  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;
}
.cell-55eo:hover { border-color: var(--accent); background: var(--accent-soft); }
.pill__icon { width: 16px; height: 16px; opacity: .9; }

/* ---------- game-card grid ---------- */
.stack-3563 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px 16px; margin-bottom: 30px; }
.crate-1raf { display: block; }
.body-pna0 {
  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;
}
.spot-49ek { 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);
}
.crate-1raf:hover .body-pna0 { transform: translateY(-3px); }
.shell-o5uf { 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) ---------- */
.unit-8zvi { margin: 8px 0 26px; }
.rail-ahhn { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; padding: 0; }
.hero__inner--single { grid-template-columns: 1fr; }
.tile-w5p5 { font-size: clamp(28px, 4vw, 40px); }
.region-17jz { color: var(--muted-2); font-size: 16px; }
.section-6jsm { margin-top: 18px; }

.pane-1a7j {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px;
}
.face-4rfk {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-text);
}
.pane-1n81 { font-family: var(--fd); font-weight: 800; font-size: 18px; margin: 8px 0; color: var(--ink); }
.tray-1gp7 { font-family: var(--fd); font-weight: 900; font-size: 34px; color: var(--ink); }
.tile-l6j7 { color: var(--muted-2); font-size: 14px; }
.cluster-16hd { list-style: none; margin: 14px 0; padding: 0; display: grid; gap: 8px; }
.cluster-16hd li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; font-size: 14px; }
.cluster-16hd span { color: var(--muted); }
.cluster-16hd strong { color: var(--ink); }

/* ---------- brief sections (text/legacy) ---------- */
.widget-vsg0 { padding: 6px 0; }
.item-3oln { margin-bottom: 30px; }
.rail-110a { 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; }
.layout-1i0x { color: var(--text); }
.layout-1i0x p { margin: 0 0 1em; }
.layout-1i0x a { color: var(--accent-text); text-decoration: underline; }
.layout-1i0x h2, .layout-1i0x h3 { margin-top: 1.2em; }
.layout-1i0x ul, .layout-1i0x ol { padding-left: 1.3em; }
.layout-1i0x table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.layout-1i0x th, .layout-1i0x td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.layout-1i0x th { background: var(--surface); color: var(--ink); }

/* ---------- section heads (faq/payments/bonuses) ---------- */
.stack-1fng { margin-bottom: 18px; }
.strip-1clj { text-align: center; }
.spot-jsvj { font-size: clamp(22px, 3vw, 28px); }
.group-13wv { padding: 6px 0; }

/* ---------- faq ---------- */
.plate-uvi1 { padding: 6px 0 10px; }
.frame-1nsu { 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; }
.piece-3eog { position: relative; width: 16px; height: 16px; flex: none; }
.piece-3eog::before, .piece-3eog::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; }
.piece-3eog::before { left: 0; right: 0; top: 7px; height: 2px; }
.piece-3eog::after { top: 0; bottom: 0; left: 7px; width: 2px; transition: opacity .15s; }
.faq__item[open] .piece-3eog::after { opacity: 0; }
.module-1vep { padding: 0 16px 16px; color: var(--muted-2); }

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

/* ---------- bonuses ---------- */
.slot-3oq0 { padding: 6px 0; }
.cluster-qnmb { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.band-17kv { border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--surface); padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.part-1yxs { font-size: 17px; margin: 0; }
.group-y3da { font-family: var(--fd); font-weight: 900; font-size: 22px; color: var(--accent-text); }
.zone-1at0 { font-weight: 800; color: var(--ink); }
.segment-1sjm { color: var(--muted); margin: 0 6px; }
.slab-1jp4 { color: var(--muted-2); font-size: 14px; }
.col-j8hx { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.col-j8hx li { display: flex; justify-content: space-between; font-size: 14px; }
.col-j8hx span { color: var(--muted); }
.bonus-tile__code { color: var(--accent-text); }
.wrap-166c { 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 ---------- */
.zone-1jcu { margin: 30px 0; border-radius: var(--radius); background: linear-gradient(120deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-2); }
.piece-tkx9 { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; }
.zone-1jcu h3 { margin: 0; font-size: 20px; }
.zone-1jcu 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 .slot-9nx2 caps content to a centred 1120px
   column that floats left-of-centre under full-width rules and misaligns with
   everything above. .area-1gzz already supplies the side padding, so zero the
   container here and let footer content sit flush with the grid. */
.shell-1yzw .slot-9nx2 { max-width: none; margin: 0; padding: 0; }
.shell-1yzw { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted-2); }
.shell-1noa { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.unit-7oz3 { display: flex; align-items: center; gap: 14px; }
.segment-12js { 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); }
.field-1bz1 { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.field-1bz1 a { color: var(--muted-2); font-size: 14px; }
.field-1bz1 a:hover { color: var(--ink); }
.region-zw4s { 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); }
.wrap-z2ek { margin-top: 18px; border-top: 1px solid var(--line); padding: 16px 0; }
.holder-1a1m { 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) {
  .stack-3563 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .widget-158l { display: block; }
  .row-1ua0 { display: flex; }
  .slot-k70c { display: inline-flex; }
  .cell-riij {
    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);
  }
  .cell-riij.is-open { transform: translateX(0); }
  .area-1gzz { padding: 16px 18px 36px; }
  .rail-ahhn { grid-template-columns: 1fr; }
  .stack-3563 { 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; }
  .piece-tkx9 { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .stack-3563 { grid-template-columns: repeat(2, 1fr); }
  .shell-hovo { gap: 8px; }
  .cell-55eo { 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;
}

/* 95uie7 */
