/* Global reset and core styles (light reset) */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: #e9d6a8;
  background: #0a0a0a;
  /* subtle parchment-like texture with gold hues */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212,175,55,.08) 0 6px, transparent 6px),
    radial-gradient(circle at 70% 60%, rgba(212,175,55,.06) 0 6px, transparent 6px);
  background-size: 20px 20px, 26px 26px;
  background-repeat: repeat;
  min-height: 100%;
}

/* Layout container (mobile-first, hero-style) */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: 60vh;
}

/* Frosted glass "hero" frame around the image */
.image-frame {
  width: min(92vw, 860px);
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.image-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25);
  pointer-events: none;
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: saturate(1.05);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

/* Footer with a prominent, glowing CTA look */
footer {
  color: #e9d6a8;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.0) 100%);
  margin-top: 2rem;
}
.product-ad {
  display: inline-block;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(214,173,40,0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  margin-bottom: .75rem;
}
.product-ad h3 {
  font-size: .95rem;
  margin: 0 0 .25rem 0;
  color: #ffd27a;
  text-shadow: 0 0 6px rgba(212,175,55,.6);
}
.product-ad a {
  text-decoration: none;
}
.product-ad a p {
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 8px;
  color: #111;
  background: linear-gradient(135deg, #ffd34a 0%, #f0c140 60%, #d6a712 100%);
  border: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 6px 14px rgba(214,173,40,0.6);
  font-weight: 700;
}
.product-ad a:focus-visible, .product-ad:focus-within a:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}
footer p {
  color: #c8b96b;
  font-size: .9rem;
  opacity: .95;
}

/* Accessible global focus for links (keyboard users) */
a:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Responsive tweaks (mobile-first) */
@media (min-width: 720px) {
  main { padding: 3rem 2rem; }
  .image-frame { padding: 1.25rem; }
  .product-ad h3 { font-size: 1.05rem; }
}
@media (min-width: 1024px) {
  .image-frame { width: 860px; }
  footer { font-size: 1.05rem; }
}