/* Reset & base */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; }
:root {
  --bg: #0a0610;
  --text: #e9e0ff;
  --muted: #c9a6ff;
  --violet: #7c3aed;
  --mag: #ff2ac8;
  --glass: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.25);
}
html, body { margin: 0; padding: 0; }

/* Neon cyberpunk, magenta noise texture background */
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--text);
  background-color: var(--bg);
  /* magenta noise texture (generated look) */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,0,170,.25) 1px, transparent 2px),
    radial-gradient(circle at 4px 8px, rgba(255,0,170,.15) 2px, transparent 3px),
    radial-gradient(circle at 7px 3px, rgba(255,0,200,.12) 2px, transparent 2px);
  background-size: 8px 8px, 8px 8px, 8px 8px;
  background-repeat: repeat;
}

/* Layout: mobile-first hero */
main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 1rem;
}

/* Frosted glass frame around content (image) */
.image-frame {
  width: min(92vw, 760px);
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
  backdrop-filter: saturate(1.2) blur(6px);
  -webkit-backdrop-filter: saturate(1.2) blur(6px);
  transition: transform .25s ease;
  position: relative;
  overflow: hidden;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,0,180,.15), transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.image-frame:hover { transform: translateY(-2px) scale(1.01); }

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: saturate(1.15);
}

/* Footer with neon CTA styling */
footer {
  padding: 1.75rem 1rem;
  text-align: center;
  color: #e8dfff;
  background: rgba(0,0,0,.28);
  border-top: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
}
.product-ad {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(180,0,255,.8), rgba(120,0,120,.8));
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 0 16px rgba(255,0,170,.6);
  margin: 0 auto 0.75rem;
}
.product-ad h3 {
  font-size: .95rem;
  margin: 0;
  color: #fff;
}
.product-ad a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .95rem;
  border-radius: 999px;
  text-decoration: none;
  color: #07272a;
  background: #fff;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.15);
  transition: transform .2s ease;
  white-space: nowrap;
}
.product-ad a:hover { transform: translateY(-1px) scale(1.02); }
.product-ad a:focus-visible {
  outline: 3px solid #ff5bd5;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 70, 210, 0.25);
}
footer p { margin: .25rem 0 0; font-size: .9rem; color: #e2d8ff; }

/* Responsive tweaks */
@media (min-width: 640px) {
  main { min-height: 78vh; padding: 3rem 2rem; }
  .image-frame { width: min(700px, 70vw); }
}
@media (min-width: 1024px) {
  main { padding: 5rem 2rem; }
  .image-frame { width: min(780px, 60vw); }
}