/* ===========================================================================
   uk-template-2 — Dark: a flat, dark premium-casino review layout.
   Sticky hairline masthead · quiet dark lede band · the page as a plain section
   sequence with its own heading levels · ranked offer list with a glowing lead
   row · H3 mini-reviews · plus-mark FAQ · closing CTA strip · quiet dark footer.

   COLOUR CONTRACT (BR-GEN-44, BR-GEN-04):
   A review package ships a FIXED palette of its own and leaves the brand and
   site palette UNAPPLIED — the render context carries `branding.backgroundColor`,
   `branding.accentColor` and `branding.textColor`, and this package reads none of
   them. The whole palette therefore hangs off three CSS variables declared right
   here and nowhere else:
       --bg      the near-black page ground
       --accent  the premium-casino gold
       --text    the pale ink read on it
   The rendered page inlines no `:root` block at all, so this file is the only
   place a colour enters the artefact. Every other tone below is DERIVED from the
   three with color-mix() + `transparent` — outside these three there is not a
   single colour literal. Fonts are a system stack; no external font, script or
   image is fetched (BR-GEN-44: fonts embedded with no third-party request).

   STATE CONTRACT (BR-GEN-03):
   Element state and every JS hook is a data-* attribute — [data-open] on the
   nav drawer, [data-nav-open] on the document root, [data-scrolled] on the
   masthead, plus data-header, data-nav-toggle, data-primary-nav, data-section,
   data-faq, data-offer-table, data-offer-heading, data-offer-row, data-rank,
   data-primary, data-device, data-offer-rank, data-offer-logo,
   data-offer-initial, data-offer-badge, data-offer-bonus, data-offer-promo,
   data-offer-deposit, data-offer-features, data-offer-terms, data-offer-rating,
   data-offer-more, data-brand-slug, data-mini-review, data-footer-disclaimer,
   data-footer-age, data-footer-responsible, 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.
   =========================================================================== */

/* The package's own Dark palette — the fixed set of three every derived tone
   below is mixed from (BR-GEN-44). It stays on `html` rather than `:root` so the
   derived `:root` block beneath it reads the same custom properties on the same
   element without a specificity fight; no per-site palette overrides it. */
html {
  --bg: #0a0d14;
  --accent: #f4c150;
  --text: #c7cede;
}

