/* Minimal reset and future cyberpunk theme with navy dot background */
:root{
  --bg: #0b1020;
  --bg-dots: rgba(46, 90, 160, 0.35);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.25);
  --red: #ff1744;
  --red-glow: rgba(255,23,68,0.8);
  --text: #e6e6f0;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  color: var(--text);
  background: var(--bg);
  /* Navy dots pattern background */
  background-image: radial-gradient(circle, var(--bg-dots) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  display: grid;
  grid-template-rows: 1fr auto;
}

/* Mobile-first layout: center hero image card as the clear hero */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.image-frame {
  width: min(92vw, 760px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 42px rgba(0,0,0,0.55);
}

/* Frosted-glass feel on the image to emphasize hacker aesthetic */
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 18px rgba(255,0,60,0.55);
  background: #0a0f1a;
}

/* Footer with a frosted panel for CTA and attribution */
footer {
  padding: 20px 16px;
}

.product-ad {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  margin: 8px 0 0;
}

.product-ad h3 {
  font-size: 0.95rem;
  margin: 0;
  color: #ffd1d1;
}

.product-ad a { display: inline-block; text-decoration: none; }

/* CTA button styled to pop with neon hacker vibe */
.product-ad a p {
  margin: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6a0d2b 0%, #b40d2f 100%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 6px 14px rgba(0,0,0,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-ad a:hover p {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,23,68,0.65);
}
.product-ad a:focus-visible p {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* General text tweaks for accessibility and contrast */
p { color: #d9dcf2; }

/* Subtle decorative neon glow on links when focused/hovered in the page */
a:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 6px; }

/* Desktop-scale tweaks for readability and layout balance */
@media (min-width: 720px) {
  main { padding: 48px; }
  .image-frame { padding: 20px; }
  footer { padding: 28px 60px 40px; }
  .product-ad { font-size: 1.02rem; }
}
