:root {
  color-scheme: dark;
  --pink: #eca8cb;
  --pink-bright: #f267ad;
  --ink: #fff9fc;
  --muted: #d6cdd2;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 54%, rgba(54, 29, 43, 0.18), transparent 31rem),
    #050505;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
}

.page-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 18px max(24px, env(safe-area-inset-bottom));
}

.profile-card {
  position: relative;
  width: min(100%, 470px);
  padding: 42px 38px 28px;
  border: 1px solid rgba(236, 168, 203, 0.27);
  border-radius: 34px;
  background: rgba(15, 14, 15, 0.96);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.68), 0 0 70px rgba(242, 103, 173, 0.045);
  text-align: center;
  isolation: isolate;
}

.avatar-wrap {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 24px;
  padding: 5px;
  border: 3px solid var(--pink);
  border-radius: 42% 42% 47% 41% / 40% 45% 42% 48%;
  transform: rotate(-3deg);
}

.avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: 50% 40%;
  transform: rotate(3deg) scale(1.025);
}

.avatar-star {
  position: absolute;
  right: -17px;
  bottom: 7px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 4px solid #0f0e0f;
  border-radius: 50%;
  color: #111;
  background: var(--pink-bright);
  font-size: 1.25rem;
  transform: rotate(3deg);
}

h1 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, sans-serif;
  font-size: clamp(2.35rem, 10vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.handle {
  margin: 11px 0 0;
  color: var(--pink);
  font-size: 0.93rem;
  font-weight: 700;
}

.intro {
  margin: 27px 0 28px;
  color: var(--muted);
  font-size: 1rem;
}

.vip-cta {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 22px;
  border: 0;
  border-radius: 18px;
  color: #171015;
  background: var(--pink);
  box-shadow: 0 17px 42px rgba(236, 168, 203, 0.19);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.vip-cta strong {
  font-size: 1rem;
  font-weight: 800;
}

.cta-arrow {
  font-size: 1.25rem;
  font-weight: 900;
}

.vip-cta:hover:not(:disabled) {
  background: #f4bad7;
  box-shadow: 0 22px 50px rgba(236, 168, 203, 0.26);
  transform: translateY(-2px);
}

.vip-cta:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.vip-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.vip-cta:disabled {
  cursor: wait;
  opacity: 0.72;
}

.fine-print {
  margin: 27px 0 0;
  color: #8f858a;
  font-size: 0.72rem;
}

.card-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(242, 103, 173, 0.12);
  border-radius: 50%;
  background: var(--pink-bright);
  box-shadow: 0 0 16px rgba(242, 103, 173, 0.5);
}

.card-dot-top {
  top: 28px;
  left: 30px;
}

.card-dot-bottom {
  right: 30px;
  bottom: 27px;
}

.sparkle {
  position: fixed;
  color: var(--pink);
  opacity: 0.78;
  pointer-events: none;
}

.sparkle-one {
  top: 14%;
  left: 15%;
  font-size: 1.35rem;
}

.sparkle-two {
  right: 12%;
  bottom: 14%;
  font-size: 1.8rem;
}

.sparkle-three {
  bottom: 9%;
  left: 10%;
  color: #f5b3d5;
  font-size: 1.6rem;
}

@media (max-width: 540px) {
  body {
    overflow-y: auto;
  }

  .page-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .profile-card {
    padding: 38px 24px 24px;
    border-radius: 29px;
  }

  .sparkle-one {
    top: 5%;
    left: 7%;
  }

  .sparkle-two {
    right: 5%;
    bottom: 5%;
  }
}

@media (max-height: 660px) {
  .profile-card {
    padding-top: 26px;
    padding-bottom: 20px;
  }

  .avatar-wrap {
    width: 116px;
    height: 116px;
    margin-bottom: 18px;
  }

  .intro {
    margin: 18px 0;
  }

  .fine-print {
    margin-top: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vip-cta {
    transition: none;
  }
}
