.about-container {
  padding: 20px 0;
}

.about-section {
  padding: 24px 0;
}

.about-section h1 {
  display: block;
  position: static;
  height: auto;
  margin: 0 0 16px 0;
  font-size: 1.8rem;
  background-color: transparent;
}

.about-section p {
  margin: 0 0 12px 0;
  line-height: 1.5;
  color: var(--text);
}

.about-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.about-card {
  background: var(--bg-2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
}

.about-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.about-lead strong {
  color: var(--accent);
}

.how-to-card {
  background: var(--bg-2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.how-to-card:last-child {
  margin-bottom: 0;
}

.how-to-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.how-to-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legend-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
}

.legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
}

.legend-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.legend-icon svg {
  width: 20px;
  height: 20px;
}

.legend-icon--fill svg {
  width: 24px;
  height: 24px;
}

.legend-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.legend-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  background: transparent;
  white-space: nowrap;
}

.legend-hamburger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.legend-hamburger div {
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ───────────────────────────────────────────────
   Welcome Splash Overlay
   ─────────────────────────────────────────────── */

welcome-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

welcome-splash.welcome-splash--visible {
  opacity: 1;
}

.welcome-splash-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px;
}

.welcome-splash-scroll .about-container {
  padding: 20px 0 80px 0;
  max-width: 500px;
  margin: 0 auto;
}

.welcome-splash-bar {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border-color);
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.welcome-splash-bar .btn {
  min-width: 140px;
}

body.showing-welcome my-nav,
body.showing-welcome home-settings-drawer,
body.showing-welcome main {
  display: none !important;
}

/* ───────────────────────────────────────────────
   Changelog
   ─────────────────────────────────────────────── */

.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.changelog-entry {
  background: var(--bg-2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
}

.changelog-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.changelog-entry ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.changelog-entry li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.changelog-entry li:last-child {
  margin-bottom: 0;
}

.changelog-entry code {
  font-family: monospace;
  font-size: 12px;
  background: var(--bg-3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
}
