/* Cyberpunk, frosted-glass, lime-backed themed stylesheet (mobile-first) */

/* Root tokens */
:root{
  --lime: #32ff00;
  --glass: rgba(255,255,255,.14);
  --border: rgba(255,255,255,.28);
  --shadow: 0 10px 28px rgba(0,0,0,.25);
}

/* Reset-ish short rules */
*,
*::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, "Helvetica Neue", Arial;
  color: #fff;
  background: var(--lime);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Frosted header / hero feel over lime backdrop */
header {
  padding: 2.75rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
header h1 {
  margin: 0 0 .25rem;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 2rem;
  letter-spacing: .5px;
  text-shadow: 0 0 12px rgba(255,255,255,.9);
}
.meta {
  font-size: .92rem;
  color: rgba(255,255,255,.95);
  opacity: .95;
}

/* Main content region centered with glassy card effect */
main {
  display: grid;
  place-items: center;
  padding: 1rem;
  min-height: 60vh;
}

article {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  display: block;
}
p { color: rgba(255,255,255,.95); }

/* Footer / CTA area */
footer {
  padding: 1.25rem;
  text-align: center;
  color: rgba(255,255,255,.9);
}
.product-ad {
  margin: 0 auto 1rem;
  max-width: 720px;
  padding: .75rem;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  display: inline-block;
}
.product-ad h3 {
  display: inline-block;
  margin: 0 0 .25rem;
  font-family: monospace;
  font-weight: 700;
}
.product-ad a {
  display: inline-block;
  text-decoration: none;
}
.product-ad a p {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 8px;
  color: #001;
  background: #fff;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(0,0,0,.25);
}

/* Focus states for accessibility on interactive elements */
a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Responsive tweaks (mobile-first) */
@media (min-width: 640px) {
  header { padding: 3rem 1.5rem; }
  header h1 { font-size: 2.5rem; }
  article { padding: 1.25rem; max-width: 820px; }
}
@media (min-width: 1024px) {
  main { padding: 2rem 0; }
  article { max-width: 860px; padding: 1.5rem; }
}