/* Reset & Font */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Outfit',sans-serif;
}

body{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#0f0f13;
  overflow:hidden;
  position:relative;
  color:white;
}

/* Floating Background Blobs */
.blob{
  position:absolute;
  width:400px;
  height:400px;
  background:linear-gradient(135deg,#ff4b2b,#ff416c);
  filter:blur(120px);
  opacity:0.4;
  animation:move 12s infinite alternate ease-in-out;
}

.blob:nth-child(1){ top:-150px; left:-100px; }
.blob:nth-child(2){ bottom:-150px; right:-100px; background:linear-gradient(135deg,#00c6ff,#0072ff); }

@keyframes move{
  from{transform:translateY(0px);}
  to{transform:translateY(40px);}
}

/* Glass Card */
.container, .card{
  position:relative;
  width:100%;
  max-width:420px;
  padding:40px 30px;
  border-radius:30px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(25px);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
  text-align:center;
  animation:fadeIn 1.2s ease;
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

/* Profile Glow */
.profile{
  width:120px;
  height:120px;
  border-radius:50%;
  margin-bottom:15px;
  border:3px solid rgba(255,255,255,0.2);
  box-shadow:0 0 25px rgba(0,240,255,0.5);
}

/* Name & Bio */
h1{ font-size:24px; font-weight:600; }
.bio{ font-size:14px; color:#aaa; margin:10px 0 30px; }

/* Buttons */
/* Buttons (Static) */
.link{
  display:flex;
  align-items:center;       /* vertically center */
  justify-content:center;   /* horizontally center */
  gap:10px;                 /* space between SVG and text */
  padding:15px;
  margin:14px 0;
  border-radius:60px;
  text-decoration:none;
  color:white;
  font-weight:500;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.08);
  position:relative;
  overflow:hidden;
  transition:all 0.4s ease;
  cursor:pointer;
}

/* SVG inside button */
.link svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hover Effect Desktop Only */
@media (hover: hover) and (pointer: fine) {
  .link:hover{
    transform:translateY(-5px);
    background:linear-gradient(135deg,#ff4b2b,#ff416c);
    box-shadow:0 10px 30px rgba(255,65,108,0.5);
  }
  
  .link:hover::after{ left:100%; }
}

.link::after{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%; height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
  transition:0.6s;
  border-radius:60px;
  pointer-events:none;
}

/* Responsive */
@media(max-width:500px){
  .card{ margin:20px; padding:35px 25px; }
}
