/* Minimal, mobile-first cyberpunk theme with frosted glass hero and coral CTA */

/* Reset & root tokens */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: #0b0414;
  --text: #eae2ff;
  --muted: #cbb8ff;
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.25);
  --coral: #ff6f61;
  --shadow: rgba(0,0,0,0.45);
}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system;
  color: var(--text);
  background-color: var(--bg);
  /* purple crosshatch + subtle glow for hacker feel */
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.05), transparent 40%),
    repeating-linear-gradient(45deg, rgba(128,0,128,0.25) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(-45deg, rgba(255,127,80,0.25) 0 8px, transparent 8px 16px);
  background-size: cover;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Layout */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 140px);
}
.image-frame {
  width: min(980px, 92vw);
  padding: 2rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px var(--shadow);
  overflow: hidden;
}
.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
footer {
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgba(230,230,255,0.9);
}
.product-ad {
  display: inline-block;
  padding: .7rem .95rem;
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.28);
  margin-bottom: .75rem;
  transition: transform .2s ease;
}
.product-ad h3 {
  font-size: .95rem;
  margin: 0 0 .25rem 0;
  color: #ffd9cc;
}
.product-ad a {
  text-decoration: none;
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  margin-top: .25rem;
  transition: transform .2s ease, box-shadow .2s ease;
  outline: none;
}
.product-ad a:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,.4); }
.product-ad a:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

p { color: rgba(230,230,255,0.85); }

/* Responsiveness */
@media (min-width: 600px) {
  main { padding: 4rem 2rem; }
  .image-frame { padding: 2.5rem; }
  footer { padding: 2rem 0; }
}
@media (min-width: 1024px) {
  :root { --coral: #ff7f50; }
  main { padding: 6rem 0; }
  .image-frame { width: min(980px, 80vw); padding: 3rem; }
  .product-ad { font-size: 1.02rem; }
}
