:root{
  --bg: #0a0a0f;
  --bg-2: #141017;
  --text: #eaf6ff;
  --muted: #a6a6a6;
  --accent: #ff9a6b;
  --accent-2: #ffd4b2;
  --glass: rgba(20,22,28,.22);
  --glass-2: rgba(20,22,28,.34);
  --border: rgba(255,255,255,.28);
  --shadow: 0 8px 26px rgba(0,0,0,.45);
  --radius: 14px;
  --focus: 0 0 0 3px rgba(255,210,170,.9);
  --maxw: clamp(28rem, 60ch, 70rem);
}
html, body { height: 100%; }
* { box-sizing: border-box; }
html, body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  background: linear-gradient(#0d0d12, #0b0b0f);
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body {
  /* Layered peach zigzag + gradient + subtle noise/scanlines */
  background-image:
    linear-gradient(135deg, rgba(255, 196, 150, .12) 0 25%, rgba(0,0,0,0) 25% 50%),
    linear-gradient(225deg, rgba(255, 196, 150, .12) 0 25%, rgba(0,0,0,0) 25% 50%),
    repeating-linear-gradient(45deg, rgba(255,150,110,.12) 0 4px, rgba(0,0,0,0) 4px 8px),
    linear-gradient(#0b0b0f, #0b0b0f);
  background-size: 40px 40px, 40px 40px, 40px 40px, 100% 100%;
  background-attachment: fixed, fixed, fixed, scroll;
  background-blend-mode: overlay, overlay, overlay, normal;
}
body::before,
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none;
}
body::before {
  /* peach veil for depth */
  background: radial-gradient(circle at 20% -10%, rgba(255, 180, 120, .18), transparent 40%),
              radial-gradient(circle at 70% 0%, rgba(255, 120, 100, .12), transparent 40%);
  mix-blend-mode: overlay;
  opacity: .8;
}
body::after {
  /* soft scanlines */
  background-image: repeating-linear-gradient(180deg, rgba(0,0,0,.06) 0 1px, transparent 1px 2px);
  opacity: .25;
  mix-blend-mode: overlay;
}
a, button, .btn, .cta { text-decoration: none; color: inherit; }

.container {
  width: min(92%, 1100px);
  margin: 0 auto;
  padding: 0 1rem;
}

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

.card {
  background: rgba(14,18,25,.28);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .75rem;
  box-shadow: var(--shadow);
}

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

header {
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}
header h1 {
  margin: .25rem 0 0;
  font-size: clamp(2rem, 2vw + 1rem, 3.75rem);
  line-height: 1.04;
  letter-spacing: .5px;
  font-weight: 800;
  color: var(--text);
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
header .meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: .25rem 0 0;
}
header nav {
  margin-top: .75rem;
}
header nav a {
  display: inline-block;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 600;
}
header nav a:hover { text-decoration: underline; }

main {
  padding: 1rem 0 2rem;
}

.featured-image, .image-frame, .featured {
  width: min(100%, 860px);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.featured-image img, .image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.image-frame {
  aspect-ratio: 16 / 9;
}
.content { padding: 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

h2 { font-size: clamp(1.4rem, 1.2vw + 1rem, 2.2rem); margin: .9rem 0 .4rem; color: var(--text); }
p { color: rgba(234,239,255,.92); margin: .6rem 0; }
blockquote {
  margin: .8rem 0; padding: .5rem 1rem; border-left: 4px solid var(--accent);
  background: rgba(0,0,0,.18); border-radius: 6px; font-style: italic;
}
ul { padding-left: 1.25rem; margin: .4rem 0; }
li { margin: .25rem 0; }

footer {
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.product-ad, .sponsored-page {
  display: inline-block;
  padding: .6rem 1rem;
  margin: .25rem;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-ad p, .sponsored-page p {
  margin: 0; color: var(--text); font-weight: 600;
}
footer p { color: var(--muted); font-size: .9rem; margin: .6rem 0 0; }

a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
a:focus-visible { outline-offset: 4px; }

a:hover { text-decoration: underline; }

.btn, .cta {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.4);
  background: linear-gradient(135deg, rgba(255,140,100,.95), rgba(255,90,60,.95));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover, .cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(255,100,60,.4); }
.btn:active, .cta:active { transform: translateY(0); }
.btn.outline, .cta.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.6);
}
.btn + .btn { margin-left: .5rem; }

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

@media (min-width: 768px) {
  .container { padding: 0 1.25rem; }
  header { padding: 2.5rem 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
@media print {
  body { background: #fff; color: #000; }
  header, nav, footer { display: block; }
  a { color: #000; }
}