:root {
  --bg: #FBEFD9;
  --card-bg: #FFFDF8;
  --text: #3E2723;
  --muted: #7A5A44;
  --btn-bg: #6B3F1D;
  --btn-bg-hover: #542F14;
  --btn-text: #FFF8E7;
  --accent: #E8A33D;
  --shadow: 0 4px 14px rgba(62, 39, 19, 0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 40px 16px;
}

.card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow);
}

.name {
  margin: 16px 0 4px;
  font-size: 1.25rem;
}

.bio {
  margin: 0 0 24px;
  color: var(--muted);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow);
  transition: background 0.15s ease, transform 0.1s ease;
}

.link-btn:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-1px);
}

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--btn-bg);
  box-shadow: var(--shadow);
  transition: transform 0.1s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 360px) {
  .name { font-size: 1.1rem; }
}
