* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 35px;
  border-radius: 18px;
  text-align: center;
  width: 320px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.profile-pic {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid rgba(255, 255, 255, 0.6);
}

h1 {
  margin: 10px 0 5px;
  font-size: 22px;
}

.role {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.links a {
  display: block;
  margin: 8px 0;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: background 0.3s, transform 0.2s;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.about {
  font-size: 13px;
  margin-top: 18px;
  opacity: 0.85;
}
