/* Help button */
.btn-help {
  background: #27ae60;
  color: white;
  font-weight: 700;
}

.btn-help:hover {
  background: #219a52;
}

/* Help Modal */
.help-modal-content {
  max-width: 620px;
  width: 94vw;
  max-height: 82vh;
  text-align: left;
  background: #1a1a2e;
  color: #eee;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.help-modal-content h3 {
  color: #2ecc71;
  text-align: center;
  margin-bottom: 14px;
}

.help-tabs {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin-bottom: 0;
  border-bottom: 2px solid #333;
  padding-bottom: 0;
}

.help-tab {
  padding: 5px 13px;
  border: none;
  border-radius: 6px 6px 0 0;
  background: #16213e;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
}

.help-tab:hover {
  color: #eee;
}

.help-tab.active {
  background: #1a2744;
  color: #2ecc71;
  border-bottom: 2px solid #2ecc71;
}

.help-tab-panel {
  overflow-y: auto;
  flex: 1;
  padding: 4px 2px 4px 2px;
}

.help-section {
  background: #16213e;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 10px;
}

.help-section:first-child {
  margin-top: 0;
}

.help-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 8px;
}

.help-section p {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 6px;
}

.help-section p:last-child {
  margin-bottom: 0;
}

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

.help-section ul li {
  font-size: 13px;
  line-height: 1.7;
  color: #ccc;
}

.help-section ul li strong {
  color: #eee;
}

.help-section ul li em {
  color: #aaa;
  font-style: italic;
}
