:root {
  --bg: #0b0a09;
  --bg-2: #141413;
  --surface: rgba(18, 13, 9, 0.28);
  --text: #f3efe9;
  --muted: #c8b39a;
  --accent: #ff8c3d;
  --accent-2: #b8860b;
  --border: rgba(255, 210, 140, 0.32);
  --shadow: 0 10px 25px rgba(0,0,0,0.45);
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f7f3eb;
    --bg-2: #ededdf;
    --surface: rgba(255,255,255,0.8);
    --text: #0f141a;
    --muted: #5a4a32;
    --accent: #b85700;
    --accent-2: #7a4a00;
    --border: rgba(0,0,0,0.15);
    --shadow: 0 6px 14px rgba(0,0,0,0.15);
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { color-scheme: dark dark; }
body {
  margin: 0;
  min-height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: clamp(14px, 1.2rem + 0.3vw, 18px);
  line-height: 1.55;
  color: var(--text);
  background: linear-gradient(135deg, #0b0a09 0%, #141413 60%, #0b0a09 100%);
  position: relative;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% -10%, rgba(255,140,60,0.22) 0 40%, transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0) 40% 60%, rgba(0,0,0,0.25)),
    repeating-linear-gradient(to bottom, rgba(255,170,60,0.04) 0 1px, transparent 1px 2px);
  background-blend-mode: overlay;
  pointer-events: none;
  mix-blend-mode: overlay;
}
:focus { outline: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }

header, main, footer, aside { padding: 1rem 0; }

header {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 14px;
  background: rgba(20, 14, 9, 0.28);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px);
}
header h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  line-height: 1.05;
  margin: 0 0 .35em;
  letter-spacing: .5px;
  color: var(--text);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
header .meta {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace,SFMono-Regular,Monaco,Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  opacity: 0.95;
}

main { padding: 0 0 2rem; }
article { padding: 1rem; border-radius: 14px; background: rgba(20, 14, 9, 0.22); border: 1px solid var(--border); box-shadow: var(--shadow); backdrop-filter: blur(10px); }*/

.featured-image { margin: 0 0 1rem; border-radius: 12px; overflow: hidden; }
.featured-image img { display: block; width: 100%; height: auto; object-fit: cover; }
.image-frame { aspect-ratio: 16 / 9; width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 204, 128, 0.35); background: #111; display: block; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.content { color: var(--muted); }

h2 { font-size: clamp(1.4rem, 1.2rem + 2vw, 2.2rem); margin: .75rem 0 .5rem; color: var(--text); }
p { margin: .5rem 0 1rem; color: var(--text); }
blockquote { margin: .5rem 0 1rem; padding-left: .75rem; border-left: 3px solid var(--accent); color: var(--muted); font-style: italic; }

ul { margin: 0 0 1rem 1.15rem; padding: 0; }
li { margin: .25rem 0; }

.product-ad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: .9rem 1.1rem;
  margin: .5rem;
  border-radius: 12px;
  text-align: center;
  background: rgba(20, 14, 9, 0.26);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-ad a { color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.product-ad a:hover, .product-ad a:focus { text-decoration: underline; outline: none; }
.product-ad:focus-within { outline: 2px solid var(--accent-2); outline-offset: 2px; border-radius: 12px; }

.sponsored-page { display: inline-flex; align-items: center; justify-content: center; min-width: 220px; padding: .9rem 1.1rem; margin: .5rem; border-radius: 12px; background: rgba(12, 9, 4, 0.28); border: 1px solid var(--border); box-shadow: var(--shadow); }

a { color: var(--accent); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; color: var(--accent-2); }
a:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; border-radius: 4px; }

.btn, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 140, 0.4);
  background: rgba(20, 12, 9, 0.5);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  gap: .5rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover, .cta:hover { transform: translateY(-1px); }
.btn:active, .cta:active { transform: translateY(0); }
.btn--solid {
  background: linear-gradient(135deg, rgba(255,140,60,0.95), rgba(210,110,6,0.95));
  border: 1px solid rgba(255, 210, 140, 0.95);
  color: #1b130d;
}
.btn--outline {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255, 210, 140, 0.9);
  color: var(--text);
}
.cta { cursor: pointer; }

ul, li { -webkit-font-smoothing: antialiased; }

.card, .backdrop, .glass { background: rgba(20, 14, 9, 0.22); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); padding: 1rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop { }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  body { background: #fff; color: #000; }
  a { text-decoration: underline; }
}
@media (max-width: 700px) {
  header { padding: 1.25rem 0.5rem; }
  .product-ad, .sponsored-page { width: 100%; justify-content: center; }
}
@media (min-width: 62em) {
  main { padding: 1rem 0 2rem; }
  .container { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
  article { grid-column: 1 / -1; }
}
@supports not (backdrop-filter: blur(8px)) {
  .card, .backdrop, .glass { background: rgba(20, 14, 9, 0.4); border-color: rgba(255, 210, 140, 0.6); }
}