/* Minimal reset and hacker-style CSS for a magenta/purple cyberpunk landing page */

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

/* Color tokens and glass look */
:root {
  --text: #eae0ff;
  --muted: #c9baff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.25);
  --accent: #a100ff;
}

body {
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.5;
  min-height: 100vh;
  /* Magenta radial gradient background with purple hues for a hacker vibe */
  background: radial-gradient(circle at 15% 10%, rgba(255,0,170,.28) 0%, rgba(255,0,170,.10) 25%, transparent 60%),
              radial-gradient(circle at 85% 0%, rgba(120,0,200,.28) 0%, rgba(120,0,200,.10) 25%, transparent 60%),
              #0a001a;
  background-blend-mode: screen;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-frame {
  width: 100%;
  max-width: 640px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 60px rgba(255,0,180,.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.15);
  /* Subtle neon glow around the image */
  box-shadow: 0 0 22px rgba(180,0,255,.65);
}

footer {
  width: 100%;
  padding: .75rem;
  margin-top: 1rem;
  color: var(--muted);
  display: block;
  text-align: center;
}

/* Frosted glass Ad block with prominent CTA */
.product-ad {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  border-radius: 14px;
  background: rgba(8,0,20,.40);
  border: 1px solid rgba(255,255,255,.25);
  margin: 0 auto;
  width: min(92%, 1100px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-ad h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 6px rgba(180,0,255,.6);
}

.product-ad a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: .65rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #8a2be2 0%, #6f00e6 60%, #3d0066 100%);
  border: 0;
  box-shadow: 0 0 14px rgba(138,43,226,.85);
}
.product-ad a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.product-ad p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

/* Footer copyright line tweaks for readability on dark bg */
footer p { margin: 0.25rem 0 0; color: #e9dfff; font-size: .9rem; }

/* Focus styles for accessibility on any interactive element */
a:focus-visible,
button:focus-visible,
[data-focus] {
  outline: 3px solid #fff;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Responsive: mobile-first, scale up on larger screens */
@media (min-width: 768px) {
  main { padding-top: 2rem; }
  .image-frame { max-width: 900px; }
  .product-ad { justify-content: space-between; padding: 1rem 1.25rem; }
  .product-ad h3 { font-size: 1rem; }
}