/* Reset and base styles */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  font-size: 28px;
  margin: 10px 0;
  letter-spacing: 2px;
}

.bio {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 16px;
  color: #ffcc00;
  margin: 30px 0 10px;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Link box with flex design */
.link-box {
  display: flex;
  align-items: center;
  background-color: #111;
  border-radius: 40px;
  padding: 12px 16px;
  margin: 12px auto;
  text-decoration: none;
  color: rgb(236, 220, 220);
  width: 90%;
  max-width: 400px;
  transition: 0.3s;
}

.link-box:hover {
  background-color: #222;
}

/* Circle icon style */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #f8d33a;
}

/* Span text */
.link-box span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}
