@charset "UTF-8";

/* =========================================================
   Tokens
   ========================================================= */
:root {
  --ink: #162741;
  --muted: #637186;
  --navy: #122441;
  --blue: #215ed7;
  --line: #e1e7f0;
  --surface: #f5f7fb;
  --white: #fff;
  --radius: 16px;
  --container-width: 1200px;
  --container-pad: 32px;

  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;
  font-synthesis: none;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
}

/* =========================================================
   Base
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 26px;
}

body {
  margin: 0;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #719cff;
  outline-offset: 5px;
  border-radius: 4px;
}

::selection {
  background: #d8e5ff;
  color: #112444;
}

p,
h1,
h2,
h3,
ol,
ul {
  margin: 0;
}

strong,
b {
  font-weight: 700;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.4;
}

h2 {
  font-size: 1.65rem;
  font-weight: 750;
}

h3 {
  font-size: 1.17rem;
  font-weight: 720;
}

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

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 10;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 10px;
}

/* =========================================================
   Intro / hero
   ========================================================= */
.intro {
  background: var(--navy);
  color: #fff;
}

.intro-inner {
  padding: 46px var(--container-pad) 49px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #a8c5f8;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.intro-description {
  color: #c6d2e3;
  font-size: 1rem;
  margin-top: 16px;
  line-height: 1.8;
}

.intro-index {
  border-top: 1px solid #3a4a63;
}

.intro-index a {
  display: flex;
  gap: 19px;
  align-items: center;
  padding: 23px 1px;
  border-bottom: 1px solid #3a4a63;
  font-size: 1.125rem;
  font-weight: 650;
  transition: background 0.15s;
}

.intro-index a:hover {
  background: #1d3353;
}

.index-number {
  font-size: 0.875rem;
  color: #91b5f7;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.index-sub {
  display: block;
  font-size: 0.875rem;
  color: #b8c7dc;
  font-weight: 400;
  margin-top: 4px;
}

.index-arrow {
  margin-left: auto;
  font-size: 1.35rem;
  color: #abc9ff;
}

/* =========================================================
   Layout: sidebar + content
   ========================================================= */
.page-layout {
  padding: 42px var(--container-pad) 0;
  display: grid;
  grid-template-columns: 207px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 36px;
}

.nav-caption {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: #8290a3;
  padding: 0 13px;
  margin: 0 0 14px;
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 0.9rem;
  padding: 10px 13px;
  border-radius: 8px;
  color: #58677d;
  margin: 3px 0;
  transition: background 0.15s, color 0.15s;
}

.side-nav a:hover {
  background: var(--surface);
  color: var(--blue);
}

.side-nav a.active {
  background: #eaf0fd;
  color: var(--blue);
  font-weight: 700;
}

.nav-no {
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: #8895a8;
}

.active .nav-no {
  color: var(--blue);
}

.sidebar-note {
  border-top: 1px solid var(--line);
  margin: 27px 13px 0;
  padding-top: 24px;
}

.small-label {
  font-size: 0.75rem;
  color: #6d7b8f;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.sidebar-note p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 9px;
  line-height: 1.8;
}

.sidebar-note strong {
  font-weight: 600;
  color: #384b67;
}

.sidebar-note a {
  display: block;
  font-size: 0.875rem;
  color: var(--blue);
  margin-top: 14px;
  font-weight: 650;
}

.sidebar-note a span {
  margin-left: 4px;
}

.guide-content {
  min-width: 0;
}

.content-section {
  scroll-margin-top: 24px;
  margin-bottom: 52px;
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  color: var(--blue);
  font-weight: 750;
  margin-bottom: 8px;
}

.section-heading p:not(.section-kicker) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
}

/* =========================================================
   Overview
   ========================================================= */
.journey {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 25px 0 18px;
}

.journey li {
  padding: 17px 18px 19px;
  background: var(--surface);
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.journey-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  margin-bottom: 9px;
}

.journey strong {
  font-size: 1rem;
}

.journey li > span:last-child {
  font-size: 0.875rem;
  color: var(--muted);
}

/* =========================================================
   Callouts
   ========================================================= */
