.parag {
    text-indent: 0rem !important;
}

ul.btns {
  position: fixed !important;
  bottom: 18vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6rem; /* jarak antar tombol */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* wrapper tiap item */
.btns__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  transform: translateY(0);
}

/* tombol */
.btns__item button {
  width: 9svh;
  height: 9svh;
  border-radius: 50%;
  background-color: #0003;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.btns__item button:hover {
  transform: scale(1.1);
  background-color: #0006;
}

/* label */
.btns__item span {
  font-size: 1.2rem;
  font-family: var(--sans, sans-serif);
  color: rgba(255, 255, 255, 0.75);
}

/* ===============================
   BUSUR KE BAWAH (7 ITEM)
   =============================== */
.btns__item:nth-child(1),
.btns__item:nth-child(7) { transform: translateY(20px) !important; } /* paling kiri & kanan sedikit turun */
.btns__item:nth-child(2),
.btns__item:nth-child(6) { transform: translateY(40px) !important; } /* agak turun */
.btns__item:nth-child(3),
.btns__item:nth-child(5) { transform: translateY(60px) !important; } /* makin turun */
.btns__item:nth-child(4) { transform: translateY(80px) !important; } /* tengah paling rendah */

.partners {
  position: fixed;
  top: 2rem;
  left: 0;
  width: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20; /* di atas elemen 3D */
}

/* container kanan atas */
.auth-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Tombol login/signup */
.auth-btn {
  font-family: var(--sans, sans-serif);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.6rem 1.4rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.auth-btn.signup {
  background: #fff;
  color: #000;
  font-weight: 600;
}

.auth-btn.signup:hover {
  background: #e6e6e6;
}

/* responsif opsional */
@media (max-width: 768px) {
  .auth-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1.1rem;
  }
}