:root {
  --bg: #0b1410;
  --bg-2: #102016;
  --text: #eef6f0;
  --muted: #b8cbbb;
  --accent: #9bd5a0;       /* sage glow */
  --accent-2: #d9e6e0;     /* platinum highlight */
  --card: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.28);
  --shadow: 0 8px 22px rgba(0,0,0,.25);
  --ring: 0 0 0 4px rgba(155, 213, 160, 0.55);
  --focus: rgba(155,213,160,.9);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.5;
  background: 
    radial-gradient(circle at 20% 0%, rgba(122,175,131,.25) 0 40%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(208,232,210,.20) 0 40%, transparent 40%),
    linear-gradient(135deg, rgba(10,15,12,.9) 0%, rgba(0,0,0,.6) 60%, rgba(4,8,6,.95) 100%),
    var(--bg);
  background-blend-mode: overlay, overlay, normal, normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  /* pure CSS layered noise/scanlines */
  background-image:
    linear-gradient(rgba(0,0,0,.04), rgba(0,0,0,.04)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 2px),
    radial-gradient(circle at 25% 15%, rgba(255,255,255,.05), transparent 20%);
  mix-blend-mode: overlay;
  opacity: 0.9;
  filter: saturate(110%);
}
:focus { outline: none; }
body > * { position: relative; z-index: 1; }

header, main, footer, aside {
  display: block;
  padding: 1rem;
  margin: 0.75rem auto;
  width: min(1100px, 92vw);
  border-radius: 14px;
  /* Glass panel with backdrop (falls back gracefully) */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header { padding-block: 1.25rem; text-align: center; }
header h1 { margin: .25rem 0 .25rem; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: .2px; color: var(--text); }
header .meta { margin: .25rem 0 0; font-size: .9rem; color: var(--muted); }

nav { margin-top: .5rem; display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
nav a {
  color: var(--text);
  text-decoration: none;
  padding: .4rem .8rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.15);
}
nav a:hover, nav a:focus-visible { text-decoration: underline; outline: none; }

main { padding: 1rem 0; }
article { padding: 0; display: block; }

.featured-image { width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 8px 22px rgba(0,0,0,.28); margin: .5rem 0 1rem; }
.image-frame { width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 0 12px rgba(0,0,0,.3); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

h2 { font-size: clamp(1.25rem, 2.5vw + 1rem, 2rem); margin: .75rem 0 .25rem; color: var(--text); }
p { color: var(--muted); margin: .4rem 0; }
ul { padding-left: 1.25rem; margin: .4rem 0; color: var(--muted); }
li { margin: .25rem 0; }

blockquote {
  margin: .75rem 0;
  padding: .75rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  color: var(--text);
}

.product-ad, .sponsored-page { padding: .5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); margin: .5rem 0; display: block; text-align: center; }
.product-ad a, .sponsored-page a { color: var(--text); text-decoration: none; display: block; padding: .75rem; }
.product-ad:hover, .sponsored-page:hover { background: rgba(255,255,255,.12); }
.product-ad a { font-weight: 600; }
.sponsored-page a { font-weight: 500; }

footer { padding: 1rem; text-align: center; border-top: 0; }

.container { width: 100%; max-width: clamp(320px, 92vw, 1100px); margin: 0 auto; padding: 0 1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }

.card { background: var(--card); border: 1px solid var(--border); padding: .75rem; border-radius: 12px; }

.tag { display: inline-block; padding: .15em .5em; border-radius: 999px; font-size: .75rem; color: var(--text); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); }

a, button, .btn, .cta {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  padding: .6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.btn, .cta { background: linear-gradient(135deg, rgba(155,213,160,.9), rgba(120,170,120,.85)); border: none; }
a:hover, button:hover, .btn:hover, .cta:hover { text-decoration: underline; transform: translateY(-1px); }
a:focus-visible, button:focus-visible { outline: none; box-shadow: var(--ring); border-color: rgba(255,255,255,.6); }
a:focus-visible { outline-offset: 2px; }

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

@media print {
  body::before { display: none; }
  html, body { background: white; color: black; }
  header, main, footer { box-shadow: none; background: none; border: none; border-radius: 0; padding: 0; margin: 0; }
}
@media (max-width: 700px) {
  header, main, footer { margin: 0.5rem auto; width: min(94vw, 1100px); }
  .image-frame { aspect-ratio: 3 / 2; }
}
```