/* ===== Player Guide page ===== */

.main-nav a.active { color: var(--leaf-dark); border-bottom: 2px solid var(--orange); padding-bottom: 4px; }

.guide-hero {
  background: linear-gradient(180deg, var(--sky) 0%, #E3F3D9 60%, var(--bg) 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.guide-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 54px);
  color: var(--leaf-dark);
  margin: 0 0 14px;
}
.guide-hero .hero-copy {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-soft);
}

.section-alt { background: var(--bg-alt); }
.section .section-sub { margin-bottom: 32px; }

/* Steps */
.guide-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.guide-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
}
.guide-step-icon {
  font-size: 30px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--leaf-light));
  margin-bottom: 14px;
}
.guide-step h3 { font-size: 17px; color: var(--leaf-dark); margin: 0 0 6px; }
.guide-step p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* Progression ladder */
.progression-ladder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 620px;
}
.progression-rung {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.progression-rung-badge {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.progression-rung h3 { margin: 0; font-size: 16px; color: var(--leaf-dark); font-family: var(--font-head); }
.progression-rung p { margin: 2px 0 0; font-size: 13.5px; color: var(--text-soft); }
.progression-rung-final { border: 2px solid var(--orange); }
.progression-rung-final .progression-rung-badge { background: linear-gradient(135deg, var(--sun-gold), var(--orange)); color: #422900; }

/* Badges */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.badge-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.badge-emoji { font-size: 30px; display: block; margin-bottom: 10px; }
.badge-card h3 { font-size: 15px; color: var(--leaf-dark); margin: 0 0 6px; font-family: var(--font-head); }
.badge-card p { font-size: 13px; color: var(--text-soft); margin: 0; }

@media (max-width: 900px) {
  .guide-steps { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .badge-grid { grid-template-columns: 1fr; }
}
