*{box-sizing:border-box;margin:0;padding:0}

html,body{min-height:100%}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:#030303;
  color:#f5f5f5;
  overflow-x:hidden;
}

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 16px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
}

.page::before{
  content:"";
  position:absolute;
  inset:-80px;
  z-index:-2;
  background-image:var(--profile-bg);
  background-position:center;
  background-size:cover;
  filter:blur(36px);
  opacity:.42;
  transform:scale(1.12);
}

.page::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:rgba(0,0,0,.52);
}

.profile-card{
  width:min(100%,430px);
  padding:38px 30px 34px;
  background:rgba(18,18,20,.48);
  border:1px solid rgba(255,255,255,.18);
  border-radius:26px;
  text-align:center;
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  box-shadow:0 22px 70px rgba(0,0,0,.50),0 0 24px rgba(170,90,220,.06);
}

.photo-protection{
  position:relative;
  width:150px;
  height:150px;
  margin:0 auto 13px;
  border-radius:50%;
  user-select:none;
  -webkit-user-select:none;
  -webkit-touch-callout:none;
}

.photo-protection::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  z-index:2;
  background:transparent;
}

.profile-photo{
  display:block;
  width:100%;
  height:100%;
  margin:0;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.58);
  box-shadow:0 0 0 3px rgba(255,255,255,.035);
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}

.online-status{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  margin-bottom:20px;
  color:#eeeeee;
  font-size:15px;
  font-weight:500;
}

.online-dot{
  width:11px;
  height:11px;
  flex:0 0 11px;
  border-radius:50%;
  background:#27e66b;
  box-shadow:0 0 7px rgba(39,230,107,.75);
  animation:onlinePulse 1.25s ease-in-out infinite;
}

@keyframes onlinePulse{
  0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 7px rgba(39,230,107,.75)}
  50%{opacity:.35;transform:scale(.72);box-shadow:0 0 2px rgba(39,230,107,.30)}
}

.location{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#d1d1d5;
  font-size:14px;
  margin-bottom:17px;
}

.location-icon{
  color:#fff;
  font-size:9px;
}

p{
  max-width:340px;
  margin:0 auto 28px;
  color:#e0e0e3;
  font-size:15px;
  line-height:1.6;
}

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

.link{
  width:100%;
  min-height:58px;
  display:grid !important;
  grid-template-columns:30px minmax(0,1fr) 20px;
  align-items:center;
  gap:10px;
  padding:0 18px !important;
  border-radius:15px;
  text-decoration:none !important;
  color:#fff !important;
  background:rgba(255,255,255,.045) !important;
  border:1px solid rgba(255,255,255,.13);
  font-size:16px;
  font-weight:600;
  text-align:left;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
  overflow:hidden;
}

.link:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.07) !important;
}

.whatsapp{border-color:rgba(37,211,102,.55)}
.telegram{border-color:rgba(42,171,238,.55)}

.icon-wrap{
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.icon-wrap img{
  display:block !important;
  width:24px !important;
  height:24px !important;
  max-width:24px !important;
  max-height:24px !important;
  min-width:24px !important;
  min-height:24px !important;
  object-fit:contain !important;
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}

.link-label{
  min-width:0;
  color:#fff !important;
  font-size:16px !important;
  line-height:1 !important;
  text-decoration:none !important;
}

.arrow{
  color:#ddd !important;
  font-size:25px !important;
  line-height:1 !important;
  text-align:right;
}

@media(max-width:520px){
  .page{padding:16px}

  .profile-card{
    padding:32px 20px 28px;
    border-radius:22px;
  }

  .photo-protection{
    width:132px;
    height:132px;
  }

  p{
    font-size:14px;
    margin-bottom:25px;
  }
}
