:root {
  --text: #fffafd;
  --muted: #f6cce6;
  --pink: #ff52bd;
  --pink-hot: #ff2fae;
  --pink-light: #ff9cda;
  --pink-deep: #8e0c62;
  --card-border: rgba(255, 180, 225, 0.44);
  --shadow: rgba(255, 47, 174, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

html {
  background: #350022;
}

body {
  position: relative;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 118, 205, 0.64), transparent 31rem),
    radial-gradient(circle at 10% 76%, rgba(255, 58, 177, 0.34), transparent 27rem),
    radial-gradient(circle at 92% 70%, rgba(224, 33, 151, 0.34), transparent 28rem),
    linear-gradient(145deg, #210015 0%, #570037 48%, #270019 100%);
}

/* Tiny round glitter particles rather than star shapes. */
.glitter {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.98) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,190,230,.95) 0 1.3px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,.70) 0 .8px, transparent 1.6px),
    radial-gradient(circle, rgba(255,116,202,.85) 0 1.2px, transparent 2px);
  background-size:
    42px 42px,
    67px 67px,
    93px 93px,
    121px 121px;
  background-position:
    0 0,
    18px 27px,
    46px 12px,
    10px 76px;
  mix-blend-mode: screen;
  animation: glitterDrift 16s linear infinite, glitterPulse 3.2s ease-in-out infinite;
}

.glitter-two {
  opacity: 0.56;
  transform: scale(1.08) rotate(9deg);
  filter: blur(.25px);
  animation-duration: 24s, 4.4s;
  animation-direction: reverse, alternate;
}

@keyframes glitterDrift {
  from { background-position: 0 0, 18px 27px, 46px 12px, 10px 76px; }
  to { background-position: 160px 110px, -100px 170px, 130px -90px, -120px -140px; }
}

@keyframes glitterPulse {
  0%, 100% { opacity: .34; }
  50% { opacity: .82; }
}

.pink-haze {
  position: fixed;
  z-index: 0;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.haze-one {
  left: -9rem;
  top: 9rem;
  background: rgba(255, 55, 177, 0.44);
}

.haze-two {
  right: -10rem;
  bottom: 2rem;
  background: rgba(255, 118, 206, 0.38);
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.card {
  width: min(100%, 460px);
  min-height: 710px;
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 135, 210, 0.20), transparent 18rem),
    linear-gradient(180deg, rgba(116, 17, 79, 0.88), rgba(58, 5, 39, 0.90));
  box-shadow:
    0 28px 100px rgba(28, 0, 18, 0.62),
    0 0 90px var(--shadow),
    inset 0 1px 0 rgba(255, 220, 241, 0.12);
  backdrop-filter: blur(21px);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform 160ms ease;
}

/* Pink glass sheen across the whole card; no black half. */
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(
      118deg,
      transparent 20%,
      rgba(255, 210, 238, 0.17) 42%,
      rgba(255, 124, 205, 0.22) 50%,
      transparent 70%
    );
  transform: translateX(-115%);
  animation: cardShine 5s ease-in-out infinite;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .40;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 .8px, transparent 1.5px),
    radial-gradient(circle, rgba(255,173,220,.9) 0 1px, transparent 1.8px);
  background-size: 54px 54px, 83px 83px;
  background-position: 8px 15px, 29px 48px;
  mix-blend-mode: screen;
  animation: cardGlitter 5s ease-in-out infinite alternate;
}

@keyframes cardShine {
  0%, 54% { transform: translateX(-115%); }
  82%, 100% { transform: translateX(115%); }
}

@keyframes cardGlitter {
  from { opacity: .20; }
  to { opacity: .56; }
}

.pfp-wrap {
  width: 132px;
  height: 132px;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
}

.pfp {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 202, 234, 0.60);
  background: #090006;
  box-shadow:
    0 0 0 5px rgba(255, 83, 188, 0.10),
    0 0 46px rgba(255, 52, 176, 0.58);
}

.status-dot {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 12px;
  bottom: 10px;
  border-radius: 999px;
  background: var(--pink-hot);
  border: 3px solid #4a052f;
  box-shadow: 0 0 18px var(--pink);
}

.eyebrow,
h1,
.tagline,
.links,
.mini {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  color: #ff8dd2;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(255, 48, 173, 0.55);
}

h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.25rem, 8vw, 3.9rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
  text-shadow:
    0 0 20px rgba(255, 85, 188, 0.50),
    0 4px 24px rgba(78, 0, 49, 0.40);
}

.tagline {
  margin: 0.85rem auto 1.35rem;
  color: var(--muted);
  max-width: 22rem;
}

.links {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.links a,
.link-button {
  width: 100%;
  min-height: 56px;
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 174, 221, 0.24), rgba(255, 81, 185, 0.11)),
    linear-gradient(90deg, rgba(255, 92, 192, 0.20), rgba(123, 14, 82, 0.22));
  border: 1px solid rgba(255, 190, 229, 0.27);
  box-shadow:
    inset 0 1px 0 rgba(255, 222, 242, 0.12),
    0 8px 22px rgba(45, 0, 29, 0.20);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.links a:hover,
.links a:focus-visible,
.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 166, 220, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 186, 226, 0.34), rgba(255, 72, 181, 0.18)),
    linear-gradient(90deg, rgba(255, 91, 193, 0.28), rgba(144, 19, 95, 0.25));
  box-shadow:
    0 12px 34px rgba(255, 45, 170, 0.27),
    0 0 25px rgba(255, 99, 196, 0.16);
  outline: none;
}

.link-button.copied {
  border-color: rgba(255, 210, 238, 0.90);
  box-shadow: 0 0 28px rgba(255, 91, 190, 0.42);
}

.mini {
  margin: 1.1rem 0 0;
  padding-top: 0;
  color: rgba(255, 230, 245, 0.70);
  font-size: 0.8rem;
}

@media (max-width: 420px) {
  .wrap {
    padding: 1rem;
  }

  .card {
    min-height: auto;
    padding: 1.4rem;
    border-radius: 26px;
  }

  .pfp-wrap {
    width: 116px;
    height: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card::before,
  .card::after,
  .glitter,
  .links a,
  .link-button {
    animation: none;
    transition: none;
  }
}
