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

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

/* ===== Buttons ===== */
.xae2b4d6eb1 {
  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;
}
.x75e8bae6b6 {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--on-accent);
  box-shadow: 0 8px 22px -8px var(--accent-line);
}
.x75e8bae6b6:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px var(--accent-line);
}
.x8361e3acc9 {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.x8361e3acc9:hover {
  border-color: var(--accent-line);
}
.xe2f45357ad {
  background: transparent;
  color: var(--text);
  border-color: var(--accent-line);
}
.xb6a36f349c {
  padding: 14px 28px;
  font-size: 1rem;
}
.x212dc9bacc {
  width: 100%;
}

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

/* ===== Header ===== */
.x7d9c60a427 {
  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;
}
.x7d9c60a427[data-scrolled='true'] {
  border-bottom-color: var(--line);
}
.x446f0ac612 {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.xcc12abe7a9 {
  justify-content: space-between;
}
.xf80b017c11 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}
.x1455c5016e {
  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));
}
.x8ae6aa783d {
  background: none;
  color: inherit;
  width: auto;
  height: 34px;
  border-radius: 0;
}
.x367f3ecdaa {
  height: 34px;
  width: auto;
}
.x73165f5cf1 {
  height: 30px;
}

.xf12b784c6b {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.x428ea00391 {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--muted-2);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.x428ea00391:hover,
.x428ea00391.x98716c29a5 {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.x8b6860827d {
  display: none;
}
.x967b804cdd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.xcc12abe7a9 .x967b804cdd {
  margin-left: 0;
}
.xa045ced791 {
  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;
}
.x6126a0284b {
  display: none;
}

@media (max-width: 860px) {
  .x967b804cdd {
    display: none;
  }
  .xf12b784c6b {
    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;
  }
  .xf12b784c6b[data-open='true'] {
    transform: translateX(0);
  }
  .x428ea00391 {
    padding: 12px 6px;
    border-bottom: 1px solid var(--line-soft);
  }
  .x8b6860827d {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }
  .xa045ced791 {
    display: inline-flex;
  }
  html[data-nav-open='true'] .xadfcac7bda {
    display: none;
  }
  html[data-nav-open='true'] .x6126a0284b {
    display: block;
  }
}

/* ===== Hero ===== */
.xeb56aee89d {
  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%);
}
.x15cc1fe8b6 {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.x15cc1fe8b6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x36ed1d5fa6::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;
}
.x0a9419a915 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding-block: 72px 56px;
}
.x1291cfd4e3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.xf6a39f8e55 {
  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;
}
.x2e76c633cc {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.x994be6016d {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -20px var(--shadow);
}
.xe1707f061a {
  width: 320px;
  max-width: 40vw;
}
@media (max-width: 780px) {
  .x0a9419a915 {
    grid-template-columns: 1fr;
  }
  .xe1707f061a {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== Ticker ===== */
.x6522e4898c {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.x7503230204 {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 10px;
}
.x233196afb4 {
  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);
}
.xa7ca3e213d {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.x34b514fe8e {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: ticker-scroll 28s linear infinite;
}
.x294d5de9db {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-2);
}
.x791ec69c43 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.x5d9eafd3bc {
  color: var(--accent-2);
  font-weight: 700;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .x34b514fe8e {
    animation: none;
  }
  .xa7ca3e213d {
    overflow-x: auto;
  }
}

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

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

/* ===== Intro ===== */
.x5d0061f9e1 {
  padding-block: 56px 8px;
}
.xcc8f93b21a {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.x69ff5859cb {
  grid-template-columns: 1fr;
}
.x69c86a0b89 {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.xb0323221c4 {
  color: var(--muted-2);
  font-size: 1.05rem;
}
.x5a56611574 {
  border-radius: var(--radius);
  margin-top: 20px;
  border: 1px solid var(--line);
}
.x652e2477ee {
  margin-top: 24px;
}
.x9f4cc4730b {
  position: sticky;
  top: 96px;
}
.xb0de0f504b {
  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);
}
.xcbc44ff0a4 {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-2);
}
.x09d2e3f12f {
  color: var(--muted-2);
}
@media (max-width: 860px) {
  .xcc8f93b21a {
    grid-template-columns: 1fr;
  }
  .x9f4cc4730b {
    position: static;
  }
}

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

/* ===== Bonuses ===== */
.x6d8cdaf68f {
  background: var(--surface);
}
.x49108b0e13 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.x69b426f43e {
  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;
}
.x69b426f43e:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.xc5d881b963 {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.x0542d60c8d {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.x1b27830be3 {
  font-size: 1.9rem;
  font-weight: 800;
}
.xab90d1e776 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted-2);
}
.x02a851d01d {
  color: var(--muted-2);
  font-size: 0.92rem;
}
.x02a851d01d p {
  margin: 0;
}
.x8388385c82 {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.x046a1f1e01 {
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 2px 8px;
}

/* ===== Games / providers grid ===== */
.xf3563253e0 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.x8424c92715 {
  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;
}
.x8424c92715:hover {
  transform: translateY(-2px);
  border-color: var(--accent-line);
}
.x1f6ea62a80 {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.x1f6ea62a80 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xe87d6245bd {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-2);
}
.xae60fb021d {
  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);
}
.x19a9720cf1 {
  padding: 0 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.x298ad06982 {
  font-weight: 700;
  font-size: 0.9rem;
}
.xd2135b77fc {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

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

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

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

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

/* ===== Footer ===== */
.x6770416603 {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
  padding-block: 48px 0;
}
.xac68640bd0 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 32px;
}
.xc2c4971827 {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted-2);
}
.xd779036d94 {
  width: 100%;
  justify-content: flex-end;
  color: var(--muted);
}
.x0926410d57 {
  border-top: 1px solid var(--line-soft);
  padding-block: 28px;
}
.x0926410d57 .xdaa8bb1de6 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.x7acb9adb45 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 10px;
}
.x83d6942c0a {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.x3a860425d5 {
  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;
}
.x3a860425d5 img {
  height: 18px;
  width: auto;
}
.xc3165f8dcc {
  border-top: 1px solid var(--line-soft);
  padding-block: 20px;
}
.x8cd8553737 {
  color: var(--muted);
  font-size: 0.82rem;
}
.x8cd8553737 p {
  margin: 0;
}
