body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: white;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.container {
  max-width: 500px;
  width: 95%;
  padding: 20px;
}

/* Profile */
.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid white;
  margin-bottom: 10px;
}

.name {
  font-size: 22px;
  font-weight: 600;
}

.desc {
  font-size: 18px;
  color: #aaa;
}

/* Link Box */
.link-box {
  position: relative;
  background-color: #202020;
  border: 1px solid #333;
  padding: 16px 20px;
  padding-left: 80px; /* spasi kiri agar teks tidak menabrak logo */
  margin-bottom: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  text-align: center; /* Agar teks berada di tengah secara horizontal */
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.link-box:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 255, 255, 0.25);
}

.link-logo {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #00ffff66;
}

.link-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
}

/* Animasi */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.social-icons a {
  color: #00f2ff;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
  margin-bottom: 60px; /* ⬅️ Tambahkan ini untuk jarak ke bawah */
}