/* Minimal reset and cyberpunk foundation */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial;
  color: #fbeaff;
  background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #1a001a 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 180px);
}
.image-frame {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Footer / call to action */
footer {
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}
.product-ad {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  text-align: center;
  min-width: 230px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  color: #fbd6f9;
}
.product-ad h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}
.product-ad a {
  text-decoration: none;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3ea3, #ff2d8a);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.4);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.product-ad a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 78, 170, 0.5);
}
.product-ad a:focus-visible {
  outline: 3px solid #ffd9f0;
  outline-offset: 2px;
}
footer p {
  width: 100%;
  text-align: center;
  color: #c8a6b8;
  font-size: 0.88rem;
  margin: 0.75rem 0 0;
}

/* Focus improvements for accessibility elsewhere on the page */
:focus-visible {
  outline: 3px solid #ff6adf;
  outline-offset: 2px;
}

/* Responsive, mobile-first tweaks */
@media (min-width: 768px) {
  main { padding: 3rem 2rem; }
  .image-frame { border-radius: 22px; padding: 1.25rem; }
}
@media (min-width: 1000px) {
  footer { justify-content: center; }
}
@media (max-width: 480px) {
  .product-ad { min-width: 0; width: 100%; }
}