/* Neon pink + olive hacker theme with frosted glass and cyberpunk vibes */
/* Minimal reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

/* Tokens */
:root {
  --olive: #6b8e23;
  --olive-2: #88b23c;
  --pink: #ff2bd4;
  --bg: #0a0a0a;
  --text: #e9e9e9;
  --surface: rgba(255,255,255,.08);
  --shadow: rgba(0,0,0,.6);
}

/* Global styles: mobile-first, accessible defaults */
html, body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255,0,180,.25), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0,255,140,.15), transparent 40%),
    linear-gradient(#0a0a0a, #0a0a0a);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* subtle glow around the page edges for cyberpunk vibe */
  outline: 0;
}

/* Neon glow backdrop for the page (mobile-first) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(255,0,180,.08), transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(0,255,140,.06), transparent 40%);
  mix-blend-mode: screen;
  filter: saturate(110%);
}

/* Layout: center the hero (image framed) on mobile */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  width: 100%;
}

/* Frosted glass image frame (hero) with neon hints */
.image-frame {
  position: relative;
  width: min(100%, 1000px);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  /* subtle glow around the frame to enhance neon feel */
  box-shadow:
    0 0 24px rgba(255,0,180,.25),
    0 0 60px rgba(255,0,180,.25),
    0 20px 60px rgba(0,0,0,.6);
  /* frosted glass overlay on top of the image for cyber-glass look */
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(1.05);
  /* image sits under frosted glass overlay which creates the glass effect */
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(255,255,255,.15);
}

/* Optional extra glow behind the frame for extra neon vibe (non-intrusive) */
.main-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: transparent;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(255,0,180,.15);
}

/* Footer with featured product CTA (prominent button) */
footer {
  padding: 1.75rem 1rem;
  text-align: center;
  color: #d9dde6;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.product-ad { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: .5rem 0; }
.product-ad h3 {
  font-size: 0.95rem;
  color: #ffdafe;
  text-shadow: 0 0 6px rgba(255,0,170,.8);
}
.product-ad a { text-decoration: none; }
.product-ad a p {
  margin: 0;
  display: inline-block;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  background: var(--olive);
  color: #0b0b0b;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 6px 14px rgba(107,142,35,.45);
  transition: transform .15s ease, background .2s ease;
}
.product-ad a:hover p,
.product-ad a:focus-visible p {
  background: #7abc3a;
  transform: translateY(-1px);
}
.product-ad a:focus-visible p {
  outline: 3px solid #ff6bd0;
  outline-offset: 2px;
}
footer p { margin-top: .25rem; font-size: .9rem; color: #cbd5e1; }

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

/* Responsive tweaks (desktop) */
@media (min-width: 640px) {
  main { padding: 3rem 1.5rem; }
  .image-frame { border-radius: 20px; }
}
@media (min-width: 900px) {
  .product-ad h3 { font-size: 1.05rem; }
  .image-frame { max-width: 1100px; }
} 
/* Optional color-scheme hint for dark mode users */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; }
}