/* Reset and base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
:root {
  --olive: #3b4f2a;
  --olive-dark: #223012;
  --glow: #ffd24a;
  --glow-dark: #e6b92a;
  --text: #e9fbd5;
  --glass: rgba(255,255,255,.08);
  --radius: 14px;
}
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--text);
  background: #1b1f15;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(180,190,70,.25), transparent 40%),
    linear-gradient(135deg, #2a3510 0%, #1f260b 60%, #2a3510 100%);
  background-blend-mode: overlay;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout: hero-like main and frosted sections */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: 60vh;
}
.image-frame {
  position: relative;
  width: min(92vw, 860px);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px) saturate(1.15);
  -webkit-backdrop-filter: blur(8px) saturate(1.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.image-frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(0,0,0,.25),
              0 0 40px rgba(210, 230, 100, .25);
  pointer-events: none;
}
.image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Footer with frosted glass and CTA styling */
footer {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.15);
  border-radius: 0 0 14px 14px;
}
.product-ad {
  text-align: left;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  min-width: 180px;
}
.product-ad h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--glow);
  text-shadow: 0 0 6px rgba(255,210,100,.6);
  letter-spacing: .5px;
}
.product-ad p { margin: 0; color: rgba(233,251,213,.95); font-weight: 600; }
.product-ad a {
  display: inline-block;
  margin-top: .5rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--glow) 0%, #ffd95a 60%, #f7c400 100%);
  color: #1c1a00;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.product-ad a:hover { transform: translateY(-1px); filter: brightness(1.05); }
.product-ad a:focus-visible {
  outline: 3px solid #ffd166;
  outline-offset: 2px;
}
footer p {
  color: rgba(233,239,213,.92);
  font-size: .92rem;
  letter-spacing: .2px;
  white-space: nowrap;
}

/* Headline flourish for cyberpunk vibe (optional enhancement) */
h1, h2, h3 {
  text-shadow: 0 0 8px rgba(255, 214, 100, .25);
}
h3 { font-weight: 700; }

@media (min-width: 640px) {
  main { padding: 2rem; }
  .image-frame { width: min(60vw, 860px); aspect-ratio: 16 / 9; }
  footer { padding: 1.75rem; }
  .product-ad { min-width: 260px; }
}
@media (min-width: 1024px) {
  main { padding: 3rem 2rem; }
  .image-frame { width: min(60vw, 900px); }
  footer { gap: 2rem; }
}