/* Mobile-first, single CSS for cyberpunk-hacker themed landing */

:root {
  --pink: #ff3aa8;
  --pink-dark: #d61e88;
  --gold: #d4af37;
  --bg: #0a0a14;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --text: #ffffff;
  --muted: #e9d7eb;
  --shadow: 0 8px 28px rgba(0,0,0,0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background-color: var(--bg);
  /* Gold striped background + pink glow for hacker vibe */
  background-image:
    repeating-linear-gradient(135deg,
      rgba(212, 175, 55, 0.65) 0px,
      rgba(212, 175, 55, 0.65) 12px,
      rgba(212, 175, 55, 0.15) 13px,
      rgba(212, 175, 55, 0.15) 25px),
    linear-gradient(120deg, rgba(255,0,170,0.20), rgba(0,0,0,0) 40%),
    linear-gradient(#11131d, #0a0a12);
  background-blend-mode: overlay, overlay, normal;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.image-frame {
  width: 92%;
  max-width: 860px;
  border-radius: 20px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 6px 20px rgba(0,0,0,0.5),
    0 0 40px 8px rgba(255, 0, 170, 0.45);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  position: relative;
  overflow: hidden;
}
.image-frame::before {
  /* subtle glow halo behind the frame */
  content: "";
  position: absolute;
  left: -6px; right: -6px; top: -6px; bottom: -6px;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 0%, rgba(255,0,170,0.5), transparent 40%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  /* slight color punch to feel cyberpunk */
  filter: saturate(110%);
}

footer {
  width: 100%;
  max-width: 860px;
  margin: 2rem auto 0;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(12, 12, 26, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-ad {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.25);
  min-width: 0;
}
.product-ad h3 {
  font-size: 0.92rem;
  margin: 0;
  color: #ffd7f6;
  white-space: nowrap;
}
.product-ad a {
  text-decoration: none;
  display: inline-block;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,0,170,.45), rgba(255,105,180,.25));
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-ad a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255,105,180,.6);
}
.product-ad a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
footer p {
  margin: 0;
  color: #e9e4ee;
  font-size: .9rem;
  opacity: .95;
}

@media (min-width: 640px) {
  main { padding: 3rem 0; }
  .image-frame { padding: 1.5rem; }
}
@media (min-width: 980px) {
  .image-frame { width: 80%; }
  footer { padding: 1rem 1.25rem; }
}