/* Minimal reset and cyberpunk, frosted-glass landing page styling */
/* Coral paper texture via layered gradients to stay lightweight */

:root{
  --bg: #0b0f15;
  --paper: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.25);
  --text: #f9e6f1;
  --pink: #ff4da6;
  --coral: #ff6f61;
  --shadow: 0 10px 28px rgba(0,0,0,.35);
}

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

html, body { height: 100%; padding: 0; margin: 0; }

/* Coral paper texture background (lightweight, responsive) */
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background-color: var(--bg);
  /* subtle coral/pink texture pattern */
  background-image:
    linear-gradient(rgba(255, 77, 166, .08), rgba(255, 77, 166, .08)),
    radial-gradient(circle at 15% 5%, rgba(255, 60, 120, .15) 0 60px, transparent 60px),
    radial-gradient(circle at 85% 20%, rgba(255, 0, 120, .08) 0 60px, transparent 60px),
    repeating-linear-gradient(45deg, rgba(255, 92, 120, .08) 0 6px, transparent 6px 12px);
  background-blend-mode: overlay, overlay, normal, normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
}

/* Layout primitives */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.image-frame {
  width: min(92vw, 980px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px) saturate(1.2);
  box-shadow: var(--shadow);
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* frosted glass caption badge on the image */
.image-frame::after {
  content: "CYBER HORROR PORTAL";
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: .35em .6em;
  border-radius: 6px;
  font-weight: 700;
  font-size: clamp(12px, 3vw, 16px);
  color: #fff;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.35);
  text-shadow: 0 0 6px rgba(255,0,120,.85);
  mix-blend-mode: screen;
  pointer-events: none;
  letter-spacing: .5px;
}

/* Featured product CTA in the footer banner-style card */
footer { padding: 1.5rem 1rem; text-align: center; }

.product-ad {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  text-align: center;
  backdrop-filter: blur(6px) saturate(1.2);
  box-shadow: var(--shadow);
}

.product-ad h3 {
  margin: 0 0 .5rem;
  font-size: clamp(1rem, 4vw, 1.25rem);
  color: #ffdbe9;
}

.product-ad a {
  display: inline-block;
  padding: .9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff5a97 0%, #ff2a6a 60%, #ff0a58 100%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 6px 16px rgba(255,0,120,.6);
  transition: transform .15s ease, box-shadow .2s ease;
}
.product-ad a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255,0,120,.75);
}
.product-ad a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
footer p {
  color: #d7b9c3;
  font-size: .95rem;
  margin: .75rem 0 0;
  opacity: .95;
}

/* Responsive tweaks */
@media (min-width: 700px) {
  main { padding: 3rem 2rem; }
  .image-frame { border-radius: 22px; }
  footer p { font-size: 1rem; }
}