body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #ffe4e6, #fecdd3);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  background: white;
  padding: 30px 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: 24px;
  color: #d63384;
}

.description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.link-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(to right, #f43f5e, #ec4899);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.link-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.icon {
  width: 20px;
  height: 20px;
}