:root {
  /* Derived surface / line / muted tones (from --bg + --text). */
  --bg-2: color-mix(in srgb, var(--bg) 92%, var(--text));
  --surface: color-mix(in srgb, var(--bg) 84%, var(--text));
  --surface-2: color-mix(in srgb, var(--bg) 76%, var(--text));
  --hairline: color-mix(in srgb, var(--bg) 78%, var(--text));
  --hairline-2: color-mix(in srgb, var(--bg) 60%, var(--text));
  --muted: color-mix(in srgb, var(--text) 62%, var(--bg));
  --muted-2: color-mix(in srgb, var(--text) 84%, var(--bg));

  /* Derived accent tints. */
  --accent-2: color-mix(in srgb, var(--accent) 88%, white);
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-ring: color-mix(in srgb, var(--accent) 42%, transparent);
  --on-accent: #1c1606;

  /* Derived shadows / glow (translucent shades of the accent and the ground). */
  --shadow-sm: color-mix(in srgb, black 45%, transparent);
  --shadow: color-mix(in srgb, black 55%, transparent);
  --glow:
    0 0 0 1px var(--accent-ring), 0 14px 40px color-mix(in srgb, var(--accent) 20%, transparent);

  /* The deepest contrast band the CTA strip and the footer occupy. */
  --deep: color-mix(in srgb, var(--bg) 94%, black);
  --on-deep: color-mix(in srgb, var(--text) 96%, white);
  --on-deep-muted: color-mix(in srgb, var(--text) 62%, var(--bg));

  --measure: 42rem;
  --wrap: 71rem;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-read: var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* The nav drawer locks background scrolling through a data attribute on the
   document root — written by JS, read only here (never a class). */
html[data-nav-open='true'] {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-2);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.xmk6vum {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.x9ozzbi {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 50;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 0 0 var(--radius) 0;
}

.x9ozzbi:focus {
  left: 0;
}

.x9xl3a8 {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.xk0eaqi {
  max-width: calc(var(--measure) + 2.5rem);
}

/* ============================== BUTTONS ============================== */

.xicxt82 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.x1r0bohn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.x1r0bohn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: var(--glow);
}

.x1q9gbgj {
  background: transparent;
  border-color: var(--hairline-2);
  color: var(--muted-2);
}

.x1q9gbgj:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

.x1xnez2h {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.x14o61sq {
  padding: 0.45rem 0.9rem;
  font-size: 0.86rem;
}

.xjdpu89 {
  width: 100%;
}

/* ============================== MASTHEAD ============================== */

.x161lwjk {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.x161lwjk[data-scrolled='true'] {
  box-shadow: 0 1px 0 var(--shadow-sm);
  background: var(--bg);
}

.x1xheta7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.xsri379 {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--on-deep);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.x8vc9q5 {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}

.x5p7o6d {
  font-size: 1.02rem;
}

.x3inmei .x5p7o6d {
  color: var(--on-deep);
}

.x3inmei {
  color: var(--on-deep);
}

.x1vbmio2 {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.x15ja2l9 {
  color: var(--muted-2);
  text-decoration: none;
  font-size: 0.93rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.x15ja2l9:hover,
.x15ja2l9.x1ke8bde {
  color: var(--on-deep);
  border-bottom-color: var(--accent);
}

.x1ra1jbh {
  display: none;
}

.xg1p45u {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.x1hgqhw9 {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  color: var(--on-deep);
  cursor: pointer;
}

.x1lh4lzr {
  display: none;
}

.x1hgqhw9[aria-expanded='true'] .x6xvyox {
  display: none;
}

.x1hgqhw9[aria-expanded='true'] .x1lh4lzr {
  display: block;
}

/* ============================== LEDE BAND ============================== */

.xyggvem {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, var(--surface), var(--bg) 70%);
  border-bottom: 1px solid var(--hairline);
}

.x1qhecp3 {
  position: absolute;
  inset: 0;
}

.x1qhecp3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BR-GEN-15: the configured background image sits behind a darkening veil so the
   copy over it stays readable; with no image the palette wash above stands. */
.xgoggwc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 68%, transparent);
}

.x178ldca {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.xyun32g {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.x1vvg9hu {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.x13cky57 {
  display: block;
  margin-left: auto;
  max-width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glow);
}

.xh1n649 {
  display: block;
  width: 100%;
}

/* ============================== TABLE OF CONTENTS ============================== */

.x1vp3p4r {
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-2);
}

.x18kd3hc {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 1.1rem 0;
  display: grid;
  gap: 0.35rem;
}

.x19ghjf4 {
  counter-increment: toc;
  font-size: 0.93rem;
}

.x19ghjf4::before {
  content: counter(toc) '.';
  display: inline-block;
  min-width: 1.6rem;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}

.xvtqj7w {
  color: var(--muted-2);
  text-decoration: none;
}

.xvtqj7w:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

/* ============================== SECTIONS ============================== */

.x1dnkrhc {
  padding: 2.3rem 0;
  border-bottom: 1px solid var(--hairline);
}

.x1dnkrhc:last-of-type {
  border-bottom: 0;
}

.xx6k8f6 {
  margin: 0 0 0.9rem;
  font-family: var(--font-read);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--on-deep);
}

/* The four review heading levels (BR-GEN-33) each get their own scale, so the
   rendered document reads as the outline the section levels describe. */
h1.xx6k8f6 {
  font-size: clamp(2rem, 1.5rem + 2vw, 2.85rem);
}

h2.xx6k8f6 {
  font-size: clamp(1.5rem, 1.25rem + 1.1vw, 1.95rem);
}

h3.xx6k8f6 {
  font-size: 1.32rem;
}

h4.xx6k8f6 {
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted-2);
}

.x1m5zs5z {
  margin: 0 0 1.2rem;
}

.x1wm7jc6 {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

/* The opening section carries the page H1 and reads a touch larger. */
[data-section='reviewIntro'] .x3l4hww > p:first-child {
  font-size: 1.1rem;
  color: var(--muted-2);
}

/* ============================== PROSE ============================== */

.x3l4hww {
  font-family: var(--font-read);
  font-size: 1.02rem;
  line-height: 1.75;
}

.x3l4hww p {
  margin: 0 0 1rem;
}

.x3l4hww p:last-child {
  margin-bottom: 0;
}

.x3l4hww h3 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-deep);
}

.x3l4hww ul,
.x3l4hww ol {
  margin: 0 0 1rem;
  padding-left: 1.3rem;
}

.x3l4hww li {
  margin-bottom: 0.4rem;
}

.x3l4hww a {
  color: var(--accent-2);
}

.x3l4hww strong {
  font-weight: 700;
  color: var(--on-deep);
}

/* A rich-text table (the comparison table and any authored table) scrolls inside
   its own box rather than pushing the page sideways. */
.x3l4hww table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  margin: 0 0 1.2rem;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: 0.94rem;
  font-variant-numeric: tabular-nums;
}

.x3l4hww th,
.x3l4hww td {
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}

.x3l4hww th {
  font-weight: 700;
  color: var(--muted-2);
  border-bottom-color: var(--hairline-2);
}

/* The how-to steps read as a numbered procedure. */
[data-section='howTo'] .x3l4hww ol {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}

[data-section='howTo'] .x3l4hww ol > li {
  counter-increment: step;
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.75rem;
}

[data-section='howTo'] .x3l4hww ol > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* The advantages/drawbacks lists sit side by side where there is room. */
[data-section='reviewProsCons'] .x3l4hww ul {
  list-style: none;
  padding-left: 0;
}

[data-section='reviewProsCons'] .x3l4hww ul > li {
  padding: 0.5rem 0.85rem;
  margin-bottom: 0.45rem;
  border-left: 2px solid var(--accent-ring);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================== MINI REVIEWS ============================== */

.x1vdzctt {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.1rem;
}

.xjus6ox {
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.xowd1b4 {
  margin: 0 0 0.5rem;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--on-deep);
}

/* ============================== FAQ ============================== */

.xmdxe5p {
  border-top: 1px solid var(--hairline);
}

.xohj06f {
  border-bottom: 1px solid var(--hairline);
}

.x75n26o {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--on-deep);
}

.x75n26o::-webkit-details-marker {
  display: none;
}

.x14xhyu0 {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.x14xhyu0::before,
.x14xhyu0::after {
  content: '';
  position: absolute;
  background: var(--accent);
}

.x14xhyu0::before {
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
}

.x14xhyu0::after {
  left: 6px;
  top: 0;
  width: 2px;
  height: 14px;
}

.xohj06f[open] .x14xhyu0 {
  transform: rotate(45deg);
}

.xgbmbu7 {
  padding: 0 0 1rem;
}

/* ============================== OFFER TABLE ============================== */

/* The bound OfferTable of a review site (BR-GEN-43). The rows arrive already
   filtered, ranked and batched, so this file styles what it is handed and hides
   nothing the render context did not mark: `[hidden]` is the batch the show-more
   control reveals, `[data-device]` is the per-device visibility of a row. */

.xxyu1ko {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--bg-2);
  overflow: hidden;
}

/* The table's own public heading — its title, else its label — distinct from the
   generated section heading above it. */
.xmm9ltz {
  margin: 0;
  padding: 0.7rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--hairline-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.x4k43fy {
  margin: 0;
  padding: 0;
  list-style: none;
}

.x1vw6l10 {
  display: grid;
  grid-template-columns: 2.6rem 6.5rem 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--hairline);
}

.x4k43fy > .x1vw6l10:last-child {
  border-bottom: 0;
}

/* BR-GEN-43: a row hidden on one device is rendered and hidden on that device
   alone. Both rules key off data-device, which the class rename never touches. */
@media (max-width: 720px) {
  .x1vw6l10[data-device='desktop'] {
    display: none;
  }
}

@media (min-width: 721px) {
  .x1vw6l10[data-device='mobile'] {
    display: none;
  }
}

/* The rank column is where digits must align down the table. */
.x1nbunfl {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--muted);
  text-align: right;
}

