* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink-bg: #fce8ec;
  --pink-mid: #e8b7c1;
  --pink-dark: #d99caa;
  --text-main: #5a3338;
  --text-sub: #b07a85;
  --text-handle: #aaa;
}

body {
  min-height: 100vh;
  background: linear-gradient(160deg, #fce8ec 0%, #fff0f3 60%, #ffffff 100%);
  font-family: "Poppins", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 36px 16px 56px;
}

.page {
  width: 100%;
  max-width: 380px;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 36px 24px 32px;
  box-shadow: 0 6px 32px rgba(200, 100, 120, 0.13);
}

/* ── Profile ── */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.avatar-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #d99caa, #f2c8d0, #e8b7c1, #d99caa);
  margin-bottom: 14px;
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


/* ── Links ── */
.links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f2c8d0, #e8b7c1);
  color: white;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(232, 183, 193, 0.45);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 183, 193, 0.55);
}

/* WhatsApp */
.links a:nth-child(1) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.links a:nth-child(1):hover {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* Instagram */
.links a:nth-child(2) {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 3px 10px rgba(131, 58, 180, 0.35);
}

.links a:nth-child(2):hover {
  box-shadow: 0 6px 18px rgba(131, 58, 180, 0.45);
}

/* Shopee */
.links a:nth-child(3) {
  background: linear-gradient(135deg, #ff6b35, #ee4d2d);
  box-shadow: 0 3px 10px rgba(238, 77, 45, 0.35);
}

.links a:nth-child(3):hover {
  box-shadow: 0 6px 18px rgba(238, 77, 45, 0.45);
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.icon svg {
  width: 16px;
  height: 16px;
}