.callout {
  display: flex;
  gap: 12px;
  padding: 15px 17px;
  border-radius: 9px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.callout p {
  margin: 0 !important;
}

.callout-symbol {
  display: inline-flex;
  width: 21px;
  min-width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
  font-weight: 750;
  line-height: 1;
  margin-top: 3px;
}

.callout.info,
.info-box {
  background: #eef4ff;
  color: #345584;
}

.callout.warning,
.warning-box {
  background: #fff7e7;
  color: #7d5715;
  margin-top: 18px;
}

/* =========================================================
   Exchange shortcuts
   ========================================================= */
.exchange-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.exchange-shortcuts a {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 15px;
  font-size: 0.9375rem;
  font-weight: 650;
  transition: background 0.15s, border-color 0.15s;
}

.exchange-shortcuts a:hover {
  background: var(--surface);
  border-color: #bac9de;
}

.exchange-shortcuts a > span:last-child {
  margin-left: auto;
  font-size: 1rem;
  color: #8090a5;
}

.exchange-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.bithumb-dot {
  background: #ef7524;
}

.upbit-dot {
  background: #2459c6;
}

.coinone-dot {
  background: #268bd1;
}

/* =========================================================
   Exchange sections
   ========================================================= */
.exchange-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.exchange-heading {
  padding: 26px 29px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.exchange-monogram {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 1.5rem;
  font-family: Arial, sans-serif;
  font-weight: 750;
}

.bithumb-color {
  background: #ffebdc;
  color: #bb4b05;
}

.upbit-color {
  background: #e1e9fe;
  color: #194dba;
}

.coinone-color {
  background: #dcf0ff;
  color: #066da8;
}

.exchange-heading .section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 1px;
  color: #78869a;
}

.exchange-heading h2 {
  font-size: 1.6rem;
  line-height: 1.3;
}

.exchange-heading h2 span {
  font-size: 1rem;
  font-weight: 450;
  color: #6d7b90;
  letter-spacing: 0;
  margin-left: 4px;
}

.bank-badge {
  margin-left: auto;
  white-space: nowrap;
  display: inline-flex;
  border: 1px solid #dbe3ed;
  background: #fff;
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 0.8125rem;
  color: #596b83;
}

/* =========================================================
   Steps
   ========================================================= */
.steps {
  padding: 0 29px;
}

.step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 17px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e2ef;
  border-radius: 50%;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: #627590;
  font-variant-numeric: tabular-nums;
  margin-top: 3px;
}

.step-body {
  min-width: 0;
}

.step-body > .small-label {
  display: none;
}

.step-body > p {
  margin-top: 10px;
  color: #4d5e75;
  font-size: 1rem;
}

.subtle {
  font-size: 1rem;
  font-weight: 450;
  color: #77869c;
  margin-left: 3px;
}

.instructions {
  margin-top: 13px;
  padding-left: 1.4em;
  color: #4d5e75;
  font-size: 1rem;
}

.instructions li {
  padding-left: 4px;
  margin: 8px 0;
}

.instructions li::marker {
  color: #71849e;
  font-weight: 500;
}

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

.resource-links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 17px;
}

.resource-links a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.6;
  min-height: 32px;
  text-decoration: underline;
  text-decoration-color: #c7d6f0;
  text-underline-offset: 4px;
}

.resource-links a:hover {
  text-decoration-color: var(--blue);
}

.resource-links.stacked {
  flex-direction: column;
  gap: 8px;
}

.resource-links .video-link {
  color: #516581;
  font-weight: 550;
}

.resource-links .video-link > span:first-child {
  font-size: 1rem;
  text-decoration: none;
}

.menu-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 9px;
  font-size: 0.875rem;
  background: var(--surface);
  padding: 13px 15px;
  border: 1px solid #e5eaf3;
  border-radius: 8px;
  margin: 14px 0;
  line-height: 1.65;
  font-weight: 550;
  color: #4c6282;
}

.menu-path b {
  font-size: 1rem;
  font-weight: 400;
  color: #99a8bc;
}

.inline-note {
  border-left: 3px solid #b5caf1;
  padding: 2px 0 2px 15px;
  margin-top: 19px;
}

.inline-note > strong {
  font-size: 0.9375rem;
  color: #34527c;
}

.inline-note p {
  font-size: 0.9375rem;
  color: #617088;
  line-height: 1.75;
  margin-top: 5px;
}

.step-body > p.detail-note {
  font-size: 0.875rem;
  color: #758196;
  line-height: 1.8;
  margin-top: 17px;
}

/* =========================================================
   Precautions
   ========================================================= */
