:root {
  --bg: #0b0f14;
  --bg-2: #1a1b1f;
  --text: #eef2f7;
  --muted: #98a2b3;
  --accent: #d4b028; /* mustard */
  --accent-2: #f2d764;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-2: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.25);
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
}

html, body {
  height: 100%;
  box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Layered background: gradient + subtle scanlines (pure CSS) */
html, body {
  background-image:
    linear-gradient(135deg, rgba(40, 44, 54, 0.6), rgba(16, 18, 22, 0.8)),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 2px);
  background-attachment: fixed;
  background-blend-mode: overlay;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(circle at 20% 10%, rgba(212, 204, 120, .08), transparent 40%),
              radial-gradient(circle at 85% 60%, rgba(60, 90, 120, .06), transparent 40%);
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  /* faint vignette for depth */
  background: radial-gradient(ellipse at center, rgba(0,0,0,.0) 40%, rgba(0,0,0,.25) 100%);
  mix-blend-mode: multiply;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 6px;
}
button { font-family: inherit; }

.header, header, nav, main, article, aside, footer {
  display: block;
}

/* Layout scaffolding */
.container {
  width: 100%;
  max-width: clamp(320px, 86vw, 1100px);
  margin-inline: auto;
  padding-inline: 1rem;
}
.grid {
  display: grid;
  gap: 1rem;
}
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@supports not (backdrop-filter: blur(12px)) {
  .card { background: rgba(255,255,255,0.12); }
}
.tag {
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .75rem;
  border: 1px solid rgba(212, 176, 40, .8);
  background: rgba(212, 176, 40, .25);
  color: #fff;
}
.image-frame {
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  background: rgba(0,0,0,.25);
  margin: 0 auto;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Base typography */
.content {
  padding: 1rem;
}
h1, h2, h3 {
  line-height: 1.08;
  margin: 0 0 .5rem;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: .2px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
}
p {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: #f0f4f8;
  margin: .5rem 0 1rem;
}
blockquote {
  margin: .75rem 0;
  padding: .5rem 1rem;
  border-left: 4px solid var(--accent);
  background: rgba(0,0,0,.14);
  border-radius: 6px;
  color: #fff;
}
ul { padding-left: 1.25rem; margin: .25rem 0 1rem; }
li { margin: .25rem 0; }

/* Header / navigation */
header {
  width: min(1100px, 92%);
  margin: 1rem auto;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.28);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
header h1 { margin-bottom: .25rem; color: #fff; font-weight: 800; }
header .meta { color: var(--muted); font-size: .9rem; }

/* Nav links */
nav {
  margin-top: .25rem;
}
nav a {
  color: var(--accent-2);
  padding: .25rem .5rem;
  border-radius: 6px;
}
nav a:hover { text-decoration: underline; }

/* Main content alignment */
main {
  display: block;
}
article {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.featured-image { display:flex; justify-content:center; padding: .25rem 0 1rem; }
@media (min-width: 700px) {
  .featured-image { padding: 0 0 1rem; }
}
footer {
  width: min(1100px, 92%);
  margin: 2rem auto 3rem;
  padding: 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.product-ad, .sponsored-page {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.product-ad a, .sponsored-page a { color: #fff; text-decoration: none; display: block; font-weight: 600; }
.product-ad:hover, .sponsored-page:hover { transform: translateY(-1px); }

/* Interaction primitives */
.btn, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6);
  background: var(--accent);
  color: #171712;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  user-select: none;
}
.btn:hover, .cta:hover { transform: translateY(-1px); background: #e5a90a; }
.btn:active, .cta:active { transform: translateY(0); }
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn + .btn { margin-left: .5rem; }

/* Lists/sections helpers */
ul.multi { padding-left: 1rem; }
.container, .content, .grid { /* helper types keep spacing consistent */ }

/* Responsive grid utilities (auto-fit) */
.grid.auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .75rem; }

/* Accessibility: print readability */
@media print {
  body { background: #fff; color: #000; }
  header, nav, main, footer { background: transparent; color: #000; }
  a { text-decoration: underline; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
aside { display: none; }

/* Section headers to satisfy "section headers" requirement in comments */

/* Base */
html, body { height: 100%; }
```