/* =====================================================================
   Shared styles for all pages. Tailwind CDN handles utility classes;
   this file holds the design-system bits (header, footer, cards, ads).
   Mobile-first.
===================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #f4f8ff;
  color: #0f172a;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: #0b5cff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5px;
}

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  display: none;
}
.hdr-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  text-decoration: none;
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0b5cff, #22d3ee);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(11, 92, 255, 0.25);
  flex: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-size: 16px;
  font-weight: 900;
}
.brand-tag {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  margin-top: 2px;
}
.hdr-progress {
  display: none;
  flex: 1;
  max-width: 360px;
}
.hdr-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
}
.hdr-progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}
.hdr-progress-bar > div {
  height: 100%;
  background: linear-gradient(90deg, #0b5cff, #22d3ee, #10b981);
  border-radius: 999px;
  transition: width 0.5s;
}
.hdr-progress-mobile {
  height: 3px;
  background: #e2e8f0;
}
.hdr-progress-mobile > div {
  height: 100%;
  background: linear-gradient(90deg, #0b5cff, #22d3ee, #10b981);
  transition: width 0.5s;
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #0b5cff;
  border: 1px solid #dbeafe;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.cc-pill:hover {
  background: #dbeafe;
  text-decoration: none;
}
.cc-pill span {
  display: none;
}
.score-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #d1fae5;
  font-size: 12px;
  font-weight: 800;
}
@media (min-width: 780px) {
  .hdr-progress {
    display: block;
  }
  .hdr-progress-mobile {
    display: none;
  }
  .cc-pill span {
    display: inline;
  }
  .hdr-inner {
    height: 72px;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-tag {
    font-size: 11px;
  }
}

/* ---------- Page card ---------- */
main {
  padding: 18px 0 30px;
  position: relative;
  overflow: hidden;
}
main::before,
main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
main::before {
  width: 280px;
  height: 280px;
  background: rgba(11, 92, 255, 0.18);
  top: 30px;
  left: -80px;
}
main::after {
  width: 320px;
  height: 320px;
  background: rgba(34, 211, 238, 0.18);
  bottom: 30px;
  right: -80px;
}
.page-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ffffff;
  backdrop-filter: blur(8px);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  padding: 15px 12px;
  position: relative;
  overflow: hidden;
  animation: fade 0.35s ease both;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 640px) {
  .page-card {
    padding: 32px;
  }
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.badge-blue {
  background: #eff6ff;
  color: #0b5cff;
  border: 1px solid #dbeafe;
}
.badge-amber {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}
.badge-green {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #d1fae5;
}

h1.page-h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.4px;
}
@media (min-width: 640px) {
  h1.page-h1 {
    font-size: 38px;
  }
}
@media (min-width: 960px) {
  h1.page-h1 {
    font-size: 46px;
  }
}
.page-lead {
  margin-top: 12px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .page-lead {
    font-size: 17px;
  }
}

h2.page-h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.3px;
}
@media (min-width: 640px) {
  h2.page-h2 {
    font-size: 30px;
  }
}
.page-sub {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.18s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(90deg, #0b5cff, #22d3ee);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 92, 255, 0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-primary:active {
  transform: scale(0.97);
}
.btn-secondary {
  background: #fff;
  border-color: #e2e8f0;
  color: #334155;
}
.btn-secondary:hover {
  border-color: #0b5cff;
  color: #0b5cff;
  background: #f8fafc;
  text-decoration: none;
}
.btn-row {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 560px) {
  .btn-row {
    grid-template-columns: 1fr 1fr;
  }
}
.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/* ---------- Country switcher ---------- */
.cc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #334155;
  font-weight: 700;
  font-size: 12.5px;
}
.cc-chip:hover {
  border-color: #0b5cff;
  color: #0b5cff;
}
.cc-chip.active {
  background: #0b5cff;
  color: #fff;
  border-color: #0b5cff;
}

/* ---------- Bank grid ---------- */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
@media (min-width: 640px) {
  .bank-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (min-width: 960px) {
  .bank-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.bank-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-align: left;
  position: relative;
  transition: 0.18s;
  min-height: 130px;
}
.bank-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px rgba(11, 92, 255, 0.1);
}
.bank-card.is-selected {
  background: #eff6ff;
  border-color: #0b5cff;
  box-shadow: 0 0 0 4px #dbeafe;
}
.bank-rank {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 800;
  color: #0b5cff;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 3px 7px;
  border-radius: 8px;
}
.bank-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b5cff, #22d3ee);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bank-name {
  font-weight: 800;
  font-size: 13.5px;
  color: #0f172a;
  line-height: 1.25;
}
.bank-meta {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}
.bank-care {
  font-size: 11px;
  color: #0b5cff;
  font-weight: 700;
}
.muted {
  color: #64748b;
  font-size: 14px;
  text-align: center;
  padding: 24px 0;
}

