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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
}

.card {
  text-align: center;
  max-width: 400px;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 16px;
  background: #141414;
  border: 1px solid #222;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333;
  margin-bottom: 1.5rem;
}

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

.card__tagline {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.card__links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.card__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  color: #888;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.card__links a:hover {
  color: #f5f5f5;
  border-color: #555;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .card__photo {
    width: 100px;
    height: 100px;
  }

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