/* Claim & Verify / update-info guide — [bs_update_info] shortcode
 * (update-coin 150173/150184/150195 + exchange/wallet siblings).
 * Brand language shared with bs-faq.css / bs-about-page.css:
 * cyan family #1DB0E1 / #206389 / #9AE0F7 / #e8f7fc, #171717 headings.
 * Dark mode scoped under html.bs-dark.
 */

.bs-ui {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 20px;
  font-family: inherit;
  color: #1f2937;
}

/* ── Hero band (full-bleed) ─────────────────────────────── */
.bs-ui-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(180deg, #e8f7fc 0%, #f4fbfe 100%);
}
.bs-ui-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px 20px 46px;
}
.bs-ui-breadcrumb {
  font-size: 14px;
  color: #206389;
  margin: 0 0 14px;
}
.bs-ui-breadcrumb a { color: #206389; text-decoration: none; }
.bs-ui-breadcrumb a:hover { text-decoration: underline; }
.bs-ui-breadcrumb-sep { margin: 0 7px; color: #9AE0F7; }
.bs-ui-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #171717;
  margin: 0 0 12px;
}
.bs-ui-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: #555;
  max-width: 680px;
  margin: 0;
}

/* ── Step rows ──────────────────────────────────────────── */
.bs-ui-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0 44px;
}
.bs-ui-step {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid #e2eef5;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(23, 23, 23, 0.04);
  padding: 28px 30px;
}
.bs-ui-step-num {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e8f7fc;
  color: #206389;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bs-ui-step-title {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #171717;
  margin: 0 0 10px;
}
.bs-ui-step-body {
  font-size: 15px;
  line-height: 1.7;
  color: #44515c;
  margin: 0;
}
.bs-ui-step-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #1DB0E1;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 176, 225, 0.3);
}
.bs-ui-step-link:hover { border-bottom-color: #1DB0E1; }

/* Screenshot figure + enlarge hint */
.bs-ui-shot { margin: 0; }
.bs-ui-shot-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid #dbe9f1;
  border-radius: 12px;
  background: #f8fcfe;
  overflow: hidden;
  cursor: zoom-in;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bs-ui-shot-btn img {
  display: block;
  width: 100%;
  height: auto;
}
.bs-ui-shot-btn:hover {
  border-color: #9AE0F7;
  box-shadow: 0 8px 20px rgba(29, 176, 225, 0.12);
}
.bs-ui-shot-btn:focus-visible {
  outline: 2px solid #1DB0E1;
  outline-offset: 2px;
}
.bs-ui-shot-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.bs-ui-shot-hint svg { width: 13px; height: 13px; }
.bs-ui-shot-btn:hover .bs-ui-shot-hint { opacity: 1; }

/* ── Info-note cards ────────────────────────────────────── */
.bs-ui-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bs-ui-note {
  background: #fff;
  border: 1px solid #e2eef5;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(23, 23, 23, 0.04);
  padding: 20px;
}
.bs-ui-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f7fc;
  color: #1DB0E1;
  margin-bottom: 10px;
}
.bs-ui-note-icon svg { width: 20px; height: 20px; }
.bs-ui-note-title {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  margin: 0 0 6px;
}
.bs-ui-note-text {
  font-size: 14px;
  line-height: 1.6;
  color: #44515c;
  margin: 0;
}
.bs-ui-note-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1DB0E1;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 176, 225, 0.3);
}
.bs-ui-note-link:hover { border-bottom-color: #1DB0E1; }

/* ── Lightbox ───────────────────────────────────────────── */
.bs-ui-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(10, 14, 20, 0.86);
  cursor: zoom-out;
}
.bs-ui-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #fff;
}
.bs-ui-lightbox-close {
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .bs-ui-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }
  .bs-ui-notes { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .bs-ui-hero-inner { padding: 30px 20px 36px; }
  .bs-ui-title { font-size: 28px; }
  .bs-ui-subtitle { font-size: 15px; }
  .bs-ui-steps { gap: 16px; margin: 28px 0 32px; }
  .bs-ui-step-title { font-size: 19px; }
  .bs-ui-step-body { font-size: 14px; }
}

/* ── Dark mode (theme uses html.bs-dark to scope) ───────── */
html.bs-dark .bs-ui { color: #d1d5db; }
html.bs-dark .bs-ui-hero {
  background: linear-gradient(180deg, #1a1a30 0%, #16162a 100%);
}
html.bs-dark .bs-ui-breadcrumb,
html.bs-dark .bs-ui-breadcrumb a { color: #9AE0F7; }
html.bs-dark .bs-ui-breadcrumb-sep { color: #3b6a80; }
html.bs-dark .bs-ui-title { color: #f9fafb; }
html.bs-dark .bs-ui-subtitle { color: #9ca3af; }
html.bs-dark .bs-ui-step,
html.bs-dark .bs-ui-note {
  background: #1e1e32;
  border-color: #2a2a44;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
html.bs-dark .bs-ui-step-num {
  background: #1d3a4d;
  color: #9AE0F7;
}
html.bs-dark .bs-ui-step-title,
html.bs-dark .bs-ui-note-title { color: #f9fafb; }
html.bs-dark .bs-ui-step-body,
html.bs-dark .bs-ui-note-text { color: #cbd5e1; }
html.bs-dark .bs-ui-step-link,
html.bs-dark .bs-ui-note-link {
  color: #60c8ec;
  border-bottom-color: rgba(96, 200, 236, 0.35);
}
html.bs-dark .bs-ui-shot-btn {
  border-color: #2a2a44;
  background: #16162a;
}
html.bs-dark .bs-ui-shot-btn:hover { border-color: #3b6a80; }
html.bs-dark .bs-ui-note-icon {
  background: #1d3a4d;
  color: #9AE0F7;
}
