/* Landing one-pager — fairpari-uzbek.com unique theme (violet / teal / coral) */
:root {
  --bg: #12081f;
  --bg-elevated: #1a0f2e;
  --bg-card: #221433;
  --bg-card-hover: #2a1a42;
  --surface: #1e1235;
  --ink: #f0f4f8;
  --muted: #94a3b8;
  --accent: #14b8a6;
  --accent-bright: #5eead4;
  --accent-dim: rgba(20, 184, 166, 0.15);
  --gold: #f472b6;
  --gold-dim: rgba(244, 114, 182, 0.12);
  --danger: #f87171;
  --success: #5eead4;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(20, 184, 166, 0.35);
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.14);
  --font: "DM Sans", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 72px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
}

section[id],
.anchor {
  scroll-margin-top: calc(var(--header-h) + 10px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ─── Header (Six6s) ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 17, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem 1rem;
  max-width: var(--max);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
}

.brand__name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover {
  color: var(--ink);
  background: var(--accent-dim);
}

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

.brand__logo-img {
  display: block;
  height: 20px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
}

.brand__name.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer .brand__logo-img {
  height: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  background: transparent;
}

.lang-switch__link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.lang-switch__link:hover,
.lang-switch__link--active {
  color: var(--accent-bright);
  font-weight: 600;
}

.lang-switch__sep {
  opacity: 0.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #1976d2);
  color: #000;
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(20, 184, 166, 0.5);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: #000;
  box-shadow: 0 4px 20px rgba(244, 114, 182, 0.3);
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

@media (max-width: 479px) {
  .btn--lg {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding-inline: 1.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .stat-item {
    padding: 0.85rem 0.65rem;
  }

  .stat-item__value {
    font-size: 1.05rem;
  }

  .on-page-nav {
    gap: 0.4rem;
  }

  .on-page-nav a {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.nav-mobile a:hover {
  background: var(--accent-dim);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions .btn--ghost:first-of-type {
    display: inline-flex;
  }
}

@media (max-width: 959px) {
  .header-actions .btn--ghost:first-of-type {
    display: none;
  }
}

/* ─── Live wins ticker (R777) ─── */
.live-wins {
  background: linear-gradient(90deg, #0d47a1, #7c3aed);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.live-wins__track {
  display: flex;
  gap: 2rem;
  padding: 0.5rem 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.live-wins__item {
  font-size: 0.8rem;
  color: var(--ink);
  flex-shrink: 0;
}

.live-wins__item strong {
  color: var(--gold);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Hero banner (single) ─── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__banner {
  padding: 2.5rem 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(20, 184, 166, 0.14), transparent 60%),
    linear-gradient(135deg, #101820 0%, #12081f 100%);
}

.hero__slide-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__slide-inner--stacked {
  max-width: 640px;
  margin-inline: auto;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: none;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent-bright);
}

.hero__subtitle {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__art {
  width: min(100%, 460px);
  margin: 0 auto 0.75rem;
  line-height: 0;
  text-align: center;
}

.hero__art img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.35));
}

.hero__visual {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  overflow: hidden;
}

.hero__visual--top {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.hero__visual--top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* removed carousel dots */
.hero__dots {
  display: none;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .stats-bar {
    grid-template-columns: repeat(6, 1fr);
  }
}

.stat-item {
  background: var(--bg-elevated);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.stat-item__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-bright);
}

.stat-item__label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-item__label:empty {
  display: none;
}

.section__intro a.text-link,
.content-block a.text-link,
.section-list a.text-link,
.section__header a.text-link,
.section__intro p a.text-link {
  color: var(--accent-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section__intro a.text-link:hover,
.content-block a.text-link:hover,
.section__header a.text-link:hover {
  color: var(--gold);
}

/* ─── Sections ─── */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section--compact {
  padding: 2.5rem 0;
}

.section--compact .section__header {
  margin-bottom: 1.25rem;
}

.section--alt {
  background: var(--bg-elevated);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ─── Section promo banners ─── */
.section-banner {
  position: relative;
  margin: 0.85rem auto 1.35rem;
  max-width: 760px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.section-banner__bg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 120px;
  object-fit: cover;
}

.section-banner__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  padding: 0.85rem 1.25rem;
  margin: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 17, 26, 0.92) 0%,
    rgba(12, 17, 26, 0.45) 42%,
    rgba(12, 17, 26, 0.45) 58%,
    rgba(12, 17, 26, 0.92) 100%
  );
  pointer-events: none;
}

.section-banner__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--gold-dim);
  border: 1px solid rgba(244, 114, 182, 0.35);
}

.section-banner--sports .section-banner__tag {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.35);
}

.section-banner--security .section-banner__tag {
  color: var(--accent-bright);
  background: var(--accent-dim);
  border-color: var(--border-strong);
}

.section-banner__title {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.section-banner__sub {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 28rem;
  line-height: 1.4;
}

@media (max-width: 479px) {
  .section-banner__caption {
    padding: 0.65rem 0.85rem;
  }

  .section-banner__sub {
    font-size: 0.75rem;
  }
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__intro {
  max-width: 42rem;
  margin: 1.25rem auto 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

.section__subheading {
  margin: 2rem auto 0.75rem;
  max-width: 44rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.section-hero-shot {
  max-width: 520px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.section-hero-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.features-grid {
  margin-bottom: 1.75rem;
}

.features-list {
  max-width: 44rem;
  margin: 0 auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.features-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 700;
}

.section-list {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.section-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.section-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 700;
}

/* ─── Tables ─── */
.data-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: rgba(20, 184, 166, 0.08);
  color: var(--accent-bright);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table td:first-child {
  color: var(--muted);
  width: 38%;
}

.data-table--compact th,
.data-table--compact td {
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
  line-height: 1.35;
}

.data-table--compact th {
  font-size: 0.68rem;
  padding: 0.5rem 0.6rem;
}

/* ─── Top games (Luckymax) ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 960px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.game-card__thumb {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1a2840, #101820);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
}

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

.game-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-card__play {
  opacity: 1;
}

.game-card__body {
  padding: 0.5rem 0.55rem 0.6rem;
}

.game-card__name {
  margin: 0 0 0.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.game-card__provider {
  margin: 0;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.3;
}

.game-card__placeholder {
  font-size: 1.75rem;
  opacity: 0.45;
}

/* ─── Features grid (Six6s) ─── */
.features-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.feature-card__icon {
  display: none;
}

.feature-card__emoji {
  margin-right: 0.35rem;
}

.feature-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.feature-card__text {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.section__cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

.site-copyright {
  margin: 0;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

body.has-sticky-cta .site-copyright {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

/* ─── Split block (text + screenshot) ─── */
.split-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-block {
    grid-template-columns: 1fr 1fr;
  }

  .split-block--reverse .split-block__media {
    order: -1;
  }
}

.split-block__content p {
  color: var(--muted);
  margin: 0 0 1rem;
}

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

.screenshot-placeholder {
  aspect-ratio: 9/16;
  max-width: 320px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 2px dashed var(--border-strong);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  overflow: hidden;
}

.screenshot-placeholder--wide {
  aspect-ratio: 16/10;
  max-width: 100%;
}

.screenshot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
}

.screenshot-placeholder__label {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.data-table-wrap .data-table {
  min-width: 320px;
}

.content-block {
  max-width: 720px;
  margin-inline: auto;
}

.content-block .section__title,
.content-block .section__subtitle {
  text-align: left;
}

.content-block .section__eyebrow {
  display: block;
  text-align: left;
}

.content-block__lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.inline-screenshot,
.section-header-shot {
  margin: 1rem auto 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.inline-screenshot {
  max-width: 320px;
}

.inline-screenshot--cutout {
  max-width: 420px;
  border: none;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.inline-screenshot--cutout img {
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
}

.inline-screenshot--app {
  max-width: 260px;
}

.section-header-shot {
  max-width: 480px;
}

.section-header-shot--compact {
  max-width: 300px;
  margin-inline: auto;
}

.section-header-shot--compact img {
  width: 100%;
  height: auto;
}

.inline-screenshot img,
.section-header-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.registration-methods {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}

@media (min-width: 720px) {
  .registration-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reg-method {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.reg-method__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.reg-method__steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.reg-method__steps li {
  margin-bottom: 0.4rem;
}

.reg-method__steps li:last-child {
  margin-bottom: 0;
}

/* ─── App download ─── */
.app-download {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .app-download {
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 2.5rem;
  }
}

.app-download__shot {
  margin: 0 auto;
  max-width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.app-download__shot img {
  width: 100%;
  height: auto;
  display: block;
}

.app-download__platforms {
  display: grid;
  gap: 1rem;
}

.app-platform {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem 1.35rem;
}

.app-platform--android {
  border-top: 3px solid #3ddc84;
}

.app-platform--ios {
  border-top: 3px solid var(--accent-bright);
}

.app-platform__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.app-platform__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.app-platform__intro {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.app-platform__steps {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.app-platform__steps li {
  margin-bottom: 0.45rem;
}

.app-platform__steps li:last-child {
  margin-bottom: 0;
}

.app-platform__cta {
  width: 100%;
}

@media (min-width: 480px) {
  .app-platform__cta {
    width: auto;
    min-width: 12rem;
  }
}

.section__header--with-shot .section__title,
.section__header--with-shot .section__subtitle {
  text-align: center;
}

/* ─── Payment marquee (same style as providers) ─── */
.payment-marquee {
  margin-top: 1.5rem;
}

.payment-marquee .provider-marquee__item img {
  height: 28px;
  max-width: 100px;
  filter: brightness(1.15);
}

/* legacy single-track payment styles removed */
.payment-marquee__track,
.payment-marquee__item {
  display: none;
}

/* ─── Provider marquee (casino) ─── */
.provider-marquee {
  margin-top: 2rem;
  display: grid;
  gap: 0.35rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.provider-marquee__row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  padding: 0.5rem 0;
}

.provider-marquee__row--left {
  animation: marquee-left 38s linear infinite;
}

.provider-marquee__row--right {
  animation: marquee-right 38s linear infinite;
}

.provider-marquee__item {
  flex-shrink: 0;
  opacity: 0.88;
}

.provider-marquee__item img {
  height: 26px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(1.1);
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* legacy static row (unused) */
.providers-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.provider-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 52px;
  padding: 0.5rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.provider-badge img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.provider-badge:hover {
  border-color: var(--border-strong);
}

/* ─── Pros & Cons (R777) ─── */
.pros-cons {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-cons__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.pros-cons__col--pros {
  border-color: rgba(74, 222, 128, 0.25);
}

.pros-cons__col--cons {
  border-color: rgba(248, 113, 113, 0.25);
}

.pros-cons__heading {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.pros-cons__col--pros .pros-cons__heading {
  color: var(--success);
}

.pros-cons__col--cons .pros-cons__heading {
  color: var(--danger);
}

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

.pros-cons__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.925rem;
  color: var(--muted);
}

.pros-cons__list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.pros-cons__col--pros .pros-cons__list li::before {
  content: "✓";
  color: var(--success);
}

.pros-cons__col--cons .pros-cons__list li::before {
  content: "✗";
  color: var(--danger);
}

/* ─── FAQ accordion ─── */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 0.975rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-item__question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform 0.25s;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* ─── Footer (FairPari APK) ─── */
.site-footer {
  background: #060910;
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-cols-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1.2fr 1fr;
    align-items: start;
  }

  .footer-cols-pair {
    gap: 1.5rem;
  }
}

.footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.45;
}

.footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.3rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.footer-badge-link:hover {
  transform: translateY(-1px);
}

.footer-badge-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(0.05);
}

.footer-badge-link:hover .footer-badge-img {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--ink);
}

.footer-disclaimer {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  font-size: 0.7rem;
  color: #6b7a72;
  line-height: 1.45;
  text-align: center;
}

.footer-updated {
  margin: 0.35rem auto 0;
  max-width: 42rem;
  font-size: 0.65rem;
  color: #5a6a62;
  text-align: center;
}

/* ─── Legal pages ─── */
.legal-doc {
  padding: 2rem 0 3rem;
}

.legal-doc h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-doc h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-doc ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc__updated {
  font-size: 0.82rem;
  color: #5a6a62;
  margin-bottom: 1.25rem;
}

.legal-doc__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.legal-doc__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.legal-doc__nav a:hover {
  color: var(--accent-bright);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--accent-bright);
  text-decoration: none;
}

.on-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  margin: 1.25rem auto 0;
  max-width: 44rem;
}

.on-page-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.on-page-nav a:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.login-steps {
  max-width: 44rem;
  margin: 0 auto 1.25rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.login-steps li + li {
  margin-top: 0.45rem;
}

.footer-copyright {
  display: none;
}

/* ─── Sticky bonus CTA ─── */
.sticky-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 95;
  width: min(100% - 1rem, 440px);
  transform: translateX(-50%);
  background: transparent;
  padding: 0 0 calc(0.65rem + env(safe-area-inset-bottom, 0px));
  border-top: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-cta.is-hidden {
  transform: translateX(-50%) translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.sticky-cta__inner {
  width: 100%;
  margin-inline: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.sticky-cta__text {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink);
}

.sticky-cta__highlight {
  display: block;
  margin-top: 0.1rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
}

.sticky-cta__text strong {
  color: var(--gold);
  font-weight: 700;
}

.sticky-cta__btn {
  flex-shrink: 0;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.sticky-cta__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.sticky-cta__close:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

body.has-sticky-cta .back-to-top.is-visible {
  bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 50;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.anchor {
  display: block;
  position: relative;
  top: calc(var(--header-h) * -1 - 1rem);
  visibility: hidden;
  pointer-events: none;
}

/* Placeholder hint for builders */
[data-placeholder]::after {
  content: none;
}

.placeholder-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.35rem;
}


/* ─── fairpari-uzbek.com unique layout & chrome ─── */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

body.site-dawo {
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(124, 58, 237, 0.18), transparent 55%), var(--bg);
}

.site-dawo .site-header {
  background: rgba(18, 8, 31, 0.92);
  border-bottom: 2px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.site-dawo .nav-desktop a {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
}

.site-dawo .nav-desktop a:hover {
  border-color: rgba(20, 184, 166, 0.4);
  background: rgba(20, 184, 166, 0.08);
}

.site-dawo .btn--primary {
  background: linear-gradient(135deg, #14b8a6, #7c3aed);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}

.site-dawo .btn--gold {
  background: linear-gradient(135deg, #f472b6, #fb923c);
  color: #1a0f2e;
  border-radius: 999px;
}

.site-dawo .btn--ghost {
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.35);
}

.site-dawo .hero__banner {
  background: linear-gradient(145deg, rgba(30, 18, 53, 0.95) 0%, rgba(20, 83, 78, 0.35) 50%, rgba(124, 58, 237, 0.2) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 24px;
  margin: 1.25rem auto 0;
  max-width: calc(var(--max) + 2rem);
  overflow: hidden;
}

.site-dawo .hero__slide-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 1.5rem;
}

.site-dawo .hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.site-dawo .hero__art {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.site-dawo .hero__art img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-dawo .hero__title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.25;
  text-align: left;
}

.site-dawo .hero__title em {
  color: #5eead4;
  font-style: normal;
  display: block;
  margin-top: 0.35rem;
}

.site-dawo .stats-bar--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  max-width: var(--max);
  margin: -1.5rem auto 1.5rem;
  position: relative;
  z-index: 2;
}

.site-dawo .stats-bar--cards .stat-item {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: left;
}

.site-dawo .section__eyebrow {
  background: rgba(20, 184, 166, 0.12);
  color: #5eead4;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  display: inline-block;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
}

.site-dawo .section--alt {
  background: linear-gradient(180deg, rgba(30, 18, 53, 0.6), transparent);
}

.site-dawo .game-card {
  border-radius: 20px;
  border: 1px solid rgba(244, 114, 182, 0.2);
  overflow: hidden;
}

.site-dawo .feature-card {
  border-left: 3px solid #7c3aed;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.site-dawo .data-table tr:nth-child(even) td {
  background: rgba(124, 58, 237, 0.06);
}

.site-dawo .on-page-nav a {
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.site-dawo .sticky-cta--dock {
  left: max(1rem, env(safe-area-inset-left, 0px));
  right: auto;
  bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  width: min(calc(100% - 2rem), 400px);
  transform: none;
}

.site-dawo .sticky-cta--dock.is-hidden {
  transform: translateY(calc(100% + 1rem));
  opacity: 0;
  pointer-events: none;
}

.site-dawo .sticky-cta__panel {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 114, 182, 0.35);
  background: linear-gradient(135deg, #1a0f2e, #134e4a);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

.site-dawo .sticky-cta__text {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.3;
}

.site-dawo .sticky-cta__highlight {
  display: inline;
  margin-left: 0.25rem;
}

.site-dawo .sticky-cta__btn {
  grid-column: 2;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
}

.site-dawo .sticky-cta__close {
  grid-column: 3;
}

body.site-dawo.has-sticky-cta .back-to-top.is-visible {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  right: 1rem;
}

@media (max-width: 480px) {
  .site-dawo .sticky-cta--dock {
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
  }
}

.site-dawo .site-footer {
  border-top: 2px solid rgba(20, 184, 166, 0.2);
  background: #0d0618;
}

.site-dawo .faq-item.is-open .faq-item__question {
  color: #5eead4;
}

.site-dawo .section-hero-shot img,
.site-dawo .inline-screenshot img,
.site-dawo .app-download__shot img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.site-dawo .content-block--registration {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .site-dawo .content-block--registration {
    grid-template-columns: 1fr min(42%, 440px);
    align-items: start;
  }
  .site-dawo .inline-screenshot--cutout {
    margin: 0;
    grid-column: 2;
    grid-row: 1 / span 6;
  }
}

.site-dawo .games-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .site-dawo .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-dawo .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-dawo .provider-marquee {
  margin-top: 1.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.site-dawo .payment-marquee .provider-marquee__item img {
  height: 28px;
  max-width: 100px;
  filter: brightness(1.15);
}

.site-dawo .on-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.site-dawo .data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.site-dawo .section-banner__bg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .site-dawo .hero__slide-inner--split {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }
  .site-dawo .hero__art {
    order: -1;
  }
  .site-dawo .stats-bar--cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.5rem;
  }
  .site-dawo .nav-desktop {
    display: none;
  }
}

@media (max-width: 380px) {
  .site-dawo .stats-bar--cards {
    grid-template-columns: 1fr;
  }
}

/* ─── Promo code block (matches content-block / registration) ─── */
.content-block--promo {
  margin: 1.5rem auto 1.75rem;
  max-width: 100%;
}

.content-block--promo .section__subheading--in-block {
  margin: 0 0 0.75rem;
  text-align: left;
}

.promo-block__code-panel {
  margin: 1rem 0 0.85rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.promo-block__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.promo-block__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.promo-block__code {
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px dashed var(--border-strong);
}

.promo-block__copy.is-copied {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.promo-block__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.site-dawo .content-block--promo {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .site-dawo .content-block--promo {
    grid-template-columns: 1fr min(40%, 400px);
    align-items: start;
  }

  .site-dawo .content-block--promo .promo-block__visual {
    margin: 0;
    grid-column: 2;
    grid-row: 1 / span 6;
  }
}

@media (max-width: 479px) {
  .promo-block__code {
    width: 100%;
    text-align: center;
  }

  .promo-block__copy {
    width: 100%;
  }
}