/* The bound table's primary row is the marked one (BR-GEN-43); the marker is a
   data attribute, so the per-domain class rename cannot lose it — the "lead"
   row is lifted with a soft gold glow (BR-GEN-03). */
.x1vw6l10[data-primary='true'] {
  background: var(--accent-soft);
  box-shadow: inset 3px 0 0 var(--accent);
}

.x1vw6l10[data-primary='true'] .x1nbunfl {
  color: var(--accent-2);
}

.x8kll64 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
}

.x1u7s6mm {
  max-width: 100%;
  max-height: 2.6rem;
  width: auto;
  height: auto;
}

/* BR-GEN-43: the placeholder a brand carrying no logo renders — the first letter
   of its display name, never a substituted image. */
.x1ovn0wd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-read);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-2);
}

.x1j576gv {
  min-width: 0;
}

.x1jv2n44 {
  margin: 0;
  font-weight: 700;
  color: var(--on-deep);
}

.x10jdxdn {
  display: inline-block;
  margin: 0.25rem 0.35rem 0 0;
  padding: 0.12rem 0.45rem;
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.xftm4ns {
  background: var(--accent-soft);
}

.xcmpnc8,
.xva7luv,
.x4bqw9m,
.x1lo3me7 {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
  color: var(--muted-2);
}

.x1lo3me7 {
  font-size: 0.76rem;
  color: var(--muted);
}

.xyeqyxf {
  font-weight: 800;
  color: var(--muted);
}

.x1lfkz78 {
  padding: 0.05rem 0.3rem;
  border: 1px dashed var(--hairline-2);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.x1glmgs0 {
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.7rem;
  font-size: 0.82rem;
  color: var(--muted-2);
}

.xe7u0wl::before {
  content: '\2022';
  margin-right: 0.35rem;
  color: var(--accent-2);
}

.xap66ja {
  font-variant-numeric: tabular-nums;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-2);
  white-space: nowrap;
}

.x12d54m7 {
  white-space: nowrap;
}

/* BR-GEN-43: the show-more control, rendered only while rows remain beyond the
   first batch. main.js hides it once the last batch is revealed. */
.x535pox {
  display: block;
  width: 100%;
  border-top: 1px solid var(--hairline-2);
  border-radius: 0;
}

.x535pox[hidden] {
  display: none;
}

.xtqpfub {
  margin-top: 1.2rem;
}

/* ============================== CTA STRIP ============================== */

.x1dpbqnk {
  background: var(--deep);
  color: var(--on-deep);
}

.x1apyr4e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
}

