/* ==============================
   Help / Informational Pages CSS
   File: help.css
   Compatible with modular CSS system
   ============================== */

.help-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0rem 0rem;
  line-height: 1.6;
  padding-top: 0px;
  margin-top: 0px;
  border-color: crimson;
  border-width: 10px;
}

.hero-section {
  margin-bottom: 2rem;
}

.hero-logo {
  max-height: 80px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}

.info-card {
  background: var(--card-bg, #1e1e1e);
  color: var(--text-color, #fff);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.info-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.3rem;
  margin-bottom: 0.7rem;
}

.info-card ul {
  padding-left: 1.2rem;
}

.info-card pre {
  background: rgba(0,0,0,0.3);
  padding: 0.6rem;
  border-radius: 5px;
  font-size: 0.9rem;
  overflow-x: auto;
}

.text-center {
  text-align: center;
}

.small-text {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Light mode adjustments (if dark mode is default) */
@media (prefers-color-scheme: light) {
  .info-card {
    background: #fff;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .info-card h2 {
    border-bottom: 1px solid #ddd;
  }
}
