*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:       #0D0D0F;
  --surface:  #1C1B22;
  --border:   #2A2835;
  --accent:   #C4A882;
  --muted:    #C4C2D4;
  --body-text: #888888;
  --white:    #FFFFFF;

  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  font-family: var(--font-body);
  padding: 24px;
}

.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 420px;
  text-align: center;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid var(--border);
  display: block;
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--body-text);
  margin-bottom: 28px;
}

.bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bio p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-text);
  text-align: center;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  border-top: 0.5px solid var(--border);
  padding-top: 28px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 0.5px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