.x4uhzb {
  margin: 0;
  font-family: var(--font-read);
  font-size: 1.3rem;
  font-weight: 800;
}

.x14clrh2 {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--on-deep-muted);
}

/* ============================== FOOTER ============================== */

.x46p2pc {
  background: var(--deep);
  color: var(--on-deep-muted);
  border-top: 1px solid color-mix(in srgb, var(--on-deep) 14%, transparent);
}

.x15omgpb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}

.x9m4ubz {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.x9m4ubz a {
  color: var(--on-deep-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.x9m4ubz a:hover {
  color: var(--on-deep);
  text-decoration: underline;
}

.xojq50m {
  border-top: 1px solid color-mix(in srgb, var(--on-deep) 12%, transparent);
  padding: 1.3rem 0;
  display: grid;
  gap: 1rem;
}

.xyz2ook {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-deep-muted);
  margin-bottom: 0.55rem;
}

.x1q4wp4p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.x1wijrd0 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 0.6rem;
  background: color-mix(in srgb, var(--on-deep) 8%, transparent);
  border-radius: var(--radius);
}

.x1wijrd0 img {
  max-height: 20px;
  width: auto;
}

.x1pvtsbk {
  border-top: 1px solid color-mix(in srgb, var(--on-deep) 12%, transparent);
  padding: 1.1rem 0;
}

/* BR-GEN-44: the platform-dictionary disclaimer and the age / play-responsibly
   marks — chrome, in the site language, identical across every review package. */
.x1sgq3dd {
  margin: 0 0 0.5rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--on-deep-muted);
}

.x1tj0a3g {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.xwk11uy {
  padding: 0.1rem 0.45rem;
  border: 1px solid color-mix(in srgb, var(--on-deep) 22%, transparent);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-deep-muted);
}

.x11gc3om {
  margin-top: 0.7rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--on-deep-muted);
}

.x11gc3om p {
  margin: 0 0 0.5rem;
}

.x11gc3om p:last-child {
  margin-bottom: 0;
}

/* ============================== RESPONSIVE ============================== */

@media (max-width: 860px) {
  .x178ldca {
    flex-direction: column;
    align-items: flex-start;
  }

  .x13cky57 {
    max-width: 100%;
    margin-left: 0;
  }

  .x1apyr4e {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .x1hgqhw9 {
    display: inline-flex;
  }

  .xg1p45u {
    display: none;
  }

  /* The drawer is closed by default and opened by [data-open="true"], written
     from JS onto the nav element itself — never a class. */
  .x1vbmio2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.9rem 1.25rem 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 12px 24px -18px var(--shadow);
  }

  .x1vbmio2[data-open='true'] {
    display: flex;
  }

  .x15ja2l9 {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--hairline);
  }

  .x1ra1jbh {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.8rem;
  }

  .x1vw6l10 {
    grid-template-columns: 2.2rem 4.5rem 1fr;
    row-gap: 0.6rem;
  }

  .xap66ja,
  .x12d54m7 {
    grid-column: 2 / -1;
  }
}

/* ============================== MOTION ============================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
