:root {
  --lavender: #a98bc7;
  --lavender-dark: #765a96;
  --pink: #f3a9c6;
  --pink-soft: #ffe8f2;
  --purple-soft: #eee5f7;
  --cream: #fffaf6;
  --ink: #493e51;
  --muted: #796e80;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(91, 65, 112, .16);
}

* { box-sizing: border-box; }
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Crafty+Girls&display=swap" rel="stylesheet">

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.95) 0 5px, transparent 6px),
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.8) 0 4px, transparent 5px),
    linear-gradient(145deg, #f8ddea 0%, #eee4fa 46%, #dcd3f1 100%);
  background-size: auto, auto, cover;
}

body::before,
body::after {
  content: "✦  ·  ♡  ·  ✦";
  position: fixed;
  color: rgba(118, 90, 150, .18);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: .5rem;
  pointer-events: none;
}
body::before { top: 5%; left: 5%; transform: rotate(-8deg); }
body::after { right: 5%; bottom: 6%; transform: rotate(8deg); }

#page-title {
    font-family: "Crafty Girls", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    color: #ed4a8e;
}

.page-shell {
  width: min(100% - 28px, 680px);
  margin: 0 auto;
  padding: 36px 0;
}

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 54px);
  text-align: center;
  background: rgba(255, 250, 246, .92);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--pink-soft);
  top: -95px;
  right: -75px;
  z-index: -1;
}

.placeholder {
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 2px dashed rgba(118, 90, 150, .45);
  color: var(--lavender-dark);
  background: linear-gradient(135deg, var(--purple-soft), var(--pink-soft));
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-art {
  width: min(300px, 78vw);
  aspect-ratio: 16 / 8;
  border-radius: 28px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--lavender-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.intro {
  max-width: 510px;
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.links {
  display: grid;
  gap: 13px;
}

.link-button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  background: var(--white);
  border: 2px solid #eadff1;
  border-radius: 22px;
  box-shadow: 0 7px 0 #e5d8ed;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: 0 10px 0 #e5d8ed;
  outline: none;
}

.link-button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--lavender-dark), #a06fb2 55%, #d987aa);
  border-color: transparent;
  box-shadow: 0 7px 0 #684d83;
}

.link-button.primary:hover,
.link-button.primary:focus-visible { box-shadow: 0 10px 0 #684d83; }

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
  background: rgba(255,255,255,.55);
  border-radius: 14px;
}

.link-button strong,
.link-button small { display: block; }
.link-button strong { font-size: 1rem; }
.link-button small { margin-top: 3px; opacity: .72; font-size: .76rem; }
.arrow { font-size: 1.4rem; font-weight: 900; }

.loading-note {
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  margin: 30px 0 20px;
  color: var(--lavender-dark);
  font-size: .88rem;
  font-weight: 800;
}
.sparkle { color: #dc8cac; }

.footer-art {
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: .7rem;
}

footer {
  margin-top: 22px;
  color: #94899a;
  font-size: .72rem;
}

@media (max-width: 520px) {
  .page-shell { width: min(100% - 18px, 680px); padding: 14px 0; }
  .card { border-radius: 26px; padding: 28px 18px; }
  .link-button { padding: 13px 14px; }
  .link-button small { font-size: .7rem; }
}
