/* ===== Base ===== */
:root {
  --bg: #050608;
  --text: #f5f5f5;
  --muted: #9c9c9c;
  --accent: #3a7bff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    -webkit-system-font, sans-serif;
}

/* ===== Layout ===== */
.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* ===== Avatar ===== */
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #12141a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.avatar span {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== Name & Intro ===== */
.name {
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.intro p {
  margin: 0 0 0.7rem;
  line-height: 1.6;
}

/* ===== Section (links area) ===== */
.section {
  margin-top: 2.2rem;
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* ===== Links ===== */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list li {
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

/* ===== Mobile tweaks ===== */
@media (max-width: 480px) {
  .page {
    padding: 2rem 1.25rem 3rem;
  }

  .name {
    font-size: 1.7rem;
  }

  .avatar {
    width: 72px;
    height: 72px;
  }
}
