#helpLauncher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #dabe6f, #ecd79a);
  color: #162030;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

#helpLauncher:hover { transform: translateY(-1px); }

.help-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 18, 0.56);
  backdrop-filter: blur(2px);
  z-index: 1290;
}

.help-overlay[hidden],
.help-drawer[hidden],
#helpLauncher[hidden] { display: none !important; }

.help-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100vh;
  z-index: 1300;
  background: #162030;
  color: #e2e8f0;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -24px 0 60px rgba(0,0,0,0.34);
  display: flex;
  flex-direction: column;
}

.help-head {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(218,190,111,0.12), rgba(218,190,111,0.02));
}

.help-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #dabe6f;
  font-weight: 800;
  margin-bottom: 8px;
}

.help-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.help-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-family: 'Montserrat', sans-serif;
}

.help-close {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #cbd5e1;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

.help-subtitle {
  margin: 10px 0 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.help-body {
  padding: 20px 22px 28px;
  overflow-y: auto;
}

.help-section {
  margin-bottom: 18px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.help-section h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #f8fafc;
  font-family: 'Montserrat', sans-serif;
}

.help-section p,
.help-section li {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

.help-section ul {
  margin: 0;
  padding-left: 18px;
}

.help-footer {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(218,190,111,0.08);
  border: 1px solid rgba(218,190,111,0.14);
  color: #e9d9a0;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  #helpLauncher {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }

  .help-head,
  .help-body { padding-left: 16px; padding-right: 16px; }
}
