* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  width: 340px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #00e6e6;
  margin-bottom: 15px;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 14px;
  color: #00e6e6;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  opacity: 0.9;
}

.socials {
  margin: 20px 0;
}

.socials a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  transition: 0.3s;
}

.socials a:hover {
  color: #00e6e6;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #00e6e6;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
