.overlay-setup-guide {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(12, 12, 16, 0.96), rgba(27, 20, 24, 0.92)),
    radial-gradient(circle at top left, rgba(190, 38, 57, 0.18), transparent 34rem);
}

.overlay-setup-guide .head {
  align-items: flex-start;
  gap: 1rem;
}

.overlay-setup-guide-title p {
  margin: 0.35rem 0 0;
  color: var(--muted, #b9b5bc);
}

.overlay-setup-guide-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-family: 'Barlow Condensed', var(--font-display, sans-serif);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overlay-setup-guide .body {
  display: grid;
  gap: 1rem;
}

.overlay-setup-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.overlay-setup-guide-stat {
  min-height: 5.25rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.24);
}

.overlay-setup-guide-stat span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted, #b9b5bc);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overlay-setup-guide-stat strong {
  display: block;
  color: #fff;
  font-family: 'Barlow Condensed', var(--font-display, sans-serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.overlay-setup-guide-stat em {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-style: normal;
}

.overlay-setup-guide-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
}

.overlay-setup-guide-steps li + li {
  margin-top: 0.45rem;
}

.overlay-setup-guide-note {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-left: 3px solid rgba(190, 38, 57, 0.9);
  border-radius: 0.8rem;
  background: rgba(190, 38, 57, 0.11);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 780px) {
  .overlay-setup-guide-grid {
    grid-template-columns: 1fr;
  }

  .overlay-setup-guide .head {
    flex-direction: column;
  }
}
