body {
  margin: 0;
  font-family: 'Fira Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  background: black;
  position: relative;
  font-weight: bold;
}

#gradient-canvas {
  --gradient-color-1: #9C4397;
  --gradient-color-2: #83C7C0;
  --gradient-color-3: #784465;
  --gradient-color-4: #58A7AF;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  z-index: 1;
  position: relative;
  width: 90%;
  max-width: 500px;
  margin: 20px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  padding: 15px 25px;
  width: 90%;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s, border 0.3s, box-shadow 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}

.link-button i {
  margin-right: 10px;
  transition: color 0.3s;
}

.link-button:hover {
  background:
    rgba(255, 255, 255, 0.3);
  border-color: #682b75;
  box-shadow: 0 0 15px #682b75;
  color: #682b75;
}

.link-button:hover i {
  color: #682b75;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.profile-name {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 10px 30px 30px;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}

footer a {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .container {
    padding: 15px;
    width: 95%;
  }

  .link-button {
    font-size: 12px;
    padding: 10px 20px;
  }

  .link-button i {
    margin-right: 5px;
  }
}