/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; padding: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif; color: #fff; background: linear-gradient(135deg, #f6ecd9 0%, #e8dcc2 50%, #d8c8a8 100%); min-height: 100vh; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Global focus for accessibility */
:focus-visible { outline: 3px solid #7ef6ff; outline-offset: 2px; border-radius: 6px; }

/* Layout */
main { display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; min-height: 60vh; }
.image-frame { width: min(92vw, 720px); aspect-ratio: 16 / 9; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28); border-radius: 20px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; box-shadow: 0 8px 40px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.25); backdrop-filter: blur(0.5px); -webkit-backdrop-filter: blur(0.5px); }

/* Neon frosted glass glow */
.image-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(126,246,255,.15), rgba(126,246,255,.05) 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  filter: saturate(1.2);
}
.image-frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(126,246,255,.4);
  box-shadow: inset 0 0 60px rgba(126,246,255,.25);
  pointer-events: none;
}
.image-frame img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Subtle frosted glass background behind image for hacker vibe on dark text */
.image-frame { background: rgba(255,255,255,.08); }

/* Footer / ad styling (CTA) */
footer { text-align: center; padding: 1.5rem 1rem 2rem; color: #fff; }
.product-ad { display: inline-block; padding: .75rem 1rem; margin: 0.75rem auto 0; border-radius: 12px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.product-ad h3 { font-size: 1rem; margin: 0 0 .25rem; }
.product-ad a { text-decoration: none; display: inline-block; }
.product-ad a p {
  margin: 0;
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .2s ease, background .2s ease;
}
.product-ad a:hover p { transform: translateY(-1px); background: rgba(0,0,0,.35); }

/* Footer credit spacing */
footer p { margin: 1rem 0 0; font-size: .9rem; opacity: .95; }

/* Mobile-first adjustments (if needed) */
@media (min-width: 768px) {
  main { padding: 3rem 2rem; }
  .image-frame { width: min(70vw, 760px); }
  footer { padding-bottom: 2rem; }
}