/* ===========================================================================
   mono-08-seven — dark, gold-accented casino landing.

   COLOUR CONTRACT (BR-GEN-05, BR-GEN-04):
   The only colours that enter this file are the three CSS variables the page
   injects inline from the per-site branding palette:
       --bg      background colour   (branding.backgroundColor)
       --accent  accent colour       (branding.accentColor)
       --text    text colour         (branding.textColor, always present)
   Every other tone below is DERIVED from those three with color-mix() +
   `transparent` — there is not a single hardcoded colour literal outside the
   `html` rule's package defaults, so the stylesheet re-skins per site with no
   edits. Fonts are a system stack; no external font or CDN is fetched.

   JS hooks are data-* attributes only (data-header, data-scrolled,
   data-nav-toggle, data-primary-nav, data-open, data-faq, data-aff,
   data-ticker, data-stat-strip, data-stat) — never class names — so the later
   per-domain class-rename step cannot break behaviour.
   =========================================================================== */

/* The package's own near-black/gold pair — the defaults a per-site palette
   overrides (BR-GEN-05). Sits on a lower-specificity `html` rule so the
   page's inline `:root` block (always present) wins whichever order the two
   land in the cascade. */
html {
  --bg: #0d0d12;
  --accent: #d4af37;
  --text: #f2ede0;
}

