/* Frosted cyberpunk, magenta waves, hacker vibe - single stylesheet */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg1: #0a0220;
  --bg2: #1a003a;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.20);
  --text: #e9e0ff;
  --muted: #cbb8ff;
  --neon: #ff2bd9;
  --violet: #7e4dff;
  --acc: #a72aff;
  --shadow: 0 18px 40px rgba(0,0,0,.45);
}

html, body { height: 100%; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Inter", "Segoe UI", Roboto;
  color: var(--text);
  line-height: 1.6;
  min-height: 100%;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255,0,180,.25) 0 40px, transparent 40px),
    radial-gradient(circle at 80% 20%, rgba(170,0,255,.25) 0 60px, transparent 60px),
    linear-gradient(135deg, rgba(10,0,40,.95), rgba(40,0,60,.95) 60%, rgba(0,0,0,.95) 100%);
  background-blend-mode: screen, screen, normal;
  background-color: #0a0220;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

header, .product-ad {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

header { text-align: center; width: min(1100px, 92%); margin: 2rem auto 1rem; }

header h1 { font-size: clamp(2rem, 4vw + 1rem, 4rem); margin-bottom: .25rem; color: #fff; text-shadow: 0 0 14px rgba(255,0,200,.9); letter-spacing: .02em; }

header .meta { color: #e5d4ff; font-size: .92rem; opacity: .95; }

main { display: flex; justify-content: center; padding: 0 1rem; }

article { max-width: 700px; width: 100%; padding: 0 0.5rem; color: #e8dfff; }

.featured-image { margin: 1rem auto; overflow: hidden; border-radius: 14px; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 14px 40px rgba(0,0,0,.5); }

.featured-image img { display: block; width: 100%; height: auto; }

footer { padding: 2rem 1rem; display: grid; gap: 1rem; justify-items: center; }

.product-ad { width: 100%; max-width: 900px; text-align: center; padding: 1.25rem; }

.product-ad h3 { margin-bottom: .5rem; font-weight: 700; color: #fff; text-shadow: 0 0 10px rgba(255,0,180,.8); }

.product-ad a { text-decoration: none; display: inline-block; }

.product-ad a p {
  margin: 0;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #a21aff 0%, #ff2bd9 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  border: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.4);
}

footer p { color: rgba(229, 225, 255, .9); text-align: center; font-size: .92rem; }

a:focus-visible {
  outline: 3px solid #ff4bd6;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Responsive tweaks */
@media (min-width: 720px) {
  header { padding: 2.5rem; }
  article { font-size: 1.05rem; }
  .product-ad { padding: 1.5rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}