body {
  margin: 0;
  padding: 0;
  background: #2c2546;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background: #2e2a45;
  border-radius: 20px;
  width: 500px; /* Wider card */
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  position: relative;
  color: #fff;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #00bcd4;
  object-fit: cover;
  margin-top: 10px;
}

h2 {
  margin: 15px 0 5px;
  font-size: 1.4em;
}

h4 {
  color: #ccc;
  margin: 0 0 10px;
  font-weight: normal;
  letter-spacing: 1px;
}

p {
  font-size: 0.9em;
  color: #c4c4c4;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9em;
}

.message {
  background: #00bcd4;
  color: #000;
}

.following {
  background: transparent;
  border: 1px solid #00bcd4;
  color: #00bcd4;
}

.social-icons {
  margin: 10px 0 25px;
}

.social-icons a {
  margin: 0 10px;
  color: #00bcd4;
  font-size: 1.2em;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.skills {
  text-align: left;
}

.skills p {
  font-size: 0.75em;
  color: #aaa;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.skills ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills li {
  background: #1e1b34;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.75em;
  color: #ccc;
}
