
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #2b2e4a, #e84545);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
}
.main-wrapper {
  text-align: center;
  padding: 20px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px 20px;
  max-width: 380px;
  margin: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.avatar-wrapper img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin-bottom: 15px;
}
.name {
  margin: 10px 0 5px;
  font-size: 1.6rem;
  font-weight: 600;
}
.role {
  font-size: 1.1rem;
  color: #e0e0e0;
}
.location {
  margin: 10px 0 20px;
  font-size: 0.95rem;
  color: #f5f5f5;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}
.social-links a {
  background: white;
  color: #2b2e4a;
  text-decoration: none;
  font-size: 1.3rem;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.social-links a:hover {
  transform: scale(1.1);
}
.qr-section img {
  width: 100px;
  height: 100px;
  margin-top: 10px;
}
footer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #ddd;
}
