/* Global reset and hacker-cyber aesthetic */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
:root {
  --text: #e6f0ff;
  --muted: #b9c7e6;
  --glass: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.22);
  --accent: #7bdfff;
}
html, body { margin: 0; }

body {
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(135deg,
    #060b1a 0%,
    #0b1b34 30%,
    #1a1747 60%,
    #2f0e1a 85%,
    #ff7a1a 100%);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Light reset for layout */
* { box-sizing: border-box; }
main { display: grid; place-items: center; padding: 4rem 1rem; }
footer { padding: 2rem 1rem; text-align: center; color: #d9e4f7; }

/* Frosted-glass hero frame for the image */
.image-frame {
  width: min(92vw, 920px);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: .75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: saturate(0.95);
}

/* Product ad / CTA styling (prominent, accessible) */
.product-ad {
  display: inline-block;
  padding: .6rem;
  border-radius: 12px;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: .75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-ad h3 {
  font-size: .88rem;
  margin: 0 0 .4rem;
  color: #eaffff;
  text-shadow: 0 0 6px rgba(0,255,255,.5);
}
.product-ad a {
  text-decoration: none;
  display: inline-block;
  padding: .65rem 1.1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,0,0,.9), rgba(20,20,20,.95));
  color: #e6f4ff;
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 700;
  letter-spacing: .4px;
}
.product-ad a:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.22));
  transform: translateY(-1px);
}
.product-ad a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Focus styles for accessibility on links/buttons elsewhere */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Small screens feel */
@media (min-width: 780px) {
  main { padding: 6rem 2rem; }
  .product-ad { padding: .8rem 1.4rem; }
  .product-ad h3 { font-size: 1rem; }
}