/* ===========================================================================
   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-3vjo { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.plate-ep3y { max-width: 820px; }

/* ---------- buttons ---------- */
.module-x9op {
  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-1jhv { width: 100%; }
.slab-3ep8 { padding: 14px 30px; font-size: 16px; }
.rail-gota {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), .28);
}
.rail-gota: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 ---------- */
.holder-1rb7 { display: grid; grid-template-columns: var(--sidebar-w) 1fr; min-height: 100vh; }

/* ---------- sidebar (= the page menu) ---------- */
.panel-1tru {
  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;
}
.cluster-25x4 { display: flex; align-items: center; justify-content: center; gap: 10px; position: relative; }
.block-18zx { display: none; position: absolute; top: 0; right: 0; background: transparent; border: 0; color: var(--muted-2); cursor: pointer; padding: 4px; }

.cell-ily1 { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.deck-o4mz { display: inline-flex; align-items: center; }
.bar-xbnm { height: 40px; width: auto; max-width: 100%; }
.group-8b83 { height: 44px; }
.panel-1tru .cell-ily1 { display: flex; width: 100%; justify-content: center; }
.panel-1tru .deck-o4mz { display: flex; width: 100%; justify-content: center; }
.panel-1tru .bar-xbnm { height: 110px; }
.grid-1xca .bar-xbnm { height: 88px; max-width: 62vw; }
.brand__name {
  font-family: var(--fd); font-weight: 800; font-size: 20px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

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

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

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

/* mobile topbar (brand + burger row, then login/register row) — hidden on desktop */
.grid-1xca { display: none; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.cluster-14lc { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wrapper-16w8 { display: flex; gap: 8px; }
.wrapper-16w8 .module-x9op { flex: 1 1 0; padding: 10px 12px; font-size: 14px; }
.field-s5f6 { background: transparent; border: 0; color: var(--text); cursor: pointer; padding: 4px; flex: none; }
.grid-1xca.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 ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin: 4px 0 22px; }
.pill {
  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;
}
.pill:hover { border-color: var(--accent); background: var(--accent-soft); }
.pill__icon { width: 16px; height: 16px; opacity: .9; }

/* ---------- game-card grid ---------- */
.rail-1m9k { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px 16px; margin-bottom: 30px; }
.module-k9t5 { display: block; }
.holder-zqfp {
  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;
}
.frame-1fv9 { 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);
}
.module-k9t5:hover .holder-zqfp { transform: translateY(-3px); }
.holder-1m2w { margin-top: 9px; font-size: 14px; font-weight: 600; color: var(--text); }

/* ---------- brief games block (distinct from the lobby grid above) ---------- */
.chunk-bou6 { padding: 6px 0; }
.grid-81zw { color: var(--muted-2); text-align: center; font-size: 14px; margin: 0 0 4px; }
.shell-5qjw { color: var(--muted); text-align: center; font-size: 13px; margin: 0 0 16px; }
.slot-v63e { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.layout-15bg { display: block; }
.shell-1lmk {
  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;
}
.shell-1lmk img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.frame-1vcx {
  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);
}
.layout-15bg:hover .shell-1lmk { transform: translateY(-3px); }
.tile-ggqb { margin-top: 9px; display: flex; flex-direction: column; gap: 2px; }
.field-gp42 { font-size: 14px; font-weight: 600; color: var(--text); }
.col-1tt2 { font-size: 12px; color: var(--muted); }

/* ---------- brief: intro lead (hero) ---------- */
.wrapper-ppkm { margin: 8px 0 26px; }
.pane-8l1p { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; padding: 0; }
.hero__inner--single { grid-template-columns: 1fr; }
.item-wvjl { font-size: clamp(28px, 4vw, 40px); }
.pane-16ny { color: var(--muted-2); font-size: 16px; }
.field-1fty { margin-top: 18px; }

.module-1pbd {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px;
}
.unit-asue {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-text);
}
.grid-1h1x { font-family: var(--fd); font-weight: 800; font-size: 18px; margin: 8px 0; color: var(--ink); }
.slab-1tiv { font-family: var(--fd); font-weight: 900; font-size: 34px; color: var(--ink); }
.frame-vdlj { color: var(--muted-2); font-size: 14px; }
.strip-n7az { list-style: none; margin: 14px 0; padding: 0; display: grid; gap: 8px; }
.strip-n7az li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; font-size: 14px; }
.strip-n7az span { color: var(--muted); }
.strip-n7az strong { color: var(--ink); }

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

