@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  background: linear-gradient(135deg, #1a1a1a, #333);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 500px;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.profile-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.profile-card h1 {
  margin: 15px 0 5px;
  font-size: 28px;
  font-weight: 700;
}

.bio {
  font-size: 14px;
  color: #bbb;
  cursor: pointer;
}

.desc {
  font-size: 13px;
  margin-top: 8px;
  color: #ddd;
}

.link-list {
  margin: 25px 0;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 14px;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.link-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.link-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.share-button {
  margin-top: 15px;
  background: #00C9A7;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.share-button:hover {
  background: #00b092;
  transform: translateY(-2px);
}

.share-button img {
  width: 20px;
  height: 20px;
}

footer {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
}

