/* ===== BIO SECTION ===== */
.bio-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.profile-pic-container {
  position: relative;
}

.profile-pic {
  width: 180px;
  height: 180px;
  border: 3px solid #b19cd9;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(177, 156, 217, 0.5);
}

.alias-pic {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 2px solid #ff94d6;
  border-radius: 50%;
}

.bio-text h2 {
  color: #a8c0ff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.aliases {
  color: #ff94d6;
  margin-bottom: 1rem;
}
