:root {
  --accent: #FF823A;
  --dark: #0f1117;
  --card: #1a1f2e;
  --text: #e8eaf0;
  --muted: #8892a4;
  --border: #2a3040;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.header-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo { font-size: 1.15rem; font-weight: 700; color: var(--accent); letter-spacing: -0.5px; }
.logo span { color: var(--text); }
.tagline { font-size: 0.82rem; color: var(--muted); border-left: 1px solid var(--border); padding-left: 1rem; }

main { max-width: 820px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }

.posts-grid { display: flex; flex-direction: column; gap: 1.5rem; }

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color .15s;
}
.post-card:hover { border-color: var(--accent); }

.post-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,130,58,.12);
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}
.post-card h2 { font-size: 1.3rem; margin-bottom: .5rem; line-height: 1.3; }
.post-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.read-more { font-size: 0.85rem; font-weight: 600; color: var(--accent); }

.article-header { margin-bottom: 2rem; }
.article-header .post-tag { margin-bottom: 1rem; }
.article-header h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 1rem; }
.article-meta { font-size: 0.85rem; color: var(--muted); }

.article-body h2 { font-size: 1.25rem; margin: 2rem 0 .75rem; color: var(--text); }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: .5rem 0 1.1rem 1.5rem; }
.article-body li { margin-bottom: .4rem; }

.affiliate-box {
  background: rgba(255,130,58,.08);
  border: 1px solid rgba(255,130,58,.3);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.affiliate-box .label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .5rem;
}
.affiliate-box h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.affiliate-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

.products-grid { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.product-card.primary { border-color: var(--accent); }
.product-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .15rem .5rem; border-radius: 4px;
  margin-bottom: .5rem;
}
.badge-primary { background: rgba(255,130,58,.2); color: var(--accent); }
.badge-budget  { background: rgba(100,180,100,.2); color: #6db86d; }
.badge-premium { background: rgba(180,150,50,.2); color: #c9a83c; }
.product-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.product-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: .75rem; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #0f1117;
  font-weight: 700;
  font-size: 0.9rem;
  padding: .6rem 1.4rem;
  border-radius: 6px;
}
.btn:hover { text-decoration: none; opacity: .9; }

.verdict-box {
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.verdict-box h3 { font-size: .95rem; color: var(--accent); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .06em; }

.video-embed { margin: 2rem 0; }
.video-embed iframe { width: 100%; aspect-ratio: 16/9; border-radius: 10px; border: none; }

.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .article-header h1 { font-size: 1.5rem; }
  .tagline { display: none; }
}
