/* Help View */
.help-content {
  max-width: 640px;
  padding: 16px;
}
.help-section {
  margin-bottom: 32px;
}
.help-section-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.help-section-icon {
  font-size: 16px;
  opacity: 0.7;
}
.help-section p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 8px;
}
.help-shortcuts-table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}
.help-shortcuts-table td {
  padding: 6px 12px 6px 0;
  border-bottom: 1px solid var(--border);
}
.help-shortcuts-table td:first-child {
  width: 100px;
}
.help-shortcuts-table kbd {
  display: inline-block;
  padding: 2px 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: monospace;
  font-size: 12px;
  margin-right: 2px;
}
.help-shortcuts-table td:last-child {
  color: var(--text-dim);
}
.help-section p strong {
  color: var(--text);
}

/* Mobile tips hidden on desktop, keyboard hidden on mobile */
.help-mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .help-desktop-only {
    display: none;
  }
  .help-mobile-only {
    display: block;
  }
  .help-content {
    padding: 12px;
  }
}
