/* CSS: Cyberpunk hacker theme with frosted glass, green paper texture vibe, mobile-first */ 

/* Light reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: #e9f7ee;
  min-height: 100vh;
  /* Green paper texture vibe using layered gradients (no external image) */
  background-color: #0a1f0e;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,.18) 1px, transparent 1px),
    radial-gradient(circle at 20px 20px, rgba(0,0,0,.08) 1px, transparent 1px),
    linear-gradient(#1a5a2a 0%, #113a15 100%);
  background-size: 22px 22px, 22px 22px, cover;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
}

/* Layout: hero-like main area and footer */
main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.image-frame {
  width: min(92vw, 900px);
  border-radius: 16px;
  padding: 0.75rem;
  background: rgba(12, 28, 12, 0.55);
  border: 1px solid rgba(255, 170, 0, 0.65);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Footer with frosted glass feel and orange CTA accent */
footer {
  padding: 1rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 168, 0, 0.6);
  color: #dbeed8;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.product-ad {
  display: inline-block;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: rgba(8, 18, 8, 0.65);
  border: 1px solid rgba(255, 140, 0, 0.85);
  margin-bottom: 0.4rem;
  box-shadow: inset 0 0 6px rgba(0,0,0,.25);
}
.product-ad h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: .25rem;
}
.product-ad a { text-decoration: none; }
.product-ad a p {
  display: inline-block;
  padding: .58rem 1rem;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff8a00 0%, #e65c00 100%);
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.product-ad a p:hover,
.product-ad a p:focus {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 6px 14px rgba(255, 110, 0, .6);
}
footer p {
  margin-top: .4rem;
  color: #a8d6a8;
  font-size: .85rem;
}

/* Accessibility: clear focus indicators for interactive elements */
a:focus-visible,
button:focus-visible {
  outline: 3px solid #b7ff00;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Responsive tweaks (mobile-first) */
@media (min-width: 768px) {
  main { padding: 3rem; }
  .image-frame { width: min(70vw, 1000px); }
  footer { padding: 1.5rem 0; }
}