:root {
  /* Palette inspired by jade smoke + powder rose */
  --bg: #0b0f14;
  --bg-2: #11161d;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.12);
  --text: #eaf2ff;
  --muted: #a9b8c9;
  --accent: #f07ba9;
  --accent-2: #a55a7b;
  --glow: rgba(240, 123, 169, 0.65);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

html { color-scheme: dark; }

body {
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: clamp(14px, 1.2vw + 12px, 18px);
  line-height: 1.5;
  background: linear-gradient(135deg, rgba(8,12,18,0.95) 0%, rgba(12,18,24,0.95) 60%, rgba(8,12,18,0.95) 100%), 
              radial-gradient(circle at 70% -10%, rgba(110,231,183,0.08), transparent 40%);
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* Subtle CSS-only noise/scanline layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 4px 4px, 4px 4px;
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: overlay;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(120,60,120,.08), transparent 40%);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Layout helpers */
.container { max-width: clamp(720px, 72rem, 1100px); margin: 0 auto; padding: 0 1rem; }

/* Sectioned typography & components */
header, main, footer { padding: 1rem; }
header { text-align: center; padding-block: 1.5rem; position: relative; z-index: 1; }
header h1 {
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1.04;
  margin: 0 0 0.25rem;
  color: var(--text);
}
header .meta {
  color: var(--muted);
  font-size: clamp(12px, 1.2vw, 14px);
}
main { padding-block: 1rem; }

/* Glass panel utility (fallback included) */
.glass {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
@supports (backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px)) {
  .glass { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
}

/* Image frame styling */
.image-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  background: #000;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Image fallback target (in case HTML uses .featured-image) */
.featured-image,
.image-frame,
.image-frame img { /* generic target to ensure styling even if class changes in content */ }

/* Content area */
.content { color: var(--text); }

/* Product ad block (glass-like card) */
.product-ad {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  padding: 1rem;
  text-align: left;
  margin: 1rem 0;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.product-ad h3 { margin: 0 0 .5rem; font-size: 1.05rem; color: var(--text); }
.product-ad a {
  display: inline-block;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.25);
  color: var(--text);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.product-ad a:hover { transform: translateY(-1px); background: rgba(0,0,0,.35); text-decoration: none; }
.product-ad a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Content lists and blocks */
ul, li { margin: 0 0 0.5rem; padding: 0; list-style: disc inside; color: var(--text); }
li { line-height: 1.5; }

/* Generic link/cta styling */
a, button, .btn, .cta {
  color: var(--text);
  text-decoration: none;
  outline: none;
}
a:focus-visible, a:hover { text-decoration: underline; }

/* Button variants (solid and outline) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: linear-gradient(to bottom right, rgba(240,120,170,.9), rgba(160,90,120,.9));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  border: 1px solid rgba(240,120,169,.9);
  color: var(--text);
}
.btn--outline:hover { background: rgba(255,255,255,.06); }

/* Utility & small UI elements */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.tag {
  display: inline-block;
  padding: 0.15em 0.5em;
  font-size: .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.14);
  color: var(--text);
}

/* Layout helpers for semantic elements */
main article { display: block; }

/* Printing tweaks */
@media print {
  body { background: #fff; color: #000; }
  a { text-decoration: underline; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
@media (min-width: 860px) {
  header { padding-block: 2rem; }
  main { padding-block: 1.5rem; }
}
```