/* Minimal, mobile-first hacker-cyberpunk CSS with frosted glass */
:root{
  --bg1:#2a0055;
  --bg2:#6a00a8;
  --bg3:#1a0038;
  --gold:#ffd166;
  --gold-dark:#d9a600;
  --glass: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.22);
  --shadow: 0 12px 40px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: #f0e9d3;
  background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 50%, var(--bg3) 100%);
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 120px);
}
.image-frame {
  width: min(92vw, 760px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.image-frame::before {
  content: "";
  position: absolute;
  top: -40px; left: -40px;
  width: 70%; height: 140%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,214,0,.65), transparent 40%),
    radial-gradient(circle at 0% 60%, rgba(122,0,255,.55), transparent 40%);
  filter: blur(8px);
  transform: rotate(12deg);
  z-index: 0;
}
.image-frame > * { position: relative; z-index: 1; }

/* Frosted glass feel for the page content blocks */
footer { padding: 1.5rem; text-align: center; color: #efe6bb; }
.product-ad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(92vw, 860px);
  margin: 2rem auto;
  padding: .6rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.product-ad h3 {
  margin: 0;
  font-size: .95rem;
  color: var(--gold);
}
.product-ad a { text-decoration: none; display: inline-block; }
.product-ad a p {
  margin: 0;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #2b1f00;
  background: linear-gradient(135deg, #ffd666 0%, #f4c34f 100%);
  border: 1px solid rgba(0,0,0,.15);
}
.product-ad a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Accessibility: prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
@media (min-width: 768px){
  main { min-height: calc(100vh - 180px); }
  .image-frame { width: min(78vw, 860px); }
  .product-ad { width: min(78vw, 860px); }
}