:root {
  --bg: #0c0d14;
  --card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  --accent: #9b5de5;
  --fg: #e4e4e7;
  --muted: rgba(228, 228, 231, 0.08);
  --radius: 12px;
  --max-read: 900px;
  --ease: cubic-bezier(0.2, 0.9, 0.25, 1);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Nunito, Segoe UI, Roboto, system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.about-header {
  height: 72px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(12, 13, 20, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.about-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-decoration: none;
}
.about-logo img {
  width: 34px;
  height: 34px;
}
.container {
  width: 100%;
  max-width: var(--max-read);
  margin: 28px auto;
  padding: 0 16px;
}
.about-main {
  flex: 1;
}
.about-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.about-card h1 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: var(--accent);
}
.about-card .lead {
  color: var(--fg);
  opacity: 0.95;
  margin-bottom: 14px;
}
.about-card h2 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--fg);
}
.about-card p {
  color: var(--fg);
  opacity: 0.9;
  line-height: 1.6;
}
.small-links {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.small-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

/* Make inline links visible and accessible inside about/privacy/terms pages */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 140ms ease, text-decoration-color 140ms ease;
}

a:visited {
  color: rgba(155, 93, 229, 0.75);
}

a:hover,
a:focus {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.about-meta {
  margin-top: 20px;
  color: rgba(228, 228, 231, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 600px) {
  .about-card {
    padding: 16px;
  }
  .about-logo img {
    width: 28px;
    height: 28px;
  }
}
