:root{
  --bg: #06240f;
  --bg-2: #0b3a1a;
  --bg-3: #041a0f;
  --text: #eafff5;
  --muted: #a3d9a7;
  --accent: #2cff72;
  --accent-2: #39ff9a;
  --glass: rgba(6, 30, 20, 0.22);
  --glass-2: rgba(6, 30, 20, 0.30);
  --border: rgba(60, 255, 150, 0.40);
  --shadow: 0 8px 24px rgba(0,0,0,.25);
  --radius: 14px;
}
* { box-sizing: border-box; }
html { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 60%, var(--bg-3) 100%);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  isolation: isolate;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0, rgba(40,255,140,.08) 0 20%, transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(60,255,180,.05) 0 30%, transparent 40%),
    linear-gradient(135deg, rgba(2,60,20,.15), rgba(2,20,12,.15) 60%, rgba(0,0,0,0) 100%);
  background-blend-mode: screen;
  pointer-events: none;
  z-index: -2;
  mix-blend-mode: overlay;
  filter: saturate(1.1);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 100% 2px, 2px 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
  opacity: .65;
}
.container { width: 100%; max-width: clamp(320px, 90vw, 1100px); margin: 0 auto; padding: 0 1rem; }
header, nav, main, article, footer, aside { display: block; }
header {
  margin: 1rem auto;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(to bottom right, rgba(8,26,16,.32), rgba(6,28,20,.22));
  border: 1px solid rgba(110,255,180,.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
header h1 {
  font-size: clamp(1.6rem, 1.2rem + 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 .25rem;
  letter-spacing: .5px;
}
header .meta {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 .5rem;
}
nav a {
  color: var(--accent-2);
  text-decoration: none;
  padding: .4rem .6rem;
  border-radius: 6px;
  border: 1px solid rgba(60,255,150,.35);
  background: rgba(60,255,150,.15);
}
nav a:hover, nav a:focus { text-decoration: underline; outline: none; }
main { padding: 1rem 0; }
article { display: block; padding: 0; }
.featured-image, .image-frame { width: 100%; border-radius: 12px; overflow: hidden; }
.image-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid rgba(120,255,180,.40);
  background: rgba(0,0,0,.15);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.content { color: var(--text); line-height: 1.6; font-size: clamp(0.98rem, 0.95rem + 0.4vw, 1.05rem); }
h2 { font-size: clamp(1.4rem, 1rem + 2.5vw, 2.4rem); margin: 0.75rem 0 0.3rem; }
h3 { font-size: clamp(1.05rem, 0.9rem + 1.2vw, 1.4rem); margin: .75rem 0 0.25rem; }
ul { padding-left: 1.25rem; margin: .25rem 0 0.75rem; }
li { margin: .25rem 0; }
blockquote {
  margin: .75rem 0; padding: .75rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(50, 255, 200, 0.08);
  border-radius: 8px;
  color: var(--text);
}
.image-frame + p { margin-top: .5rem; }

footer { padding: 1rem 0; }
.product-ad, .sponsored-page {
  display: inline-block;
  vertical-align: top;
  width: min(46%, 260px);
  margin: 0 .5% 0 0;
  padding: .75rem;
  border-radius: 12px;
  background: rgba(6,28,20,.22);
  border: 1px solid rgba(110,255,180,.40);
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.product-ad a, .sponsored-page a { color: var(--text); text-decoration: none; display: block; }
.product-ad a:hover, .sponsored-page a:hover { text-decoration: underline; }
footer p { text-align: center; color: var(--muted); font-size: .9rem; margin: .75rem 0 0; }

a, button, .btn, .cta {
  text-underline-offset: 2px;
  text-decoration-skip-ink: auto;
}
a { color: var(--accent); }
a:hover, a:focus { text-decoration: underline; outline: none; color: var(--accent-2); }

button, .btn, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5ch;
  padding: .75em 1.1em;
  border-radius: 10px;
  border: 1px solid rgba(60,255,150,.4);
  background: linear-gradient(to bottom, rgba(40,255,140,.9), rgba(20,170,120,.9));
  color: #041f0a;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  user-select: none;
}
button:hover, .btn:hover, .cta:hover { transform: translateY(-1px); }
button:active, .btn:active, .cta:active { transform: translateY(0); }
button:focus-visible, .btn:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}
.btn.secondary, .cta.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(60,255,150,.5);
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(100,255,180,.4);
  color: var(--text);
}
.tag {
  display: inline-block;
  padding: .35em .6em;
  font-size: .75rem;
  border-radius: 999px;
  background: rgba(40,255,140,.15);
  border: 1px solid rgba(60,255,150,.35);
  color: var(--text);
}
.grid {
  display: grid;
  gap: 1rem;
}
.card {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(6,28,20,.25);
  border: 1px solid rgba(110,255,180,.40);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
@media (min-width: 600px){
  .grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; transform: none !important; }
}
@media print {
  body::before, body::after { display: none; }
  header, nav, main, footer { background: transparent; color: #000; }
  a { color: #000; text-decoration: underline; }
}