:root{
  --bg: #0a0a0d;
  --bg2: #0b0b12;
  --panel: rgba(22, 24, 30, 0.72);
  --glass: rgba(255, 255, 255, 0.08);
  --pink: #ff2eaa;
  --pink-soft: #ff6ccf;
  --text: #f3e8f5;
  --muted: #c8a7b8;
  --border: rgba(255, 0, 180, 0.45);
  --shadow: 0 8px 26px rgba(255, 0, 180, 0.25);
}
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient( circle at 20% -10%, rgba(255,0,190,.08), transparent 40% ),
              radial-gradient( circle at 100% 0%, rgba(255,0,200,.08), transparent 40% ),
              linear-gradient(#0b0b12, #0a0a0d 60%);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global frost glass look on major sections */
header,
main,
footer,
article {
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  background: var(--glass);
  border: 1px solid rgba(255, 0, 180, 0.4);
  box-shadow: var(--shadow);
  border-radius: 14px;
}

/* Layout helpers (mobile-first) */
.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  padding: 1.75rem 1rem;
  display: grid;
  gap: .25rem;
  align-items: start;
  background: linear-gradient(180deg, rgba(8,8,14,.75), rgba(8,8,14,.55));
  border-bottom: 1px solid rgba(255,0,180,.35);
  margin: 1rem auto;
  width: calc(100% - 2rem);
  border-radius: 16px;
}
header h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 3.25rem);
  line-height: 1.05;
  margin: 0;
  color: #ffd2f0;
  text-shadow: 0 0 14px rgba(255,0,170,.6);
}
header .meta {
  font-size: 0.92rem;
  color: #ffd8f6;
  opacity: .92;
  margin-top: .15rem;
}

/* Hero highlight bar for visual depth (thin glow) */
.header-glow {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,0,170,.9), transparent);
  border: 0;
  margin: 0.25rem 0 0;
  opacity: .9;
  filter: saturate(120%);
}

/* Main content area */
main {
  padding: 0;
  display: grid;
  place-items: center;
  min-height: calc(100dvh - 220px);
}

article {
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
}
.featured-image {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,0,170,.45);
  margin: 0 0 1rem;
  background: #000;
}
.featured-image img {
  display: block;
  width: 100%;
  height: auto;
  display: block;
  image-rendering: crisp-edges;
}
article p {
  color: var(--text);
  padding: .5rem 0;
  text-wrap: pretty;
}
article em { color: var(--muted); }

/* Intro text container feel (soft glow) for the long narrative */
.narrative {
  padding: .75rem 0;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  border: 1px solid rgba(255,0,170,.35);
  padding: 1rem;
}

/* Footer with a prominent CTA area */
footer {
  padding: 1.25rem;
  margin: 1rem auto 2rem;
  text-align: center;
  color: #f6e5f2;
  background: rgba(8,8,14,.75);
  border-top: 1px solid rgba(255,0,180,.4);
}
.product-ad {
  padding: .75rem;
  border-radius: 12px;
  display: inline-block;
  text-align: left;
  max-width: 900px;
  width: 100%;
  background: rgba(15,15,22,0.65);
  border: 1px solid rgba(255,0,180,.5);
  box-shadow: inset 0 0 12px rgba(0,0,0,.25), 0 6px 24px rgba(255,0,180,.25);
  margin-bottom: .75rem;
}
.product-ad h3 {
  font-size: 1rem;
  margin: 0 0 .25rem;
  color: #ffd6f7;
}
.product-ad a {
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,0,170,.95) 0%, rgba(255,40,135,.95) 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,0,180,.8);
  box-shadow: 0 6px 14px rgba(255,0,170,.65);
}
.product-ad a:hover { transform: translateY(-1px); filter: brightness(1.05); }
footer p { margin: 0.25rem 0 0; opacity: .85; }

/* Links and focus states for accessibility */
a,
button {
  color: var(--pink);
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
  border-radius: 6px;
}
a:hover { text-decoration: underline; }

/* Subtle particle-like border accents for a cyberpunk feel */
@media (min-width: 600px) {
  header { padding: 2rem 1.25rem; }
  article { padding: 1.25rem; }
}
@media (min-width: 900px) {
  main { padding: 1.5rem 0 0; }
  article { padding: 1.5rem 1.25rem; }
  .featured-image { border-radius: 14px; }
}
@media (min-width: 1024px) {
  header { padding: 2.25rem 1.75rem; border-radius: 18px; }
  .product-ad { display: block; margin-top: .5rem; }
}