/* Minimal reset and CSS for a cyberpunk, frosted-glass landing page */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; }
html { font-size: 100%; }
:root {
  --bg-top: #1a0000;
  --bg-mid: #2b000f;
  --bg-bot: #1a0000;
  --magenta: #ff00ff;
  --magenta-dark: #d600c9;
  --red-metal: #b40015;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glow: 0 0 12px rgba(255, 0, 170, 0.8);
}
body {
  margin: 0;
  color: #f9eaff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  background: 
    radial-gradient(circle at 20% -10%, rgba(255, 0, 140, 0.22) 0, rgba(0,0,0,0) 40%),
    linear-gradient(135deg, var(--bg-top) 0%, var(--bg-mid) 40%, var(--bg-bot) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.image-frame {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  /* subtle metallic sheen overlay */
  position: relative;
  overflow: hidden;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg,
    rgba(255, 0, 170, 0.25) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(255, 0, 170, 0.15) 100%);
  mix-blend-mode: screen;
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
footer {
  padding: 2rem 1rem;
  text-align: center;
  color: #f9eaff;
}
.product-ad {
  display: inline-block;
  text-align: left;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 0, 180, 0.15);
  border: 1px solid rgba(255, 0, 180, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-ad h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem 0;
  color: #ffd9ff;
  text-shadow: 0 0 6px rgba(255, 0, 180, 0.8);
  letter-spacing: 0.4px;
}
.product-ad a {
  text-decoration: none;
  display: inline-block;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2b9d 0%, #bd00ff 100%);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 14px rgba(180, 0, 120, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-ad a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(180, 0, 120, 0.8);
}
.product-ad a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
@media (min-width: 600px) {
  main { padding: 3rem 2rem; }
  .image-frame { padding: 2rem; }
  footer { padding: 2.5rem 1rem 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}