/* ─────────────────────────────────────────────────────
   Firestick guide page
───────────────────────────────────────────────────── */

.fs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
}

.fs-logo {
  max-width: 120px;
  height: auto;
  display: block;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--clr-muted-2);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: color .15s;
}

.back-link:hover { color: var(--clr-text); }

/* ─── Guide hero ─── */
.firestick-guide {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.guide-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 16px 36px;
  text-align: center;
}

.guide-hero__icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 16px rgba(255,107,53,.5));
  line-height: 1;
}

.guide-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  letter-spacing: .06em;
  color: #fff;
  line-height: 1;
}

.guide-sub {
  font-size: .9rem;
  color: var(--clr-muted-2);
}

/* ─── Steps ─── */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  gap: 18px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color .2s;
}

.step:hover {
  border-color: rgba(255,107,53,.3);
}


.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #d94e20);
  box-shadow: 0 0 14px rgba(255,107,53,.4);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.step-body p {
  color: var(--clr-muted-2);
  font-size: .9rem;
  line-height: 1.65;
}

.step-body p + p { margin-top: 6px; }

.step-body strong { color: var(--clr-text); }

/* ─── Code highlight ─── */
.code-highlight {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 10vw, 3.6rem);
  letter-spacing: .2em;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(217,78,32,.08));
  border: 1px solid rgba(255,107,53,.35);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  margin: 12px 0 8px;
  text-shadow: 0 0 20px rgba(255,107,53,.5);
}

.code-note {
  font-size: .82rem;
  color: var(--clr-muted);
  font-style: italic;
}
