/* Light reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; padding: 0; margin: 0; }

/* Theme: purple neon glow + brown hacker vibes with frosted glass */
:root {
  --bg: #0a0a0a;
  --brown-900: #2e1d0a;
  --brown-800: #5b3d21;
  --brown-700: #7e5a32;
  --text: #e8d9c0;
  --muted: #c9b08c;
  --accent: #a055ff;
  --accent-2: #7a3bd6;
  --glass: rgba(255, 255, 255, 0.08);
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% -10%, rgba(160, 60, 255, 0.25) 0%, transparent 40%),
              radial-gradient(circle at 85% 0%, rgba(120, 0, 180, 0.25) 0%, transparent 40%),
              linear-gradient(#0a0a0a 0, #050505 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Purple neon glow background effect */
body::after {
  content: "";
  position: fixed;
  inset: -20vmin;
  background: radial-gradient(circle at 25% 25%, rgba(160, 60, 255, 0.25), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(90, 0, 160, 0.25), transparent 40%);
  filter: blur(40px);
  z-index: -1;
  animation: glowPulse 12s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0%   { transform: scale(1); opacity: 0.95; }
  100% { transform: scale(1.05); opacity: 1; }
}

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

/* Frosted glass hero frame with neon glow */
.image-frame {
  position: relative;
  width: min(92vw, 860px);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(20, 12, 8, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 0 60px rgba(120, 60, 20, 0.25),
    0 22px 60px rgba(120, 0, 180, 0.6);
}
.image-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.0) 40%, rgba(255,255,255,0.15) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* Footer with prominent Ctas and frosted vibe */
footer {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--muted);
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.product-ad {
  display: inline-block;
  margin: 0.5rem auto 0.75rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(60, 18, 8, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.20);
}
.product-ad h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #ffd8a8;
}
.product-ad a { text-decoration: none; color: inherit; }
.product-ad a p {
  margin: 0;
  padding: 0.65rem 1rem;
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(#7a4022, #50311a);
  color: #ffeed8;
  font-weight: 700;
}
.product-ad a:hover p {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4), 0 0 12px rgba(160, 90, 0, 0.6);
}
.product-ad a:focus-visible p {
  outline: 2px solid #b9a3ff;
  outline-offset: 2px;
}
footer p {
  margin: 0.25rem 0 0;
  color: #c9b08c;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  main { padding: 4rem 2rem; }
  .image-frame { width: 72%; min-width: 420px; }
  footer { padding: 2rem 0; }
}
