:root{
  --bg: #0b0f14;
  --panel: rgba(18, 18, 28, 0.65);
  --border: rgba(255,255,255,0.25);
  --text: #e8e8f0;
  --muted: #c8c3cf;
  --pink: #ff2f9e;
  --pink-deep: #d6007a;
}
*,
*::before,
*::after{ box-sizing:border-box; margin:0; padding:0; }

html, body { height:100%; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI";
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, rgba(255,0,180,.08), transparent 25%),
              radial-gradient(circle at 85% 15%, rgba(60,60,60,.25), transparent 25%),
              linear-gradient(#0b0f14,#0b0f14);
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

main{
  display:grid;
  place-items:center;
  width:100%;
  padding:1.5rem;
}

.image-frame{
  width: min(92vw, 860px);
  padding:14px;
  border-radius:20px;
  background: rgba(20,20,28,.65);
  border:1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0,0,0,.5), inset 0 0 40px rgba(255,0,180,.25);
}

.image-frame img{
  display:block;
  width:100%;
  height:auto;
  border-radius:12px;
}

footer{
  margin-top:2rem;
  padding:1.5rem;
  text-align:center;
  color:var(--muted);
}

.product-ad{
  display:inline-block;
  padding:.6rem 1rem;
  border-radius:12px;
  background: rgba(255,255,255,.08);
  border:1px solid var(--border);
  box-shadow:0 6px 20px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom:.75rem;
}

.product-ad h3{
  font-size:1rem;
  margin-bottom:.4rem;
  color:#ffd8f5;
  text-shadow:0 0 8px rgba(255,0,170,.6);
}

.product-ad a{ color:inherit; text-decoration:none; display:inline-block; }

.product-ad a p{
  display:inline-block;
  margin:0;
  padding:.4rem .9rem;
  border-radius:999px;
  font-weight:700;
  background:linear-gradient(135deg, #ff4bdc, #ff0a7a);
  color:#271a2a;
}

.product-ad a:hover p{
  transform:translateY(-1px);
  box-shadow:0 0 14px rgba(255,0,180,.8);
}

p{ font-size:0.95rem; }

a:focus-visible{
  outline:0;
  box-shadow:0 0 0 3px rgba(255,0,180,.6);
  border-radius:6px;
}

@media (min-width:768px){
  .image-frame{ padding:16px; }
  footer{ padding:2rem 0; }
}