/* About Page Styles for PrimaxCoin */
.about-main {
  max-width: 570px;
  margin: 0 auto;
  padding: 3.5em 1.2em 2.5em 1.2em;
  background: #111;
  border-radius: 24px;
  box-shadow: 0 0 48px 0 rgba(255,255,255,0.13), var(--glow);
  margin-top: 3.5em;
  margin-bottom: 2em;
  animation: fadeIn 1.2s;
}
.about-main h1 {
  text-align: center;
  margin-bottom: 2.1em;
  font-size: 2.2rem;
}
.about-section {
  margin-bottom: 2.1em;
}
.about-section h2 {
  font-size: 1.13rem;
  color: var(--text-main);
  margin-bottom: 0.6em;
  font-weight: 600;
}
.about-section ul {
  margin: 0;
  padding-left: 1.2em;
}
.about-section li {
  color: var(--text-secondary);
  margin-bottom: 0.3em;
  font-size: 1.03em;
}
.about-section p, .about-section a {
  color: var(--text-secondary);
  font-size: 1.07em;
}
.about-section a {
  text-decoration: underline;
  transition: color 0.18s;
}
.about-section a:hover, .about-section a:focus {
  color: var(--text-main);
}
@media (max-width: 600px) {
  .about-main {
    padding: 1.5em 0.2em 1.2em 0.2em;
    max-width: 99vw;
  }
  .about-main h1 {
    font-size: 1.3rem;
  }
}
