/* ========== Hand-drawn Style Usage Guide ========== */

.guide-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.guide-box {
  background: #faf6ed;
  border: 3px double #b8956a;
  border-radius: 4px;
  width: 100%; max-width: 640px; max-height: 85vh;
  overflow-y: auto; padding: 32px 28px 24px;
  position: relative;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 0 0 1px #e8dcc8;
  transform: rotate(-0.3deg);
}
.guide-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none;
  font-size: 28px; cursor: pointer; color: #8B7355;
  line-height: 1; padding: 4px;
  font-family: 'Kalam', cursive;
  transition: transform 0.15s;
}
.guide-close:hover { transform: scale(1.2); color: #5a3e1b; }
.guide-title {
  font-family: 'Kalam', cursive;
  font-size: 26px; font-weight: 700;
  color: #5a3e1b; text-align: center;
  margin: 0 0 24px; padding-bottom: 12px;
  border-bottom: 2px dashed #d4b896;
}
.guide-sections {
  display: flex; flex-direction: column; gap: 20px;
}
.guide-section {
  background: rgba(255,255,255,0.6);
  border: 2px solid #e0cdb4;
  border-radius: 3px;
  padding: 16px 18px 14px;
  position: relative;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 2px 2px 0 #d4b896;
}
.guide-section:nth-child(odd) { --rot: -0.5deg; }
.guide-section:nth-child(even) { --rot: 0.4deg; }
.guide-section-icon {
  font-size: 28px; margin-bottom: 4px;
}
.guide-section h3 {
  font-family: 'Kalam', cursive;
  font-size: 18px; font-weight: 700;
  color: #6b4f2e; margin: 0 0 8px;
}
.guide-section p {
  font-family: 'Kalam', cursive;
  font-size: 15px; font-weight: 300;
  line-height: 1.7; color: #4a3a28;
  margin: 0;
}
.guide-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: #e8d5b8; color: #6b4f2e;
  padding: 1px 8px; border-radius: 3px;
  vertical-align: middle; margin-left: 4px;
  font-family: 'Kalam', cursive;
}
.guide-footer {
  font-family: 'Kalam', cursive;
  font-size: 14px; color: #8B7355;
  text-align: center; margin: 24px 0 0; padding-top: 12px;
  border-top: 1px dashed #d4b896;
}
.guide-section.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .guide-section.mobile-only { display: block; }
  .guide-box { padding: 24px 18px 20px; }
}
