:root {
  --bg: #05060f;
  --bg-2: #0b0f1a;
  --text: #eafff0;
  --muted: #a6f0a4;
  --accent: #39ff14;
  --accent-2: #ffd400;
  --glass: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.25);
  --shadow: 0 8px 28px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; }
body {
  margin: 0;
  color: var(--text);
  background: 
    linear-gradient(135deg, rgba(5,6,12,.95) 0%, rgba(5,6,12,.8) 60%, rgba(5,6,12,.95) 100%),
    radial-gradient(circle at 1px 1px, rgba(255,255,0,.25) 2px, transparent 2px),
    radial-gradient(circle at 6px 6px, rgba(57,255,20,.15) 2px, transparent 2px);
  background-size: 100% 100%, 8px 8px, 8px 8px;
  background-blend-mode: overlay, overlay, normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

header, nav, main, article, aside, footer {
  font-synthesis: none;
}

.container { width: min(100%, 1100px); margin-inline: auto; padding-inline: 1rem; }

header {
  text-align: center;
  padding: 2rem 0 1rem;
  position: relative;
}
header h1 {
  font-size: clamp(1.75rem, 1.2rem + 3vw, 3.25rem);
  line-height: 1.08;
  margin: 0 0 .4rem;
  letter-spacing: .2px;
}
header .meta {
  color: #d0ffd7;
  font-size: clamp(0.9rem, 0.8vw, 1.05rem);
  opacity: 0.95;
}
nav {
  margin-top: .5rem;
}
nav a {
  color: var(--accent);
  text-decoration: none;
  padding: .25rem .5rem;
  border-radius: 6px;
  border: 1px solid rgba(57,255,20,.25);
}
nav a:hover { text-decoration: underline; }

main { padding: 1.25rem 0 2rem; }
article { max-width: 70ch; margin: 0 auto; padding: 0 0.5rem; }

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

.content { padding: 0.25rem 0 1rem; }

h2, h3 {
  color: var(--text);
  margin: 1rem 0 .5rem;
}
p { color: rgba(234,255,240,.92); line-height: 1.6; margin: .5rem 0 1rem; }

ul { padding-left: 1.25rem; margin: .5rem 0 1rem; }
li { margin: .25rem 0; }

blockquote {
  margin: .6rem 0;
  padding: .6rem 1rem;
  border-left: 3px solid var(--accent);
  color: #eefbd3;
  background: rgba(0,0,0,.25);
  border-radius: 6px;
  quotes: "“" "”";
}
blockquote::before { content: open-quote; }
blockquote::after { content: close-quote; }

.product-ad {
  display: block;
  padding: .75rem;
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.25);
  text-align: center;
  color: var(--text);
  text-decoration: none;
}
.product-ad a { color: inherit; text-decoration: none; display: block; }

footer {
  padding: 1.25rem;
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
}
footer p { margin: .25rem 0; color: rgba(234,255,240,.9); }

footer .sponsored-page { text-align: center; }

@media (min-width: 640px) {
  footer { grid-template-columns: 1fr 1fr; }
  .image-frame { margin: 0 auto 1rem; }
}

a, button, .btn, .cta {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
}
a { color: var(--accent); }
a:hover { text-decoration: underline; }

.btn, .cta {
  display: inline-block;
  padding: .6em 1em;
  border-radius: 999px;
  border: 1px solid rgba(57,255,20,.5);
  background: var(--accent);
  color: #001d07;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .15s ease, background .2s ease;
}
.btn:hover, .cta:hover { transform: translateY(-1px); background: #2cff1a; }
.btn:focus-visible, .cta:focus-visible {
  outline: 3px solid rgba(57,255,20,.9);
  outline-offset: 2px;
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover { background: rgba(57,255,20,.08); }

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

@media print {
  body { color: #000; background: #fff; }
  nav, header, footer { page-break-after: avoid; }
}
@supports not (backdrop-filter: blur(12px)) {
  header, main, footer, article, aside {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
  }
}
header, main, article, aside, footer {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: .75rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
@supports not (backdrop-filter: blur(12px)) {
  header, main, article, aside, footer {
    background: rgba(255,255,255,.14);
  }
}