/* Cyberpunk hacker vibe with brown paper texture, olive palette, frosted glass */
:root{
  --olive: #6b8e23;
  --olive-dark: #4a6a1a;
  --bg: #6b4d2b;
  --glass: rgba(255,255,255,0.14);
  --card: rgba(255,255,255,0.08);
  --text: #e8f3d6;
  --accent: #9aff74;
  --border: rgba(255,255,255,.25);
  --shadow: rgba(0,0,0,.4);
}
*,
*::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;
  color: var(--text);
  background: var(--bg);
  /* subtle parchment texture feel */
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 8px 8px, 8px 8px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

/* Hero area with frosted glass around image */
.main {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem;
}

.image-frame {
  width: min(92vw, 860px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* Frosted glaze layer for glass effect */
.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(to bottom right, rgba(255,255,255,.08), rgba(255,255,255,.02));
  backdrop-filter: blur(6px) saturate(1.15);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

footer {
  padding: 1.25rem;
  text-align: center;
  background: rgba(0,0,0,.55);
  color: var(--text);
  margin-top: auto;
}
.product-ad {
  display: inline-block;
  padding: .5rem;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: .75rem;
}
.product-ad h3 {
  font-size: 1rem;
  margin: .25rem 0 .25rem;
  color: #d8e6b5;
}
.product-ad a {
  text-decoration: none;
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #0a0f0a;
  background: linear-gradient(135deg, rgba(141,190,45,0.95), rgba(74,100,25,0.95));
  border: 1px solid rgba(255,255,255,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-ad a:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,.5); }
.product-ad a:focus-visible { outline: 3px solid #b6d27e; outline-offset: 2px; }

footer p { margin: .25rem 0 0; font-size: .88rem; color: #dbeac0; }

/* Global focus for accessibility */
a:focus-visible { outline: 3px solid #a8d07a; outline-offset: 2px; }

/* Responsive tweaks (mobile-first) */
@media (min-width: 700px) {
  .image-frame { border-radius: 22px; }
  .image-frame img { border-radius: 18px; }
  footer { padding: 1.75rem; }
}
@media (min-width: 1024px) {
  .main { padding: 2rem 0; }
  .image-frame { width: min(80vw, 1000px); }
}