/* Frosted cyberpunk hero with white radial glow and coral accents */
/* Light reset */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root {
  --coral: #ff6b6b;
  --coral-dark: #e55b5b;
  --bg: #0a0f14;
  --glass: rgba(255,255,255,.14);
  --glass-border: rgba(255,255,255,.28);
  --text: #eaf2ff;
  --muted: #cbd5e1;
  --shadow: 0 10px 25px rgba(0,0,0,.35);
  --radius: 14px;
}
body {
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.75) 25%, rgba(255,255,255,.45) 60%, rgba(255,255,255,.25) 100%),
              #0b0f14;
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 2rem 1rem;
}
.image-frame {
  position: relative;
  width: min(980px, 92vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 0 40px rgba(0,0,0,.25), 0 20px 40px rgba(0,0,0,.4);
}
.image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1);
  transition: transform .5s ease;
}
.image-frame:hover img { transform: scale(1.02); }

/* Subtle cyber glow border around the frame (frosted look) */
.image-frame::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  filter: blur(.2px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
.image-frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 60px 6px rgba(255,107,107,.4);
  pointer-events: none;
  z-index: 0;
}

/* Glassy panel overlay to hint hero content (kept lightweight) */
.hero-glass {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 14px;
  width: min(860px, 92%);
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  box-shadow: 0 6px 22px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.hero-glass p { margin: 0; font-size: 0.95rem; color: #f5f7ff; opacity: .92; }
.hero-glass .cta {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #ff8a6b);
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.65);
  font-weight: 600;
  letter-spacing: .2px;
  box-shadow: 0 6px 18px rgba(255,107,107,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-glass .cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,107,107,.75); }
.hero-glass .cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Footer + product ad (frosted glass) */
footer {
  display: block;
  padding: 1rem 1rem;
}
.product-ad {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .75rem;
  padding: .6rem .9rem;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  box-shadow: var(--shadow);
  margin: 0 auto 0.75rem;
}
.product-ad h3 { font-size: .95rem; margin: 0; }
.product-ad a {
  display: inline-block;
  padding: .55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff8a6b);
  border: 1px solid rgba(255,255,255,.75);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 6px 14px rgba(255,107,107,.6);
}
.product-ad a:hover { transform: translateY(-1px); }
.product-ad a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.product-ad a p { margin: 0; padding: 0; display: inline; color: #fff; }

/* Accessible link color for body text and footer links */
a { color: #cde3ff; text-decoration: none; }
a:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* Responsive tweaks */
@media (min-width: 720px) {
  .hero-glass { bottom: 18px; width: min(860px, 88%); }
}
@media (min-width: 1024px) {
  main { padding: 2.5rem 0; }
  .image-frame { border-radius: 22px; }
}
