/* Minimal reset and hacker/cyberpunk style landing CSS (single stylesheet) */

/* Color tokens and theme */
:root{
  --bg-1: #0b1020;
  --bg-2: #1a1744;
  --bg-3: #4b0a7a;
  --mag-1: #ff00ff;
  --mag-2: #d400ff;
  --text: #e9e6ff;
  --glass: rgba(255,255,255,.14);
  --glass-border: rgba(255,255,255,.25);
}

/* Light reset */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
html { font-family: ui-sans-serif, system-ui, -apple-system; }
body {
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
}

/* Layout: mobile-first, centered hero image "frame" and glassy footer card */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  width: 100%;
}

.image-frame {
  position: relative;
  width: min(92vw, 1000px);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,.6),
    0 0 40px rgba(255,0,255,.25);
  /* Subtle neon glow halo around frame */
  filter: saturate(1.05);
}

/* Image fills the frame with a touch of glow */
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  /* Neon glow for cyberpunk vibe */
  filter: saturate(1.05) contrast(1.05) drop-shadow(0 0 14px rgba(255,0,255,.55));
}

/* Frosted glass overlay near the lower portion of the image (no extra HTML) */
.image-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8%;
  width: min(70%, 520px);
  height: 64px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

/* Footer with frosted glass card containing CTA */
footer {
  padding: 1.75rem 1rem;
  display: grid;
  justify-items: center;
  background: linear-gradient(to top, rgba(0,0,0,.25), rgba(0,0,0,.0));
}

/* Glassy product ad card (CTA) */
.product-ad {
  display: grid;
  gap: .5rem;
  padding: .95rem 1rem;
  border-radius: 14px;
  background: rgba(10, 6, 20, .55);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  width: min(92vw, 680px);
}

/* Heading inside ad */
.product-ad h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: #f8f8ff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-shadow: 0 0 6px rgba(255,0,255,.6);
}

/* CTA button styled as prominent cyberpunk magenta */
.product-ad a {
  display: inline-block;
  padding: .85rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--mag-1), var(--mag-2));
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 8px 20px rgba(255,0,255,.6);
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-ad a:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(255,0,255,.75); }
.product-ad a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 255, 255, .9), 0 8px 20px rgba(255,0,255,.7);
}
.product-ad p {
  margin: 0;
  font-size: .95rem;
  color: #eaeaff;
  opacity: .95;
}

/* Footer copyright text */
footer p {
  margin: .6rem 0 0;
  font-size: .85rem;
  text-align: center;
  opacity: .9;
}

/* Focus accessibility for links elsewhere on the page (if added later) */
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,255,255,.8);
  border-radius: 6px;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive tweaks */
@media (min-width: 768px) {
  main { padding: 3rem 2rem; }
  .image-frame { width: min(92vw, 1120px); }
  .product-ad { padding: 1.1rem 1.2rem; }
  .product-ad h3 { font-size: 1.15rem; }
}
