/* about.css — character profile page (requires theme.css)
   Page chrome base (page-wrap, bg-orb, sparkle, page-header) lives in
   theme.css; only about-specific orb palette + hero lives here. */

.orb1 { --c: #a0ccf0; width: 520px; height: 520px; top: -150px; left: -150px; opacity: 0.3; animation: orb-drift1 20s ease-in-out infinite; }
.orb2 { --c: #b0d4e8; width: 400px; height: 400px; bottom: -80px; right: -100px; opacity: 0.28; animation: orb-drift2 24s ease-in-out infinite; }

/* ── Hero ── */
.hero {
  text-align: center;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.hero-avatar {
  width: 110px; height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--surface-hover);
  box-shadow: 0 4px 20px rgba(var(--blue-rgb), 0.15);
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px; font-weight: 500; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--blue2) 20%, var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.hero-subtitle {
  font-size: 12px; color: var(--text3); letter-spacing: 1px; margin-bottom: 14px;
}
.hero-links {
  display: flex; gap: 8px; justify-content: center;
}
.hero-links a {
  font-size: 11px; padding: 5px 16px; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--surface-hover);
  color: var(--text2); text-decoration: none; transition: all .18s;
}
.hero-links a:hover { background: var(--surface-strong); color: var(--text); }

/* ── Content ── */
.content {
  max-width: 620px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

/* ── Lore sections ── */
.lore-section {
  background: var(--surface-muted);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid var(--surface);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 14px;
}
.lore-section h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--text);
  margin-bottom: 12px; letter-spacing: 1px;
}
.lore-section p {
  font-size: 13px; color: var(--text2); line-height: 1.8;
  margin-bottom: 10px;
}
.lore-section p:last-child { margin-bottom: 0; }
.lore-section blockquote {
  font-size: 12.5px; color: var(--blue2); font-style: italic;
  margin: 10px 0;
  padding: 8px 14px;
  border-left: 3px solid rgba(var(--blue-rgb), 0.25);
  background: var(--surface-muted);
  border-radius: 0 10px 10px 0;
  line-height: 1.7;
}

/* ── Traits ── */
.trait-list { display: flex; flex-direction: column; gap: 12px; }
.trait p { margin-bottom: 4px; }

/* ── Summary ── */
.summary-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(200,228,255,0.35), rgba(210,230,245,0.35));
}
.big-quote {
  font-size: 15px !important; font-style: normal !important;
  color: var(--text) !important;
  border-left: none !important;
  background: none !important;
  padding: 8px 0 !important;
  font-weight: 500;
  letter-spacing: .5px;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 20px;
}
.timeline::before {
  content: '';
  position: absolute; left: 6px; top: 4px; bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(var(--blue-rgb), 0.35), rgba(var(--blue-rgb), 0.15));
  border-radius: 1px;
}
.tl-item {
  position: relative;
  padding-left: 18px;
  padding-bottom: 18px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute; left: -17px; top: 5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  box-shadow: 0 0 6px rgba(var(--blue-rgb), 0.3);
}
.tl-date {
  font-size: 11px; color: var(--text3); font-weight: 500;
  margin-bottom: 2px; letter-spacing: .5px;
}
.tl-title {
  font-size: 14px; font-weight: 500; color: var(--text);
  margin-bottom: 2px;
}
.tl-body p {
  font-size: 12px; color: var(--text3); line-height: 1.5;
  margin: 0;
}

/* ── Credits ── */
.credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.credit-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-muted);
  border: 1px solid var(--surface-muted);
  text-decoration: none;
  transition: all .18s;
  display: block;
}
.credit-card:hover {
  background: var(--surface-hover);
  border-color: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(var(--blue-rgb), 0.1);
}
.credit-role {
  font-size: 10px; color: var(--text3); letter-spacing: .5px;
  margin-bottom: 3px; text-transform: uppercase; font-weight: 600;
}
.credit-name {
  font-size: 14px; font-weight: 500; color: var(--text);
}

@media (max-width: 480px) {
  .credits { grid-template-columns: 1fr; }
  .lore-section { padding: 16px 16px; }
  .hero h1 { font-size: 20px; }
  .lore-section blockquote { padding: 6px 10px; font-size: 12px; }
}