/* ---------- Bank summary ---------- */
.summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  margin-top: 14px;
}
.summary-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b5cff, #22d3ee);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.summary-title {
  font-weight: 900;
  color: #0f172a;
  font-size: 16px;
}
.summary-meta {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
  margin-top: 2px;
}

/* ---------- Method cards ---------- */
.method-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.method-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-align: left;
  transition: 0.18s;
  width: 100%;
}
.method-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px rgba(11, 92, 255, 0.1);
}
.method-card.is-selected {
  background: #eff6ff;
  border-color: #0b5cff;
  box-shadow: 0 0 0 4px #dbeafe;
}
.method-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eff6ff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.method-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.method-title {
  font-weight: 900;
  font-size: 15px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}
.method-tag {
  font-size: 10px;
  background: #ecfdf5;
  color: #047857;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid #d1fae5;
}
.method-desc {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}
.method-arrow {
  color: #94a3b8;
  font-size: 20px;
  font-weight: 900;
}

/* ---------- Steps ---------- */
.steps-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.steps-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b5cff, #22d3ee);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.steps-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .steps-title {
    font-size: 26px;
  }
}
.steps-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}
.steps-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.steps-list li {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f8fafc, #eff6ff);
  border: 1px solid #e2e8f0;
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0b5cff;
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.step-title {
  font-weight: 800;
  color: #0f172a;
  font-size: 14.5px;
}
.step-desc {
  font-size: 13.5px;
  color: #475569;
  margin-top: 3px;
  line-height: 1.5;
}
.steps-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.info-tile {
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
}
.info-lbl {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-val {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  display: block;
  margin-top: 4px;
  word-break: break-word;
}

/* ---------- Mini ---------- */
.mini-card {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 6px;
}
.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 13.5px;
}
.mini-row:last-child {
  border-bottom: none;
}
.mini-row .lbl {
  color: #64748b;
  font-weight: 700;
  flex: none;
}
.mini-row .val {
  color: #0f172a;
  font-weight: 800;
  text-align: right;
  word-break: break-word;
}

/* ---------- Tools ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
@media (min-width: 640px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
.tool-card {
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: 0.18s;
}
.tool-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px rgba(11, 92, 255, 0.1);
}
.tool-ico {
  font-size: 28px;
}
.tool-title {
  font-weight: 900;
  font-size: 15px;
  color: #0f172a;
  margin-top: 8px;
}
.tool-desc {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 3px;
}

/* ---------- Safety ---------- */
.safety-card {
  margin-top: 14px;
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
  border: 1px solid #fed7aa;
  border-radius: 18px;
  padding: 18px;
}
.safety-card h2 {
  color: #9a3412;
}
.safety-tips {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.safety-tips li {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: 14px;
  font-weight: 700;
  color: #7c2d12;
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ---------- Finish ---------- */
.finish {
  text-align: center;
  padding: 8px 0;
}
.finish-ico {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: linear-gradient(135deg, #10b981, #22c55e);
  color: #fff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.32);
}
.score-card {
  margin-top: 18px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 16px;
  padding: 16px;
  display: inline-block;
  min-width: 200px;
}
.score-num {
  font-size: 42px;
  font-weight: 900;
  color: #047857;
}
.score-lbl {
  font-size: 12px;
  font-weight: 800;
  color: #065f46;
  margin-top: 2px;
}

/* ---------- Quick stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.stat-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
}
.stat-tile b {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #0b5cff;
}
.stat-tile span {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  margin-top: 2px;
}

/* ---------- Question (mobile/service pages) ---------- */
.q-visual {
  margin-top: 18px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
.q-visual-emoji {
  font-size: 64px;
  line-height: 1;
}
.q-visual-title {
  font-weight: 900;
  margin-top: 12px;
  color: #0f172a;
}
.q-visual-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* ---------- Analyze ---------- */
.analyze-card {
  margin-top: 18px;
  background: #0b1220;
  color: #fff;
  border-radius: 22px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.analyze-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.32);
  filter: blur(60px);
  top: -60px;
  right: -60px;
}
.analyze-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
}
@media (min-width: 640px) {
  .analyze-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.analyze-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
}
.analyze-tile-ico {
  font-size: 24px;
}
.analyze-tile-t {
  font-weight: 900;
  font-size: 13px;
  margin-top: 8px;
}
.analyze-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  margin-top: 10px;
  overflow: hidden;
}
.analyze-bar div {
  height: 100%;
  background: #22d3ee;
  border-radius: 99px;
}

/* ---------- Unlock ---------- */
.unlock-wrap {
  text-align: center;
}
.unlock-ico {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b5cff, #22d3ee);
  color: #fff;
  font-size: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 16px 32px rgba(11, 92, 255, 0.3);
}
.unlock-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  text-align: left;
}
.unlock-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
}

