/* ====== Reset & Base ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298, #00bcd4);
  background-size: 400% 400%;
  animation: bgShift 10s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #fff;
}
@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ====== Container ====== */
.linktree-wrapper {
  width: 100%;
  max-width: 360px;
  padding: 24px;
}
.phone-frame {
  background: #1e1e1e;
  border-radius: 32px;
  padding: 32px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
}

/* ====== Avatar with White + Light Blue Gradient ====== */
.avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.avatar-bg {
  width: 104px;
  height: 104px;
  padding: 8px;
  background: linear-gradient(145deg, #ffffff, #e0f4ff);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-bg img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
}

/* ====== Username & Tagline ====== */
.username {
  font-size: 20px;
  font-weight: 600;
}
.tagline {
  font-size: 14px;
  color: #ccc;
  margin-top: 6px;
  margin-bottom: 20px;
}

/* ====== Social Icons ====== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.social-icons a {
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.25);
}

/* ====== Link Buttons ====== */
.links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  padding: 14px 20px;
  margin-bottom: 16px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s ease;
}
.links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
}
.links .dot i {
  font-size: 16px;
  color: #333;
  opacity: 0.6;
}

/* ====== Footer Legal ====== */
.footer {
  font-size: 12px;
  color: #888;
  margin-top: 30px;
  line-height: 1.4;
}
.footer strong {
  color: #fff;
}
.footer p {
  margin-bottom: 4px;
}
