/* Minimal reset and hacker/cyberpunk aesthetic with frosted glass vibe */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
:root {
  --bg-deep: #140b2a;
  --bg-violet: #2a0052;
  --bg-accent: #1a0f3a;
  --green: #2cff7f;
  --green-dark: #00e676;
  --green-soft: #35f29f;
  --text: #eafff0;
  --muted: #b7ffd9;
  --glass: rgba(255,255,255,.15);
  --glass-border: rgba(255,255,255,.25);
  --shadow: 0 10px 28px rgba(0,0,0,.35);
}
* { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background: 
    radial-gradient(circle at 20% -10%, rgba(160,0,255,.25), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(0,255,140,.25), transparent 40%),
    linear-gradient(135deg, #210032 0%, #0a001a 60%, #210032 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* soft violet wave hint across the page (decorative) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 25% 0%, rgba(110,0,180,.22), transparent 25%),
              radial-gradient(circle at 75% 20%, rgba(0,180,120,.18), transparent 28%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
  animation: drift 20s linear infinite;
}
@keyframes drift { 
  0% { transform: translateX(0); } 
  50% { transform: translateX(-6px); } 
  100% { transform: translateX(0); } 
}
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}
.image-frame {
  width: min(720px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15),
              0 16px 40px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  filter: saturate(1.05);
}
.image-frame::before {
  content: "Night Run: Neon Hackers";
  position: absolute;
  top: 14px;
  left: 14px;
  color: #daffec;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-shadow: 0 0 8px rgba(0,255,140,.8);
  pointer-events: none;
  user-select: none;
}
.image-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
  pointer-events: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  mix-blend-mode: multiply;
}
.footer {
  text-align: center;
}
footer {
  padding: 1.75rem 1rem 2rem;
  background: rgba(6,8,20,.62);
  border-top: 1px solid rgba(0,0,0,.25);
}
.product-ad {
  display: inline-block;
  padding: .9rem 1.2rem;
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(0,255,180,.6);
  color: #eafff7;
  margin-bottom: .8rem;
}
.product-ad h3 {
  display: inline-block;
  font-size: 0.95rem;
  margin: 0 0 .25rem;
}
.product-ad a {
  display: inline-block;
  text-decoration: none;
  padding: .4rem .9rem;
  border-radius: 999px;
  color: #041b16;
  font-weight: 700;
  background: linear-gradient(135deg, #00ff87 0%, #00e676 100%);
  border: 1px solid rgba(0,0,0,.25);
}
.product-ad a:focus-visible {
  outline: 2px solid #2aff8f;
  outline-offset: 2px;
}
.product-ad a:hover { transform: translateY(-1px); }

footer p {
  margin: .35rem 0 0;
  font-size: .85rem;
  color: #c6ffd9;
}
a, button { color: inherit; text-decoration: none; outline: none; }
a:focus-visible { outline: 2px solid #2aff8f; outline-offset: 2px; }

/* Responsive tweaks */
@media (min-width: 600px) {
  main { padding: 2rem 2rem; }
}
@media (min-width: 1024px) {
  main { padding: 3rem 2rem; }
}
 /* Ensure minimal visual clutter remains small footprint */