/* CSS - Cyberpunk, frosted glass hero with magenta carbon-fiber background */

/* Light reset and base tokens */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: #0b0b14;
  --bg-dk: #0a0710;
  --text: #e9e9f0;
  --muted: rgba(255,255,255,.72);
  --coral: #FF6F61;
  --coral-dark: #e65f54;
  --glass: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.22);
  --shadow: 0 10px 28px rgba(0,0,0,.4);
  --radius: 14px;
}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 5%, rgba(255,0,170,.18), transparent 20%),
    radial-gradient(circle at 85% 25%, rgba(0,180,255,.15), transparent 25%);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,0,170,.15) 0 8px,
    rgba(255,0,170,.15) 8px,
    rgba(0,0,0,0) 8px,
    rgba(0,0,0,0) 16px
  );
  mix-blend-mode: overlay;
  opacity: .9;
  z-index: 0;
}
main { position: relative; z-index: 1; display: grid; place-items: center; padding: 2rem 1rem; min-height: 60vh; }

/* Frosted glass hero frame containing the image */
.image-frame {
  width: min(92vw, 1100px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: .75rem;
  backdrop-filter: saturate(1.2) blur(6px);
  -webkit-backdrop-filter: saturate(1.2) blur(6px);
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

/* Footer with a clear CTA section and copyright */
footer {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem 3rem;
  margin-top: 1rem;
}
.product-ad {
  display: grid;
  gap: .75rem;
  padding: .9rem 1rem;
  width: min(92vw, 520px);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
}
.product-ad h3 {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.product-ad a {
  display: inline-block;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  width: max-content;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.product-ad a:hover { background: var(--coral-dark); transform: translateY(-1px); }
.product-ad a:focus { outline: 3px solid #fff; outline-offset: 2px; }
.product-ad a:focus-visible { outline: 3px solid #ffd166; }

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

footer p { text-align: center; color: rgba(255,255,255,.7); margin: 0; font-size: .95rem; }

/* Responsive tweaks (mobile-first) */
@media (min-width: 600px) {
  main { padding: 3rem 0; }
  .image-frame { padding: 1rem; }
}
@media (min-width: 900px) {
  footer { padding: 2rem 0 4rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}