/* Light reset and a clean, compact stylesheet (mobile-first) */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
:root {
  --fg: #e8e8e8;
  --muted: #b5b5b5;
  --card: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.25);
  --bg1: #120018;
  --bg2: #260028;
  --bg3: #0a0010;
  --mag: #ff08c3;
  --mag-dark: #a40079;
}
html { color-scheme: dark; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--fg);
  background: radial-gradient(circle at 20% -10%, rgba(255,0,200,.25), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(128,0,255,.25), transparent 25%),
              linear-gradient(135deg, #120020 0%, #260028 40%, #0a0010 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout and hero / frosted glass card */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: 70vh;
}
.image-frame {
  width: min(860px, 92vw);
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  filter: saturate(1.05);
}

/* Footer area with a prominent CTA (frosted glass card) */
footer {
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,.15) 60%, transparent);
}
.product-ad {
  width: min(680px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: saturate(1.2) blur(6px);
  -webkit-backdrop-filter: saturate(1.2) blur(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}
.product-ad h3 {
  font-size: 1rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
}
.product-ad a { text-decoration: none; display: block; }
.product-ad p {
  margin: 0;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,0,180,.95), rgba(128,0,255,.95));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 6px 14px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.product-ad a:hover p { transform: translateY(-1px); }
.product-ad a:focus-visible p { outline: 3px solid rgba(255,255,255,.8); outline-offset: 2px; }

/* Responsive adjustments (mobile-first) */
@media (min-width: 720px) {
  main { padding: 4rem 2rem; }
  .image-frame { border-radius: 24px; padding: 2rem; }
  .product-ad { padding: 1rem 1.25rem; }
  .product-ad h3 { font-size: 1.05rem; }
}
@media (min-width: 1024px) {
  main { min-height: 84vh; }
  .image-frame { max-width: 980px; }
  .product-ad { gap: 2rem; padding: 1.25rem 1.5rem; }
  .product-ad p { font-size: 1.05rem; padding: .85rem 1.25rem; }
}