:root {
  --brand: #ff007b;
  --brand-mid: #ff6699;
  --brand-light: #ff7da1;
  --foreground: #09090b;
  --muted: #71717a;
  --card: #faf8f5;
  --card-border: rgba(255, 255, 255, 0.9);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

/* Full-bleed blurred background from reference */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-bg__image {
  position: absolute;
  inset: -40px;
  background-image: url("/assets/background.png");
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.05);
  transform: scale(1.12);
}

.page-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 245, 0.35) 0%,
    rgba(245, 240, 232, 0.45) 100%
  );
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.25rem 2.5rem;
}

.profile-card {
  position: relative;
  width: 100%;
  max-width: 22.5rem;
  background: var(--card);
  border-radius: 1.25rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 4.25rem 1.5rem 1.75rem;
  text-align: center;
}

.profile-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 7rem;
  height: 7rem;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  box-shadow: none;
  object-fit: contain;
  padding: 0;
}

.profile-bio {
  margin: 0.25rem 0 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--muted);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: linear-gradient(
    135deg,
    var(--brand-light) 0%,
    var(--brand-mid) 45%,
    var(--brand) 100%
  );
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(255, 0, 123, 0.28);
}

.link-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 0, 123, 0.35);
}

.link-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.link-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