/* ---------- Ads ---------- */
.ad-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: auto;

  /* padding: 0 16px; */
}
.ad-wrap.ad-test {
  background: #f8fafc;
  /* border: 1px dashed #94a3b8; */
  border-radius: 0px;
  padding: 18px;
  text-align: center;
  color: #64748b;
}
.ad-tag {
  display: inline-block;
  background: #0b5cff;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.ad-text {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  margin-top: 8px;
}
.ad-note {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}
.ad-note code {
  background: #e2e8f0;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
}

/* ---------- Footer ---------- */
#site-footer {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 24px 16px;
  margin-top: 30px;
}
.ftr-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #64748b;
  font-size: 12.5px;
}
.ftr-disc {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}
.ftr-disc strong {
  color: #0f172a;
}
.ftr-nav {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.ftr-nav a {
  color: #0b5cff;
  font-weight: 700;
  font-size: 12px;
}
.ftr-copy {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 11px;
}

.link-strong {
  font-weight: 800;
  color: #0b5cff;
}

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: light) {
  body {
    background: #0b1220;
    color: #e2e8f0;
  }
  #site-header {
    background: rgba(15, 23, 42, 0.85);
    border-bottom-color: #1e293b;
  }
  .brand {
    color: #e2e8f0;
  }
  .brand-tag {
    color: #94a3b8;
  }
  .cc-pill {
    background: #1e293b;
    color: #7dd3fc;
    border-color: #1e3a8a;
  }
  .score-pill {
    background: #064e3b;
    color: #a7f3d0;
    border-color: #065f46;
  }
  .hdr-progress-row {
    color: #94a3b8;
  }
  .hdr-progress-bar,
  .hdr-progress-mobile {
    background: #1e293b;
  }
  .page-card {
    background: rgba(15, 23, 42, 0.85);
    border-color: #1e293b;
    box-shadow: none;
  }
  h1.page-h1,
  h2.page-h2,
  .summary-title,
  .steps-title,
  .method-title,
  .bank-name,
  .tool-title,
  .step-title,
  .mini-row .val,
  .info-val,
  .q-visual-title {
    color: #f1f5f9;
  }
  .page-lead,
  .page-sub,
  .summary-meta,
  .steps-sub,
  .method-desc,
  .tool-desc,
  .step-desc,
  .mini-row .lbl,
  .info-lbl,
  .q-visual-sub {
    color: #94a3b8;
  }
  .badge-blue {
    background: #1e3a8a;
    color: #bfdbfe;
    border-color: #1e3a8a;
  }
  .badge-amber {
    background: #78350f;
    color: #fde68a;
    border-color: #78350f;
  }
  .badge-green {
    background: #064e3b;
    color: #a7f3d0;
    border-color: #065f46;
  }
  .btn-secondary {
    background: #0f172a;
    border-color: #1e293b;
    color: #cbd5e1;
  }
  .btn-secondary:hover {
    background: #1e293b;
    color: #7dd3fc;
    border-color: #1e3a8a;
  }
  .bank-card,
  .method-card,
  .summary {
    background: #0f172a;
    border-color: #1e293b;
  }
  .bank-card.is-selected,
  .method-card.is-selected,
  .summary {
    background: #1e3a8a;
    border-color: #3b82f6;
  }
  .bank-rank {
    background: #1e3a8a;
    color: #bfdbfe;
    border-color: #1e3a8a;
  }
  .bank-meta {
    color: #94a3b8;
  }
  .stat-tile,
  .tool-card,
  .info-tile,
  .mini-card,
  .unlock-tile {
    background: #0f172a;
    border-color: #1e293b;
  }
  .steps-list li {
    background: linear-gradient(90deg, #0f172a, #0b1220);
    border-color: #1e293b;
  }
  .q-visual {
    background: linear-gradient(135deg, #0f172a, #0b1220);
    border-color: #1e293b;
  }
  .safety-card {
    background: linear-gradient(135deg, #451a03, #450a0a);
    border-color: #9a3412;
  }
  .safety-card h2 {
    color: #fed7aa;
  }
  .safety-tips li {
    background: #0f172a;
    border-color: #78350f;
    color: #fdba74;
  }
  .score-card {
    background: #064e3b;
    border-color: #065f46;
  }
  .score-num {
    color: #a7f3d0;
  }
  .score-lbl {
    color: #6ee7b7;
  }
  #site-footer {
    background: #0f172a;
    border-top-color: #1e293b;
  }
  .ftr-inner,
  .ftr-copy {
    color: #94a3b8;
  }
  .ad-wrap.ad-test {
    background: #0f172a;
    border-color: #475569;
    color: #94a3b8;
  }
  .ad-text {
    color: #cbd5e1;
  }
  .ad-note code {
    background: #1e293b;
  }
  .cc-chip {
    background: #0f172a;
    border-color: #1e293b;
    color: #cbd5e1;
  }
}
