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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  font-family: sans-serif;
}

.card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #6366f1;
  margin-bottom: 16px;
}

.name {
  color: #f1f5f9;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.tagline {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.skill {
  background: #312e81;
  color: #a5b4fc;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
}