.linktree-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
    transition: background-color 0.3s 
ease;
    margin: auto;
    border-radius: 10px;}

.linktree-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.linktree-logo img {
  width: 90px;
  margin-bottom: 20px;
}

.linktree-title {
  font-size: 22px;
  margin-bottom: 5px;
}

.linktree-subtitle {
  font-size: 15px;
  margin-bottom: 25px;
}

.linktree-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.linktree-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.linktree-item .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linktree-item-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.linktree-social {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  justify-content: center;
}

.linktree-social a {
  font-size: 22px;
  transition: color 0.2s ease;
}
.linktree-links img.linktree-item-img {
    border-radius: 10px;
}

@media(max-width: 768px) {
    .linktree-wrapper {
        width: 100% !important;
        max-width: 100% !important;
                border-radius: 0px;
        min-height: 100vh;
    }
}