.precautions {
  padding: 2px 0 5px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 25px;
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.check-mark {
  color: var(--blue);
  font-weight: 750;
  font-size: 1rem;
  margin-top: 0;
}

.check-list h3 {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.check-list p {
  font-size: 0.9375rem;
  color: #67768b;
  margin-top: 7px;
  line-height: 1.75;
}

/* =========================================================
   MetaMask section
   ========================================================= */
.metamask-section {
  border: 1px solid #d9e1ed;
  border-radius: var(--radius);
  overflow: hidden;
}

.wallet-heading {
  background: var(--navy);
  color: #fff;
  padding: 29px;
}

.wallet-heading .section-kicker {
  color: #b7d0ff;
}

.wallet-heading h2 {
  font-size: 1.65rem;
}

.wallet-heading > p:not(.section-kicker) {
  font-size: 1rem;
  color: #c7d3e7;
  margin-top: 12px;
  max-width: 490px;
}

.network-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.network-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #223c62;
  border: 1px solid #425777;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 0.8125rem;
  color: #c3d1e5;
}

.network-tags strong {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 650;
}

.network-notice {
  padding: 21px 29px;
  background: #edf3ff;
  border-bottom: 1px solid #dce5f4;
}

.network-notice > strong {
  font-size: 0.9375rem;
  color: #315688;
}

.network-notice p {
  font-size: 0.9375rem;
  color: #587092;
  margin-top: 6px;
  line-height: 1.8;
}

.wallet-steps .step-number {
  color: var(--blue);
  background: #eef3ff;
  border-color: #dce5f9;
}

.wallet-bottom {
  display: flex;
  gap: 13px;
  background: #fff8ea;
  border-top: 1px solid #f1e5cc;
  padding: 23px 29px;
  color: #916512;
}

.wallet-bottom h3 {
  font-size: 1rem;
  letter-spacing: -0.025em;
  color: #7a5719;
}

.wallet-bottom p {
  font-size: 0.9375rem;
  margin-top: 7px;
  color: #896b34;
}

/* =========================================================
   Footers
   ========================================================= */
.guide-footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 26px 0 50px;
  color: var(--muted);
  font-size: 0.875rem;
}

.source-note {
  font-size: 0.8125rem;
  color: #7c899b;
  line-height: 1.8;
  margin-top: 12px;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 0.875rem;
  font-weight: 650;
  color: #3d5679;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.back-top:hover {
  background: var(--surface);
}

/* Floating back-to-top control */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 6;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #3d5679;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, background 0.15s;
}

.to-top[hidden] {
  display: none;
}

.to-top.is-visible {
  opacity: 1;
  transform: none;
}

.to-top:hover {
  background: var(--surface);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 1400px) {
  .page-layout {
    gap: 65px;
    grid-template-columns: 215px minmax(0, 1fr);
  }
}