/* ---------- section heads (faq/payments/bonuses) ---------- */
.bar-1lii { margin-bottom: 18px; }
.deck-seox { text-align: center; }
.band-1bpb { font-size: clamp(22px, 3vw, 28px); }
.node-89tb { padding: 6px 0; }

/* ---------- faq ---------- */
.bar-sw8v { padding: 6px 0 10px; }
.zone-1ym6 { 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; }
.bit-1wad { position: relative; width: 16px; height: 16px; flex: none; }
.bit-1wad::before, .bit-1wad::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; }
.bit-1wad::before { left: 0; right: 0; top: 7px; height: 2px; }
.bit-1wad::after { top: 0; bottom: 0; left: 7px; width: 2px; transition: opacity .15s; }
.faq__item[open] .bit-1wad::after { opacity: 0; }
.section-1ue7 { padding: 0 16px 16px; color: var(--muted-2); }

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

/* ---------- bonuses ---------- */
.chunk-1x3d { padding: 6px 0; }
.card-4woe { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.tile-cmdd { border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--surface); padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.deck-a2lr { font-size: 17px; margin: 0; }
.panel-i5n6 { font-family: var(--fd); font-weight: 900; font-size: 22px; color: var(--accent-text); }
.face-grxg { font-weight: 800; color: var(--ink); }
.strip-11vb { color: var(--muted); margin: 0 6px; }
.layout-pt4b { color: var(--muted-2); font-size: 14px; }
.cell-1hyr { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.cell-1hyr li { display: flex; justify-content: space-between; font-size: 14px; }
.cell-1hyr span { color: var(--muted); }
.bonus-tile__code { color: var(--accent-text); }
.piece-1wqu { 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-1qoh { margin: 30px 0; border-radius: var(--radius); background: linear-gradient(120deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-2); }
.pane-25u6 { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; }
.wrapper-1qoh h3 { margin: 0; font-size: 20px; }
.wrapper-1qoh 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-3vjo caps content to a centred 1120px
   column that floats left-of-centre under full-width rules and misaligns with
   everything above. .slot-4jbk already supplies the side padding, so zero the
   container here and let footer content sit flush with the grid. */
.segment-zts8 .panel-3vjo { max-width: none; margin: 0; padding: 0; }
.segment-zts8 { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted-2); }
.slab-1f5c { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.piece-16b6 { display: flex; align-items: center; gap: 14px; }
.slot-1hxg { 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); }
.spot-fk08 { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.spot-fk08 a { color: var(--muted-2); font-size: 14px; }
.spot-fk08 a:hover { color: var(--ink); }
.bit-zlwz { margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.bit-1t4c { margin-top: 18px; display: grid; gap: 14px; }
.stack-18ms { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 10px; }
.frame-5fmp { 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. */
.col-1b1o { 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); }
.col-1b1o img { height: 18px; width: auto; object-fit: contain; }
.footer__disclaimer { margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.item-1jgo { margin-top: 18px; border-top: 1px solid var(--line); padding: 16px 0; }
.tray-1mis { 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-1m9k { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .holder-1rb7 { display: block; }
  .grid-1xca { display: flex; }
  .block-18zx { display: inline-flex; }
  /* login/register live on the topbar on mobile — drop the duplicate pair from
     inside the drawer so they're "out of the menu". (Desktop sidebar keeps them.) */
  .layout-vqzs { display: none; }
  .panel-1tru {
    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);
  }
  .panel-1tru.is-open { transform: translateX(0); }
  .slot-4jbk { padding: 16px 18px 36px; }
  .pane-8l1p { grid-template-columns: 1fr; }
  .rail-1m9k { 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-25u6 { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .rail-1m9k { grid-template-columns: repeat(2, 1fr); }
  .filters { gap: 8px; }
  .pill { padding: 9px 14px; font-size: 12px; }
}

/* per-site full palette overlay (mono-04-cashhunter) :: custom */
:root{
  --bg:#fef9f4;
  --bg-2:#fefcf9;
  --surface:#ffffff;
  --surface-2:#fdf5ed;
  --line:#fcecdd;
  --line-2:#fadec5;
  --text:#1f272a;
  --muted:#7d7f7f;
  --muted-2:#5b5f60;
  --ink:#14191b;
  --accent:#eb811e;
  --accent-rgb:235,129,30;
  --accent-2:#c16a19;
  --accent-soft:#fdf0e4;
  --accent-ring:rgba(235,129,30,.18);
  --on-accent:#0e1f17;
  --on-accent-2:#0e1f17;
  --accent-text:#ab5e16;
}

/* 70yn8l */
