#page-help { padding-bottom: 20px; }
.help-status-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.help-status-item {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #aaa;
}
.help-status-item b {
  display: block;
  font-size: 13px;
  color: #4fc3f7;
  margin-top: 2px;
  font-weight: normal;
}
.help-status-item:nth-child(2) b { color: #ffcc80; }
.help-status-item:nth-child(3) b { color: #ce93d8; }
.help-search { margin-bottom: 12px; }
.help-search input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #252525;
  color: #e0e0e0;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}
.help-search input:focus { border-color: #4fc3f7; }
.help-section {
  background: #252525;
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.help-section-header {
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.help-section-header:active { background: #2a2a2a; }
.help-section-header .arrow {
  transition: transform 0.2s;
  font-size: 10px;
  color: #666;
}
.help-section-header .arrow.open { transform: rotate(90deg); }
.help-section-body {
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  font-size: 12px;
  color: #bbb;
  line-height: 1.7;
  white-space: pre-line;
}
.help-section-body.open {
  padding: 0 12px 12px;
  max-height: 600px;
}
