/* Container */
#linktree-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background: #ffffff;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
}

/* Links wrapper */
#linktree-container .links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Link buttons */
#linktree-container .links a {
  display: block;
	background: #bb00bd;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.08, 0.82, 0.17, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hover effect */
#linktree-container .links a:hover {
  background: #10274a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

#linktree-container .links a i {
  margin-right: 10px;   /* space between icon and text */
  font-size: 1.2rem;    /* adjust size */
  vertical-align: middle;
}

