* { box-sizing: border-box; }

:root {
  --pink: #e92f55;
  --pink-dark: #c9163d;
  --pink-soft: #fff0f4;
  --text: #17151a;
  --muted: #6f6872;
  --card: rgba(255, 255, 255, 0.92);
  --border: rgba(233, 47, 85, 0.13);
  --shadow: 0 12px 28px rgba(75, 31, 44, 0.10);
}

html {
  min-height: 100%;
  background: #fff8fa;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(233, 47, 85, 0.12), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(233, 47, 85, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff6f8 45%, #ffffff 78%, #fff0f4 100%);
}

.page {
  width: min(100%, 480px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 18px 18px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  text-align: center;
  padding: 0 0 12px;
  flex: 0 0 auto;
}

.wave {
  position: absolute;
  width: 220px;
  height: 92px;
  opacity: 0.25;
  pointer-events: none;
  background: repeating-radial-gradient(ellipse at center, transparent 0 10px, rgba(233, 47, 85, 0.35) 11px 12px, transparent 13px 20px);
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.wave-left { left: -150px; top: 48px; transform: rotate(-8deg); }
.wave-right { right: -152px; top: 34px; transform: scaleX(-1) rotate(-8deg); }

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
}

.glow-one {
  width: 132px;
  height: 132px;
  top: -38px;
  left: -72px;
  background: rgba(233, 47, 85, 0.10);
}

.glow-two {
  width: 124px;
  height: 124px;
  right: -70px;
  top: 26px;
  background: rgba(233, 47, 85, 0.08);
}

.logo-wrap {
  width: 104px;
  height: 104px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 14px 34px rgba(233, 47, 85, 0.20);
  overflow: hidden;
}

.logo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
}

h1 {
  margin: 0;
  font-size: clamp(31px, 9vw, 42px);
  line-height: .96;
  letter-spacing: -0.045em;
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
}

.subtitle {
  margin: 8px auto 0;
  font-size: 14.5px;
  line-height: 1.25;
  color: var(--muted);
  white-space: nowrap;
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  flex: 0 0 auto;
}

.link-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 11px 14px;
  color: inherit;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-card:active { transform: scale(0.985); }

@media (hover: hover) {
  .link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(233, 47, 85, 0.30);
    box-shadow: 0 18px 38px rgba(75, 31, 44, 0.14);
  }
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink);
}

.icon.shopee { color: #ee4d2d; }
.icon iconify-icon { display: block; }

.text { display: grid; gap: 4px; }

.text strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.text small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.arrow {
  color: var(--pink);
  font-size: 36px;
  line-height: 1;
  padding-left: 2px;
  font-weight: 300;
}

.bottom-footer {
  position: relative;
  margin: auto -18px 0;
  padding: 18px 20px calc(14px + env(safe-area-inset-bottom));
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 240, 244, 0.20), #fff0f4 68%);
  border-top-left-radius: 50% 22px;
  border-top-right-radius: 50% 22px;
  color: #7f7781;
  flex: 0 0 auto;
}

.bottom-footer::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 30px;
  background: #fff;
  border-bottom-left-radius: 50% 22px;
  border-bottom-right-radius: 50% 22px;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.made {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1;
  color: var(--pink);
}

.copy {
  width: min(100%, 410px);
  margin: 0 auto;
  border-top: 1px solid rgba(233, 47, 85, 0.12);
  padding-top: 9px;
  color: #7f7781;
  font-size: 12px;
  line-height: 1.25;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 78px;
  margin-top: 14px;
}

.social-footer a {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 68px;
  color: #514b53;
  text-decoration: none;
  font-size: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 20px rgba(75, 31, 44, 0.08);
}

.social-icon.instagram { color: #e4405f; }
.social-icon.tiktok { color: #111111; }

@media (max-height: 720px) {
  .page { padding-top: 12px; }
  .hero { padding-bottom: 9px; }
  .logo-wrap { width: 86px; height: 86px; margin-bottom: 10px; }
  h1 { font-size: clamp(28px, 8vw, 36px); }
  .subtitle { font-size: 13.5px; }
  .links { margin-top: 12px; gap: 10px; }
  .link-card { min-height: 68px; padding: 9px 13px; grid-template-columns: 46px 1fr auto; }
  .icon { width: 46px; height: 46px; }
  .icon iconify-icon { width: 26px; height: 26px; }
  .text strong { font-size: 16.5px; }
  .text small { font-size: 13px; }
  .bottom-footer { padding-top: 13px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
  .made { font-size: 18px; margin-bottom: 7px; }
  .copy { padding-top: 8px; font-size: 11.3px; }
  .social-footer { margin-top: 11px; }
  .social-icon { width: 38px; height: 38px; }
}

@media (max-width: 360px) {
  .subtitle { white-space: normal; }
  .social-footer { gap: 54px; }
}
