/* Light reset */
*, *::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, Arial;
  color: #e9f6d0;
  /* Coral metallic sheen + olive hacker vibe */
  background: 
    linear-gradient(135deg, rgba(255,111,97,.95) 0%, rgba(242,165,110,.95) 40%, rgba(40,40,40,.95) 100%),
    radial-gradient(circle at 70% -10%, rgba(255,255,255,.25), transparent 25%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.image-frame {
  width: min(92vw, 860px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 1rem;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
footer {
  padding: 1.5rem;
  text-align: center;
  color: #e9f4d8;
}
.product-ad {
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: rgba(9,40,9,.5);
  border: 1px solid rgba(255,255,255,.25);
  margin: .25rem auto 0;
}
.product-ad h3 {
  font-size: .95rem;
  margin: 0 0 .25rem;
  color: #e6ffd8;
  text-shadow: 0 0 6px rgba(111,255,180,.25);
}
.product-ad a { text-decoration: none; color: inherit; }
.product-ad a p {
  display: inline-block;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,.15));
  color: #eaffd9;
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
  transition: transform .2s ease;
  text-shadow: 0 0 6px rgba(111,255,180,.25);
}
.product-ad a p:hover { transform: translateY(-1px); }
a:focus-visible {
  outline: 3px solid #b6ffcb;
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
@media (min-width: 600px) {
  main { padding: 3rem 2rem; }
  .image-frame { padding: 1.25rem; }
}
@media (min-width: 900px) {
  .image-frame { max-width: 860px; }
  footer { padding: 2rem 0; }
}