/* Minimal reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
html { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial; }
body {
  margin: 0;
  color: #f8f1ff;
  background: #0a0a12;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Magenta / pink abstract blur background (futuristic hacker vibe) */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 50vmax;
  height: 50vmax;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.9;
}
body::before {
  left: -10vmax;
  top: -10vmax;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,0,180,.65) 0 40%, transparent 40%),
    radial-gradient(circle at 60% 60%, rgba(0,255,210,.25) 0 60%, transparent 60%);
}
body::after {
  right: -10vmax;
  bottom: -10vmax;
  background:
    radial-gradient(circle at 40% 40%, rgba(255,0,120,.65) 0 40%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(0,180,255,.25) 0 60%, transparent 60%);
}

/* Layout: mobile-first, centered hero */
main {
  display: grid;
  place-items: center;
  min-height: 68vh;
  padding: 2rem 1rem;
}

/* Frosted glass panel around the image (hero) */
.image-frame {
  width: 100%;
  max-width: 760px;
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Footer with featured product (CTA) and copyright */
footer {
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #e8dff1;
  background: rgba(10, 10, 18, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.product-ad {
  display: inline-block;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 0.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-ad h3 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
}
.product-ad a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5bd6 0%, #ff2d8c 100%);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 14px rgba(255, 43, 140, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-ad a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 43, 140, 0.65);
}
.product-ad a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
footer p {
  margin: 0.4rem 0 0;
  color: #d7c4d9;
  font-size: 0.92rem;
}
a { color: #ffd6f5; text-decoration: none; }

/* Focus and accessibility for links in general */
a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Small screens: tighten spacing for compact feel */
p, h3 { margin: 0; }

@media (min-width: 768px) {
  main { padding: 3rem 2rem; min-height: 72vh; }
  .image-frame { padding: 1.5rem; }
  .product-ad { padding: 0.8rem 1.2rem; }
  footer p { font-size: 1rem; }
}

@media (min-width: 1024px) {
  main { padding: 4rem 2rem; }
  .image-frame { padding: 2rem; border-radius: 22px; }
}