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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0a0a;
  color: #e5e5e5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.6;
}

.card {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.photo-container {
  margin-bottom: 1.5rem;
}

.photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #252525;
}

.name {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.title {
  font-size: 1rem;
  font-weight: 400;
  color: #888888;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  font-style: italic;
}

.divider {
  width: 40px;
  height: 1px;
  background-color: #333333;
  margin: 1.5rem auto;
}

.about {
  font-size: 0.9rem;
  font-weight: 300;
  color: #a0a0a0;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  border: 1px solid #333333;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

.social-link:hover .link-icon {
  fill: #0a0a0a;
}

.link-icon {
  width: 16px;
  height: 16px;
  fill: #e5e5e5;
  transition: fill 0.2s ease;
}

.link-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 480px) {
  body {
    padding: 1.5rem;
  }

  .photo {
    width: 120px;
    height: 120px;
  }

  .name {
    font-size: 1.5rem;
  }
}
