/* Light reset and color tokens */
:root {
  --pink: #ff2d95;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.25);
  --green: #39ff14;
  --green-glow: rgba(57, 255, 20, 0.8);
  --fg: #eafff0;
}

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

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: var(--pink);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Mobile-first core layout */
main {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
main::before {
  /* subtle cyber-glow behind hero for depth (futuristic hint) */
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -60px;
  top: -50px;
  background: radial-gradient(circle at center, rgba(57, 255, 20, 0.25), transparent 60%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Frosted glass image frame (hero area) */
.image-frame {
  width: min(92vw, 860px);
  padding: 1rem;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  z-index: 1;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  /* slight neon edge for hacker vibe */
  box-shadow: 0 0 14px rgba(57,255,20,.25);
}

/* Footer with prominent CTA section */
footer {
  width: 100%;
  padding: 1rem;
  display: grid;
  justify-items: center;
}

.product-ad {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.4);
  margin: 0.75rem 0;
  box-shadow: inset 0 0 8px rgba(0,255,120,.25);
}

.product-ad h3 {
  font-size: 0.95rem;
  color: #d7ffde;
  text-shadow: 0 0 6px rgba(57,255,20,.6);
  letter-spacing: .02em;
  margin: 0;
}

.product-ad a {
  display: inline-flex;
  align-items: center;
}

.product-ad p {
  margin: 0;
  padding: .25rem .75rem;
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.25);
  color: #06210c;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .01em;
  box-shadow: inset 0 0 8px rgba(0,255,120,.6);
  transition: transform .15s ease;
}

.product-ad a:focus-visible, .product-ad:focus-within {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 999px;
}

.product-ad:hover a p {
  transform: scale(1.03);
}

/* responsive tweaks */
@media (min-width: 640px) {
  .image-frame { padding: 1.25rem; }
  .product-ad { font-size: 1.02rem; }
}

@media (min-width: 1024px) {
  main { padding: 2rem; }
  .image-frame { padding: 1.5rem; }
  .product-ad h3 { font-size: 1.05rem; }
}