/* CSS: cyberpunk coral-to-lime hero with frosted glass, mobile-first */

/* Reset and base vars */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root {
  --coral-1: #ff6f61;
  --coral-2: #ff5a4a;
  --lime: #b6ff00;
  --lime-soft: #8aff00;
  --bg: #0a0a0a;
  --glass: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.22);
  --text: #eaffcc;
}
body {
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  color: var(--text);
  /* coral gradient background with a neon lime accent feel */
  background: linear-gradient(135deg, var(--coral-1) 0%, #ff7a6b 40%, #ff3d69 100%);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}
body::before {
  /* subtle neon grid/scanline overlay for cyberpunk vibe */
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20px 20px, rgba(0,255,120,.08) 2px, transparent 2px),
    radial-gradient(circle at 60px 60px, rgba(0,255,120,.05) 2px, transparent 2px);
  background-size: 80px 80px, 120px 120px;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.25;
  filter: saturate(1.2);
}
main {
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  min-height: 60vh;
}
.image-frame {
  width: min(92%, 860px);
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  /* subtle color punch */
  filter: saturate(1.15) contrast(1.05);
}
footer { padding: 1.75rem 1rem 2rem; text-align: center; }

/* Frosted glass product panel (CTA) */
.product-ad {
  display: inline-grid;
  justify-items: center;
  gap: .5rem;
  width: min(90%, 720px);
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.product-ad h3 {
  margin: 0;
  font-size: 1rem;
  color: #d7ffae;
  text-shadow: 0 0 6px rgba(170,255,110,.6);
}
.product-ad a {
  display: inline-block;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  background: linear-gradient(135deg, rgba(0,0,0,.15), rgba(0,0,0,.28));
  color: #eaffb5;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}
.product-ad a:hover { transform: translateY(-1px); }
.product-ad a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}
.product-ad a > p { margin: 0; padding: 0; }

/* Footer text */
footer p { margin: .6rem 0 0; color: rgba(230,255,210,.9); font-size: .9rem; }

/* Hyperlinks / CTAs accessibility */
a { color: var(--lime); text-decoration: none; outline: none; }
a:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; border-radius: 4px; }

/* Responsive adjustments (mobile-first) */
@media (min-width: 700px) {
  main { padding: 6rem 1rem; }
  .image-frame { padding: 1.25rem; width: min(70%, 950px); }
  .product-ad { width: 60%; }
  .product-ad h3 { font-size: 1.15rem; }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}