

:root{
  --bg:#0f1724;
  --card:#0b1220;
  --accent:#fff;
  --muted:#9aa4b2;
}

*{box-sizing:border-box}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#34567f 0%, #335068 100%);
  font-family:Inter,system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;
  color:var(--accent);
  padding:32px;
}

.container{
  width:100%;
  max-width:420px;
  text-align:center;
}

.card{
  background:rgb(0 20 133 / 13%);
  border-radius:18px;
  padding:28px 22px;
  box-shadow: 0 6px 30px rgba(2,6,23,0.6);
}

.avatar{
  width: 150px;
  height: 150px;
  border-radius:50%;
  margin:0 auto 14px;
  overflow:hidden;
  border: 3px solid #F44336;
  background:#ededed 
}
.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

h1{
  margin:6px 0 4px;
  font-size:20px;
  letter-spacing:0.2px;
}
.desc{
  margin:0 0 10px;
  color:var(--muted);
  font-size:13px;
}

.desc-p2{
  margin:0 0 18px;
  font-size:16px;
}

.links{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:8px;
  align-items:stretch;
}

.link-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  color:var(--accent);
  border:1px solid rgba(255,255,255,0.03);
  transition:transform .12s ease, box-shadow .12s ease;
  box-shadow:0 2px 10px rgba(2,6,23,0.5);
}
.link-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 30px rgba(2,6,23,0.6);
}

.small{
  font-size:12px;
  color:var(--muted);
  margin-top:14px;
}

@media (max-width:420px){
  .card{ padding:20px }
  .avatar{ width:92px; height:92px }
}
