/* reset & box sizing */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* ensure html itself has no background to avoid injected elements */
html {
  height: 100%;
  background: none;
}

/* full-screen centered flex container with fixed gradient */
body {
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFB7DD, #B2EBF2, #FFB7DD, #B2EBF2);
  background-size: 300% 300%;
  background-attachment: fixed;
  animation: gradientAnimation 8s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* main card */
.container {
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 360px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

/* subtle wave overlay (replace wave.svg with your SVG) */
.container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  pointer-events: none;
  opacity: 0.3;
}

/* profile image */
.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* name & bio */
h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.bio {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* link buttons */
.links { list-style: none; }
.links li { margin-bottom: 0.75rem; }

.btn {
  display: block;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #000000;
  color: #fff;
  font-weight: bold;
  transition: background 0.2s;
  font-size: 1.5rem;
  position: relative;     
  text-align: center;     
}
.btn:hover {
  background: #555555;
}
/* icon spacing */
.btn i {
    margin-right: 0.5rem;
    vertical-align: middle;
    position: absolute;     /* remove icon from flow */
    left: 1.25rem;             /* distance from the left edge */
    top: 50%;               /* start at halfway down */
    transform: translateY(-50%); /* vertically center the icon */
  }