/* =========================
   RESET & GLOBAL
========================= */
* {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
}

html, body {
  touch-action: manipulation;
}

/* =========================
   BODY (BACKGROUND UTAMA)
========================= */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* =========================
   CARD (HALAMAN HOME / BIO LINK)
========================= */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 25px;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  animation: fadeInUp 0.8s ease forwards;
}

/* =========================
   FOTO PROFIL
========================= */
.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid rgba(255,255,255,0.25);
}

/* =========================
   TEKS
========================= */
.card h1 {
  margin: 10px 0 6px;
  font-size: 22px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 22px;
}

/* =========================
   LINK (BIO LINK HOME)
========================= */
.card a {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.card a:hover {
  background: #00c6ff;
  color: #000;
  transform: translateY(-3px);
}

/* =========================
   ANIMASI MASUK
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE (HP)
========================= */
@media (max-width: 480px) {
  .card {
    padding: 25px 20px;
  }

  .card h1 {
    font-size: 20px;
  }
}

/* =====================================================
   SHOPEE SPILL – VERSI TERANG (TIDAK DIUBAH)
===================================================== */

.box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #000;
}

.box h2 {
  margin-top: 0;
  color: #000;
}

.box p {
  color: #333;
}

.btn {
  display: block;
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  background: #ff5722;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.btn:hover {
  background: #ff784e;
}
