body {
  font-family: 'IBM Plex Mono', monospace;
  background-color: #0b0b0b;
  color: #dcdcdc;
  padding: 2rem;
}

.compass-title {
  font-size: 2.4rem;
  color: #aaa;
  text-align: center;
  font-weight: 400;
  text-shadow: 0 0 2px #111;
  letter-spacing: 1px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.compass-frame {
  background-color: #0d0d0d;
  border: 1px solid #333;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  max-width: 600px;
}

.compass-image {
  width: 100%;
  border: 2px solid #222;
  outline: 4px dashed #333;
}

.disclaimer {
  max-width: 600px;
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 3rem;
}

/* Questions Style */
.questions {
  max-width: 700px;
  margin-bottom: 3rem;
}

.questions h2 {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.questions ol {
  padding-left: 1.5rem;
}

.questions li {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* PFP and Bio */
.profile-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.pfp-image {
  width: 140px;
  border-radius: 4px;
  border: 1px solid #333;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.bio-text {
  max-width: 400px;
}

.bio-text p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1.2rem;
  color: #f1f1f1;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px dotted #555;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffffff;
}