
/* Alternative Reflection — parked page styles */
* { box-sizing: border-box; }
html, body { height: 100%; width:100%; margin:0; padding:0; overflow-x:hidden; }
body {
  margin: 0;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  color: #f2e9ff;
  background: radial-gradient(1200px 700px at 70% 10%, #311d4a 0%, #0a0714 60%, #04030a 100%);
  background-attachment: fixed;
  line-height: 1.5;
}

.starry {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.7), rgba(255,255,255,0)),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,.7), rgba(255,255,255,0)),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(255,255,255,.6), rgba(255,255,255,0)),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.5), rgba(255,255,255,0));
  opacity: .4;
  pointer-events: none;
}

.wrap {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

.main {
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 40px);
  text-align: center;
}

.card {
  max-width: 920px;
  width: min(92vw, 980px);
  background: rgba(18, 8, 28, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 80px rgba(168, 85, 247, 0.25);
  padding: clamp(16px, 3vw, 32px);
  backdrop-filter: blur(6px);
}

.hero {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 35px rgba(0,0,0,.5);
}

h1 {
  margin: 18px 0 6px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: .03em;
  color: #f8e7a8;
  text-shadow: 0 2px 0 rgba(0,0,0,.4);
}

.tag {
  font-size: clamp(16px, 2.2vw, 22px);
  color: #e9d5ff;
  opacity: .9;
}

.cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(233,213,255,.35);
  color: #f5ecff;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  background: rgba(110, 64, 145, 0.25);
  box-shadow: 0 6px 18px rgba(137, 70, 184, 0.25) inset;
}

.cta:hover { transform: translateY(-1px); background: rgba(110,64,145,.35); }
.cta:active { transform: translateY(0); }

footer {
  text-align: center;
  padding: 18px 8px 24px;
  font-size: 14px;
  color: #c7b3e6;
  opacity: .9;
}

small.muted { opacity: .7; }

/* Mobile safe spacing below image for text that may overlap */
.caption {
  margin-top: 12px;
}

.logo {
  display: none; /* placeholder if a favicon/logo is added later */
}

/* Accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
