/* Minimal, mobile-first, single stylesheet for a cyberpunk landing vibe */

/* Light reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI"; color: #f8eaff; line-height: 1.4; }

:root {
  --maroon-1: #5a0e0e;
  --maroon-2: #2b0000;
  --magenta-1: #ff00ff;
  --magenta-2: #ff2bd8;
  --glass: rgba(255, 255, 255, 0.08);
  --text-on-glass: rgba(255, 255, 255, 0.95);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Maroon gradient background with magenta accents for hacker vibe */
body {
  background: linear-gradient(135deg, var(--maroon-1) 0%, #4a0000 40%, var(--maroon-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* Frosted glass feel and future cyberpunk UI */
.image-frame {
  width: min(92vw, 980px);
  margin: 2.25rem auto;
  padding: 1rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  filter: saturate(1.05);
  outline: 1px solid rgba(255,255,255,.25);
}

/* Footer and product ad styling (CTA) */
footer {
  padding: 1.75rem 1rem;
  text-align: center;
  color: #f4eaff;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: auto;
}

.product-ad {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgba(255, 0, 170, 0.22);
  border: 1px solid rgba(255,255,255,.40);
  cursor: pointer;
  transition: transform .2s ease;
  box-shadow: 0 6px 18px rgba(255,0,170,.35);
}
.product-ad:hover { transform: translateY(-1px); }

.product-ad h3 {
  font-size: .95rem;
  margin: 0;
  color: #ffdfff;
  letter-spacing: .2px;
}

.product-ad a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.product-ad a p {
  display: inline-block;
  margin: 0;
  padding: .52rem .95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,0,255,.95), rgba(255,0,255,.65));
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 0 12px rgba(255,0,255,.6);
  line-height: 1;
}

/* Focus accessibility */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Subtle neon glow accents for hacker theme on text elements */
h1, h2, h3, p { text-shadow: 0 0 6px rgba(255,0,255,.25); }

/* Layout helpers for small screens (mobile-first) */
main { display: grid; place-items: center; padding: 1rem; }

/* Responsive tweaks */
@media (min-width: 768px) {
  main { padding: 2.5rem 1.5rem; }
  .image-frame { border-radius: 24px; padding: 1.25rem; }
  .image-frame img { border-radius: 18px; }
  footer { padding: 2rem 1rem; }
}

@media (min-width: 1024px) {
  .image-frame { width: min(1000px, 86vw); padding: 1.5rem; }
  .product-ad { font-size: 1rem; }
}