* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f5b2bc;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
}

.container {
  display: flex;
  gap: 30px;
  padding: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #000000;
  color: #f5b2bc;
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #000000;
  margin-bottom: 15px;
  box-shadow: 0px 0px 35px 2px #ff4d6d;
}

.name {
  margin-bottom: 8px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #ff4d6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: black;
  color: #ff4d6d;
  transform: scale(1.1);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  padding: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #ff4d6d;
  color: white;
}

.btn.secondary {
  border: 1px solid #ff4d6d;
  color: #ff4d6d;
}

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

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 320px;
  }
}