:root {
  /* Derived surface / line / muted tones (from --bg + --text). Cards sit a
     touch lighter than the page background, the reference site's own
     card-on-charcoal pattern. */
  --surface: color-mix(in srgb, var(--bg) 90%, var(--text));
  --surface-2: color-mix(in srgb, var(--bg) 84%, var(--text));
  --line: color-mix(in srgb, var(--bg) 74%, var(--text));
  --line-soft: color-mix(in srgb, var(--bg) 82%, var(--text));
  --muted: color-mix(in srgb, var(--text) 62%, var(--bg));
  --muted-2: color-mix(in srgb, var(--text) 78%, var(--bg));

  /* Derived accent tints. */
  --accent-2: color-mix(in srgb, var(--accent) 70%, white);
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-line: color-mix(in srgb, var(--accent) 45%, transparent);
  /* Text laid directly on the accent colour: gold reads best under a near-black
     ink, not white, so this is derived mostly from --bg rather than --text. */
  --on-accent: color-mix(in srgb, var(--bg) 88%, black);

  --shadow: color-mix(in srgb, black 45%, transparent);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --maxw: 1160px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, 'Noto Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
/* Background scroll lock while the mobile drawer is open (set from JS as a
   data-* attribute, 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: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
table {
  border-collapse: collapse;
}

.xe598b52dc1 {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.xbbec433210 {
  max-width: 820px;
}

/* ===== Buttons ===== */
.xa42548d921 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}
.xe08090d135 {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--on-accent);
  box-shadow: 0 8px 22px -8px var(--accent-line);
}
.xe08090d135:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px var(--accent-line);
}
.xf672c8b99b {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.xf672c8b99b:hover {
  border-color: var(--accent-line);
}
.x684bfd87c6 {
  background: transparent;
  color: var(--text);
  border-color: var(--accent-line);
}
.xb54d8de6a4 {
  padding: 14px 28px;
  font-size: 1rem;
}
.x78d6f78de3 {
  width: 100%;
}

/* ===== Section scaffolding ===== */
.xe71eeafff1 {
  padding: 64px 0;
  border-top: 1px solid var(--line-soft);
}
.xa19f02182f {
  margin-bottom: 32px;
}
.x39f11ef843 {
  text-align: center;
}
.xee2db80c4d {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.x482b223a37 {
  color: var(--muted-2);
}
.x482b223a37 p {
  margin: 0 0 1em;
}
.x482b223a37 p:last-child {
  margin-bottom: 0;
}
.x482b223a37 a {
  color: var(--accent-2);
  text-decoration: underline;
}
.x482b223a37 table {
  width: 100%;
  margin: 1em 0;
}
.x482b223a37 th,
.x482b223a37 td {
  border: 1px solid var(--line);
  padding: 8px 12px;
  text-align: left;
}

/* ===== Header ===== */
.x76da0e9acc {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.x76da0e9acc[data-scrolled='true'] {
  border-bottom-color: var(--line);
}
.x2208c8b0c0 {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.x49ba75a4f7 {
  justify-content: space-between;
}
.x29d8e4faa8 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}
.x278c3580d9 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--bg);
  background: linear-gradient(150deg, var(--accent-2), var(--accent));
}
.xbe99431cd1 {
  background: none;
  color: inherit;
  width: auto;
  height: 34px;
  border-radius: 0;
}
.x91473a9584 {
  height: 34px;
  width: auto;
}
.x5730a57729 {
  height: 30px;
}

.xe947789c13 {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.xa76b2ded87 {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--muted-2);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.xa76b2ded87:hover,
.xa76b2ded87.x073093d838 {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.x77b80a6643 {
  display: none;
}
.xf5e1554d31 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.x49ba75a4f7 .xf5e1554d31 {
  margin-left: 0;
}
.xf9345cb9cf {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
}
.xe9026ad937 {
  display: none;
}

@media (max-width: 860px) {
  .xf5e1554d31 {
    display: none;
  }
  .xe947789c13 {
    position: fixed;
    inset: 72px 0 0 auto;
    width: min(340px, 88vw);
    height: calc(100vh - 72px);
    background: var(--surface);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .xe947789c13[data-open='true'] {
    transform: translateX(0);
  }
  .xa76b2ded87 {
    padding: 12px 6px;
    border-bottom: 1px solid var(--line-soft);
  }
  .x77b80a6643 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }
  .xf9345cb9cf {
    display: inline-flex;
  }
  html[data-nav-open='true'] .x86bfbfe1ff {
    display: none;
  }
  html[data-nav-open='true'] .xe9026ad937 {
    display: block;
  }
}

/* ===== Hero ===== */
.x245a7c6328 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 480px at 15% -10%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg) 70%);
}
.xbbcf95e2d3 {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.xbbcf95e2d3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x1b2c3ec05a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg) 55%, transparent),
    color-mix(in srgb, var(--bg) 88%, transparent)
  );
  z-index: 0;
}
.x8ab65c5412 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding-block: 72px 56px;
}
.x1739e45099 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.xef4a1cee86 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
}
.x1255d38a1a {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.x7c02dcd8a7 {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -20px var(--shadow);
}
.x30af411378 {
  width: 320px;
  max-width: 40vw;
}
@media (max-width: 780px) {
  .x8ab65c5412 {
    grid-template-columns: 1fr;
  }
  .x30af411378 {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== Ticker ===== */
.xb48c5c67f3 {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.x2786043bfc {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 10px;
}
.xf3522c96ff {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.x0b906905fe {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.xe246fe0b9f {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: ticker-scroll 28s linear infinite;
}
.xb9ceb09f50 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-2);
}
.x7f369e6e69 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.xf70c2398fe {
  color: var(--accent-2);
  font-weight: 700;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .xe246fe0b9f {
    animation: none;
  }
  .x0b906905fe {
    overflow-x: auto;
  }
}

/* ===== Stat strip ===== */
.xa196868d8d {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.x3a2601a054 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--line-soft);
}
.x2cdfdccc6c {
  background: var(--surface);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.xfff28db7ef {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-2);
}
.x4af9549f99 {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== Table of contents ===== */
.x8a40014098 {
  padding-block: 40px 8px;
}
.x2a89de8bcc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.xaf864e2d79 {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.x7cb2ffe60e {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.xb60beb5528 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted-2);
}
.xb60beb5528:hover {
  color: var(--accent-2);
}

/* ===== Intro ===== */
.xee9eb2b1e4 {
  padding-block: 56px 8px;
}
.xd5ec2f86f8 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.x00caf3b4a8 {
  grid-template-columns: 1fr;
}
.xee6ab74b13 {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.x452e5367a7 {
  color: var(--muted-2);
  font-size: 1.05rem;
}
.x30596d5d0d {
  border-radius: var(--radius);
  margin-top: 20px;
  border: 1px solid var(--line);
}
.x9a1aa9722d {
  margin-top: 24px;
}
.x5c86a92447 {
  position: sticky;
  top: 96px;
}
.x919e9b9b9e {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 60px -30px var(--shadow);
}
.x90d8d61138 {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-2);
}
.xfa4d021058 {
  color: var(--muted-2);
}
@media (max-width: 860px) {
  .xd5ec2f86f8 {
    grid-template-columns: 1fr;
  }
  .x5c86a92447 {
    position: static;
  }
}

/* ===== Text block ===== */
.x79ef462045 {
  display: flow-root;
}
.x80cbcbc2f6 {
  overflow: hidden;
}
.x15d6da49b1 {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  float: right;
  width: 320px;
  max-width: 44%;
  margin: 4px 0 16px 24px;
}
.x291dda7a06 {
  float: left;
  margin: 4px 24px 16px 0;
}
@media (max-width: 640px) {
  .x15d6da49b1,
  .x291dda7a06 {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 16px;
  }
}

/* ===== Bonuses ===== */
.x3dc83d9fce {
  background: var(--surface);
}
.x11b0cd2fe2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.x738e1f17fd {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}
.x738e1f17fd:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.xed9d61449f {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.x113618db94 {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.x23b2b0a931 {
  font-size: 1.9rem;
  font-weight: 800;
}
.x9b1195bf1b {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted-2);
}
.x17f5d786c8 {
  color: var(--muted-2);
  font-size: 0.92rem;
}
.x17f5d786c8 p {
  margin: 0;
}
.x0944e385c7 {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.xe6ad1a3032 {
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 2px 8px;
}

/* ===== Games / providers grid ===== */
.x14cefc574b {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.x941dd83e7b {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease;
}
.x941dd83e7b:hover {
  transform: translateY(-2px);
  border-color: var(--accent-line);
}
.xc16bfa6550 {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.xc16bfa6550 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xc3ea2eb698 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-2);
}
.x876e6c40cd {
  position: absolute;
  top: 8px;
  right: 8px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-line);
}
.xe8361a1870 {
  padding: 0 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.xe313ccc65b {
  font-weight: 700;
  font-size: 0.9rem;
}
.x525ceed238 {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== Payments / limits table ===== */
.x92fea84b1a {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.xc076aa10ca {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.xa523b72416 {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.xa523b72416 th,
.xa523b72416 td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.xa523b72416 th {
  background: var(--surface-2);
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.xa523b72416 tbody tr:last-child td {
  border-bottom: none;
}
.xa523b72416 tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}

/* ===== FAQ accordion ===== */
.x81ede9a975 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.x236867c5a0 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.x236867c5a0[open] {
  border-color: var(--accent-line);
}
.x42a476480d {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.x42a476480d::-webkit-details-marker {
  display: none;
}
.x9dc64deab5 {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.x9dc64deab5::before,
.x9dc64deab5::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.2s ease;
}
.x9dc64deab5::before {
  inset: 8px 0;
  height: 2px;
}
.x9dc64deab5::after {
  inset: 0 8px;
  width: 2px;
}
.x236867c5a0[open] .x9dc64deab5::after {
  transform: rotate(90deg);
  opacity: 0;
}
.x29c0d6da91 {
  padding-bottom: 18px;
}

/* ===== Login ===== */
.x4b0462f3a7 {
  margin-top: 20px;
}

/* ===== Pros & cons ===== */
.xee696444c9 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.x2df3d20c10 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.x014ba98848 {
  border-top: 3px solid var(--accent);
}
.xfb4851d7d4 {
  border-top: 3px solid var(--line);
}
.x1c0f68c0b6 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.xa7da76ced2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xa7da76ced2 li {
  padding-left: 22px;
  position: relative;
  color: var(--muted-2);
  font-size: 0.92rem;
}
.x014ba98848 li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 800;
}
.xfb4851d7d4 li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 800;
}
@media (max-width: 640px) {
  .xee696444c9 {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA strip ===== */
.x000765637b {
  padding-block: 56px;
  background: radial-gradient(900px 320px at 50% 0%, var(--accent-soft), transparent 70%);
  border-top: 1px solid var(--line-soft);
}
.xa188025c36 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.xb2a49f4788 {
  font-size: 1.5rem;
  font-weight: 800;
}
.x1f5e91c262 {
  color: var(--muted-2);
  margin-top: 6px;
}

/* ===== Footer ===== */
.xd92531dfef {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
  padding-block: 48px 0;
}
.xbbe70531ef {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 32px;
}
.xd22358ea32 {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted-2);
}
.xadb4731733 {
  width: 100%;
  justify-content: flex-end;
  color: var(--muted);
}
.x9d8748df5e {
  border-top: 1px solid var(--line-soft);
  padding-block: 28px;
}
.x9d8748df5e .xe598b52dc1 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.x5d9c3c499a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 10px;
}
.x72c43e04ac {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.xc4b3ee8111 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  height: 34px;
}
.xc4b3ee8111 img {
  height: 18px;
  width: auto;
}
.x3746322b49 {
  border-top: 1px solid var(--line-soft);
  padding-block: 20px;
}
.x3d850a1404 {
  color: var(--muted);
  font-size: 0.82rem;
}
.x3d850a1404 p {
  margin: 0;
}
