/* Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-panel {
  background: white;
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.profile-pic-box {
  width: 80px;
  height: 80px;
  background-color: #ddd;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

#profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name-title {
  font-size: 24px;
  color: #333;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  text-decoration: none;
  color: #1e3c72;
  background: #f0f0f0;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}

.social-link:hover {
  background: #e0e0e0;
}