/* Minimal reset and mobile-first, neon cyberpunk styling */

/* Reset and box sizing */
*, *::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: #111; background: linear-gradient(135deg, #f7e55a 0%, #ffd043 50%, #ffcc00 100%); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

/* Frosted glass image frame (hero) with neon hints */
.image-frame {
  width: min(720px, 92vw);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 24px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.image-frame img { width: 100%; height: auto; border-radius: 12px; display: block; }

/* Footer with glassy magenta CTA panel */
footer { padding: 1.25rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; }

/* Frosted magenta product card / CTA */
.product-ad {
  background: rgba(255, 0, 255, 0.12);
  border: 1px solid rgba(255, 0, 255, 0.25);
  border-radius: 12px;
  padding: .6rem .9rem;
  color: #fff;
  width: max-content;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.product-ad h3 { font-size: .95rem; margin-bottom: .25rem; }
.product-ad a { text-decoration: none; }
.product-ad a p {
  margin: 0;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #0b0b0b;
  background: linear-gradient(135deg, #ff6ed9, #ff00ff);
  border: 1px solid rgba(255,255,255,.9);
  display: inline-block;
}
footer p { font-size: .85rem; color: rgba(0,0,0,.65); }

/* Focus styles for accessibility (keyboard users) */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Responsive tweaks for larger screens */
@media (min-width: 640px) {
  .image-frame { width: min(860px, 88vw); }
  .product-ad h3 { font-size: 1rem; }
}
@media (min-width: 1024px) {
  main { padding: 2rem 2rem; }
}