*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #ff6eb6;
  --pink-dark: #d83e8b;
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --text: #f8f8ff;
  --focus: 0 0 0 3px rgba(255, 92, 180, 0.6);
}

html, body { height: 100%; }

body {
  min-height: 100%;
  font-family: ui-sans-serif, system-ui, -apple-system;
  color: var(--text);
  background: linear-gradient(135deg, #2a0000 0%, #590015 40%, #ff2b59 100%);
  line-height: 1.4;
}

main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 6rem);
}

.image-frame {
  width: min(92vw, 860px);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  position: relative;
}

.image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.05);
}

footer {
  padding: 1.2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(to top, rgba(0,0,0,0.0), rgba(0,0,0,0.15));
}

.product-ad {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 0.5rem;
  transition: transform 0.2s ease;
}

.product-ad h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #ffd3e3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.product-ad a {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #180014;
  background: linear-gradient(135deg, #ff6eb6 0%, #d94f9a 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.product-ad a:hover { transform: translateY(-1px); }
.product-ad a:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), 0 0 0 6px rgba(255, 92, 180, 0.8); }

.product-ad a p { margin: 0; color: #170013; }

footer p { margin: 0.6rem 0 0; opacity: 0.85; }

/* Focus for accessibility on any interactive element that can receive focus */
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 999px; }

@media (min-width: 640px) {
  .image-frame { border-radius: 22px; }
  .product-ad { padding: 0.9rem 1.1rem; }
}

@media (min-width: 900px) {
  main { padding: 3rem 2rem; }
  .image-frame { width: min(720px, 60vw); aspect-ratio: 16/9; }
}