body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff9e6;
  color: #111;
  text-align: center;
  padding: 20px;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #f4c400;
}

h1 {
  margin: 10px 0 0 0;
  font-size: 28px;
  font-weight: bold;
}

.bio {
  margin: 15px 0;
  font-size: 16px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.link-btn {
  background: #111;
  color: white;
  width: 50px;
  height: 50px;
  text-decoration: none;
  font-size: 0; /* Hide the text content */
  border-radius: 50%; /* Make the buttons circular */
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-btn:hover {
  background: #f4c400;
  color: #111;
  transform: scale(1.1);
}

.special-offer {
  background: #f4c400;
  color: #111;
  font-weight: bold;
}

.special-offer:hover {
  background: #111;
  color: white;
}

/* Restore icon size */
.link-btn i {
  font-size: 22px;
}

footer {
  margin-top: 30px;
  font-size: 13px;
  color: #777;
}