/* Maroon radial gradient hacker-frosted cyberpunk landing - single CSS file */

/* Color vars & reset */
:root{
  --neon: #00ffd5;
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.25);
  --text: #e9e9e9;
  --maroon-dark: #0b0000;
}
*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; }
html { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, rgba(122,0,0,.95) 0%, rgba(62,0,0,.95) 40%, rgba(0,0,0,.95) 100%), #000;
  background-attachment: fixed;
}

/* Mobile-first layout */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 140px);
}
.image-frame {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  max-width: 92vw;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
footer {
  padding: 1.25rem;
  text-align: center;
  color: #c9c9c9;
}
.product-ad {
  display: inline-block;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.25);
  padding: .75rem 1rem;
  border-radius: 12px;
  margin-bottom: .75rem;
}
.product-ad h3 {
  font-size: .95rem;
  margin: 0 0 .25rem;
  color: #fff;
}
.product-ad a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e50963 0%, #7a0036 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
  transition: transform .15s ease, box-shadow .2s ease;
}
.product-ad a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.6);
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--neon);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Accessibility helpers for focus on links/buttons outside normal flow */
a:focus { outline: none; }
button:focus { outline: none; }

/* Responsive tweaks */
@media (min-width: 640px) {
  main { padding: 3rem 2rem; min-height: 70vh; }
  .image-frame { padding: 1.25rem; }
}
@media (min-width: 1024px) {
  main { padding: 4rem 3rem; min-height: 60vh; }
  .image-frame { max-width: 720px; }
  footer { padding: 1.5rem 0; }
}