:root {
  --bg: #020617;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #60a5fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.tagline, .email {
  margin-top: 6px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.links a {
  color: var(--text);
  display: inline-flex;
  padding: 8px;
  transition: all 0.2s ease;
}

.links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.links svg {
  width: 22px;
  height: 22px;
}

.links i {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

/* Mobile */
@media (max-width: 480px) {
  .avatar {
    width: 90px;
    height: 90px;
  }
}
