@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #050505;
  --text: #f3f3f0;
  --muted: #8e8e8a;
  --line: #252525;
  --hover: #f3f3f0;
  --hover-text: #050505;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 10;
}

.page {
  width: min(100% - 32px, 560px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 58px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 1px solid #303030;
  box-shadow: 0 0 0 5px #0c0c0c;
}

h1 {
  margin: 21px 0 0;
  font-family: "DM Mono", monospace;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -1.2px;
}

.name {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .35px;
}

.bio {
  margin: 12px 0 0;
  color: #b5b5b0;
  font-size: 13px;
  font-style: italic;
}

.links {
  width: 100%;
  margin-top: 32px;
  display: grid;
  gap: 10px;
}

.link {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  position: relative;
  z-index: 20;
}

.link:hover {
  background: var(--hover);
  color: var(--hover-text);
  border-color: var(--hover);
  transform: translateY(-1px);
}

.link:active { transform: translateY(0); }

.arrow {
  font-size: 15px;
  opacity: .45;
  transition: opacity .18s ease, transform .18s ease;
}

.link:hover .arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

footer {
  margin-top: auto;
  padding-top: 48px;
  color: #3d3d3a;
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

@media (max-width: 480px) {
  .page { padding-top: 46px; }
  .avatar { width: 96px; height: 96px; }
  h1 { font-size: 25px; }
  .links { margin-top: 28px; }
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.emoji {
  width: 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  filter: grayscale(100%);
}
