/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

/* Pink sunset cyberpunk theme with frosted glass and retro-futuristic vibe */
:root {
  --pink-1: #ff6aa3;
  --pink-2: #ff4d9e;
  --pink-3: #e60083;
  --glass: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.28);
  --text: #fef7fb;
}

html, body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--pink-1) 0%, var(--pink-2) 60%, var(--pink-3) 100%);
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, "JetBrains Mono", monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  overflow-x: hidden;
  /* subtle cyber glow */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  box-shadow: inset 0 0 200px rgba(255, 255, 255, 0.08);
}

/* Layout: mobile-first, single-column, hero-like presentation */
main {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

/* Frosted glass card framing the image (hero area) */
.image-frame {
  width: min(92vw, 720px);
  padding: 1rem;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Footer with a prominent CTA styled as a pink neon button */
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.product-ad {
  display: inline-block;
  text-align: center;
  padding: 0.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  margin-bottom: 0.75rem;
}

.product-ad h3 {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
}

.product-ad a { text-decoration: none; color: inherit; }

.product-ad a p {
  margin: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff73b3 0%, #ff2f88 100%);
  color: #150015;
  font-weight: 700;
  letter-spacing: .3px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 14px rgba(255, 60, 140, .45);
}

/* Focus and hover accessibility for keyboard users */
.product-ad a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 999px;
}
.product-ad a:hover p {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 60, 140, 0.6);
}

/* Responsive adjustments */
@media (min-width: 700px) {
  /* Slightly larger frosted frame on bigger screens */
  .image-frame { padding: 1.25rem; border-radius: 28px; }
}