@import url("/import/css/import.css?v=1");

.page { max-width: 560px; }

.guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.guide-nav a {
  flex: 1 1 calc(50% - 5px);
  min-width: 140px;
  text-decoration: none;
  text-align: center;
  padding: 12px 10px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(0, 210, 255, .08);
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}

.guide-nav a:hover,
.guide-nav a.active {
  box-shadow: var(--glow-cyan);
  color: var(--cyan);
}

.steps { display: flex; flex-direction: column; gap: 14px; }

.step {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.step p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

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

.step-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.step-actions a.btn {
  text-decoration: none;
}

.callout {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(191, 0, 255, .08);
  border: 1px solid rgba(191, 0, 255, .25);
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.support-box {
  margin-top: 16px;
  text-align: center;
}

.support-box a {
  color: var(--cyan);
  text-decoration: none;
}

.support-box a:hover { text-decoration: underline; }