@media (max-width: 950px) {
  .page-layout {
    grid-template-columns: 167px minmax(0, 1fr);
    gap: 26px;
    padding: 32px 24px 0;
  }

  .intro-inner {
    padding-left: 24px;
    padding-right: 24px;
    gap: 35px;
  }

  .journey li {
    padding: 14px 13px;
  }

  .steps {
    padding: 0 22px;
  }

  .exchange-heading,
  .wallet-heading {
    padding: 23px 22px;
  }

  .step {
    gap: 13px;
  }

  .sidebar-note {
    margin-left: 11px;
    margin-right: 6px;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .network-notice {
    padding: 20px 22px;
  }

  .wallet-bottom {
    padding: 21px 22px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 33px 22px 30px;
  }

  .eyebrow {
    margin-bottom: 13px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.32;
  }

  .intro-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 15px;
  }

  .intro-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .intro-index a {
    padding: 18px 0 0;
    border-bottom: 0;
    gap: 9px;
    font-size: 0.9375rem;
    align-items: flex-start;
  }

  .index-number {
    font-size: 0.75rem;
    margin-top: 2px;
  }

  .index-sub {
    font-size: 0.75rem;
    margin-top: 5px;
  }

  .index-arrow {
    font-size: 1rem;
    margin-top: 0;
  }

  .page-layout {
    display: block;
    padding: 0 20px;
    position: relative;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 4;
    margin: 0 -20px 29px;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .side-nav {
    display: flex;
    overflow-x: auto;
    gap: 2px;
    padding: 8px 16px;
    scrollbar-width: none;
  }

  .side-nav::-webkit-scrollbar {
    display: none;
  }

  .side-nav a {
    white-space: nowrap;
    padding: 9px 12px;
    margin: 0;
    font-size: 0.875rem;
    flex: 0 0 auto;
    border-radius: 6px;
    min-height: 40px;
  }

  .nav-caption,
  .nav-no,
  .sidebar-note {
    display: none;
  }

  .content-section {
    margin-bottom: 36px;
    scroll-margin-top: 8px;
  }

  h2 {
    font-size: 1.45rem;
  }

  .section-heading p:not(.section-kicker) {
    font-size: 0.9375rem;
  }

  .journey {
    gap: 8px;
    margin-top: 21px;
  }

  .journey li {
    padding: 13px 11px 15px;
    border-radius: 8px;
  }

  .journey strong {
    font-size: 0.9375rem;
  }

  .journey li > span:last-child {
    font-size: 0.8125rem;
  }

  .journey-number {
    margin-bottom: 6px;
    font-size: 0.8125rem;
  }

  .callout {
    padding: 13px 14px;
    font-size: 0.875rem;
    gap: 10px;
  }

  .exchange-shortcuts {
    gap: 8px;
    margin-top: 16px;
  }

  .exchange-shortcuts a {
    font-size: 0.875rem;
    padding: 10px 12px;
    gap: 7px;
  }

  .exchange-heading {
    gap: 12px;
    padding: 20px;
  }

  .exchange-monogram {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    border-radius: 11px;
  }

  .exchange-heading h2 {
    font-size: 1.4rem;
  }

  .exchange-heading h2 span {
    font-size: 0.875rem;
  }

  .bank-badge {
    font-size: 0.75rem;
    padding: 3px 7px;
  }

  .steps {
    padding: 0 19px;
  }

  .step {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 12px;
    padding: 23px 0;
  }

  .step-number {
    width: 27px;
    height: 27px;
    font-size: 0.75rem;
    margin-top: 2px;
  }

  h3 {
    font-size: 1.08rem;
  }

  .step-body > p,
  .instructions {
    font-size: 1rem;
    line-height: 1.8;
  }

  .instructions {
    padding-left: 1.2em;
  }

  .instructions li {
    padding-left: 2px;
  }

  .resource-links {
    gap: 8px 15px;
  }

  .resource-links a {
    font-size: 0.875rem;
  }

  .menu-path {
    padding: 11px 12px;
    font-size: 0.875rem;
    gap: 3px 7px;
  }

  .inline-note {
    padding-left: 12px;
  }

  .check-list {
    gap: 23px;
  }

  .check-list h3 {
    font-size: 1rem;
  }

  .check-list p {
    font-size: 0.9375rem;
  }

  .wallet-heading {
    padding: 24px 20px;
  }

  .wallet-heading h2 {
    font-size: 1.45rem;
  }

  .wallet-heading > p:not(.section-kicker) {
    font-size: 0.9375rem;
  }

  .network-notice {
    padding: 19px 20px;
  }

  .wallet-bottom {
    padding: 20px;
  }

  .guide-footer {
    padding-bottom: 32px;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 380px) {
  .page-layout {
    padding: 0 16px;
  }

  .sidebar {
    margin-left: -16px;
    margin-right: -16px;
  }

  .journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro-index {
    gap: 10px;
  }

  .index-number {
    display: none;
  }

  .bank-badge {
    margin-left: 54px;
    margin-top: -8px;
  }

  .exchange-heading {
    padding: 19px 17px;
  }

  .step {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .step-number {
    display: none;
  }

  .step-body > .small-label {
    display: block;
    margin-bottom: 5px;
  }

  .steps {
    padding: 0 17px;
  }

  .exchange-shortcuts a {
    padding: 9px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

@media print {
  .sidebar,
  .intro-index,
  .exchange-shortcuts,
  .back-top,
  .to-top {
    display: none;
  }

  .intro {
    background: #fff;
    color: #000;
  }

  .intro-inner {
    padding: 20px 0;
    display: block;
  }

  .intro-description,
  .eyebrow {
    color: #333;
  }

  .page-layout {
    display: block;
    padding: 0;
  }

  .content-section {
    margin-bottom: 25px;
    break-inside: auto;
  }

  .step {
    break-inside: avoid;
  }

  .wallet-heading {
    background: #eee;
    color: #000;
  }

  .wallet-heading > p:not(.section-kicker),
  .wallet-heading .section-kicker {
    color: #333;
  }

  .network-tags span {
    background: #fff;
    color: #333;
  }

  .network-tags strong {
    color: #000;
  }

  .guide-footer {
    padding-bottom: 0;
  }

  a {
    color: #153e85;
  }

  html {
    scroll-padding-top: 0;
  }
}
