* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #111111; color: #e0e0e0; line-height: 1.6; }
header { background: #111111; border-bottom: 1px solid #222; padding: 12px 40px; position: sticky; top: 0; z-index: 100; }
nav { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; max-width: 180px; }
nav ul { list-style: none; display: flex; gap: 24px; }
nav ul a { text-decoration: none; color: #aaa; font-weight: 500; }
nav ul a:hover { color: #43a047; }
.hero { display: flex; min-height: 340px; width: 100%; }
.hero-left { flex: 1; background: #111111; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.hero-label { color: #43a047; font-size: 12px; font-weight: 600; letter-spacing: 3px; margin-bottom: 16px; }
.hero-left h1 { color: #ffffff; font-size: 2.4rem; font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.hero-sub { color: #888; font-size: 1rem; margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 12px; }
.btn-primary { background: #43a047; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600; }
.btn-secondary { border: 1px solid #333; color: #aaa; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-size: 14px; }
.btn-primary:hover { background: #2e7d32; }
.btn-secondary:hover { border-color: #555; color: #fff; }
.hero-right { flex: 1; background: #1b5e20; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 32px; gap: 20px; }
.hero-bar { width: 80px; height: 4px; background: #43a047; border-radius: 2px; }
.hero-slogan { color: #ffffff; font-size: 2rem; font-weight: 900; text-align: center; line-height: 1.3; letter-spacing: -1px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 8px; }
.hero-tags span { background: rgba(0,0,0,0.2); color: #fff; padding: 6px 12px; border-radius: 20px; font-size: 12px; }
.articles-wrap { border-top: 1px solid #2a2a2a; }
.articles { max-width: 1100px; margin: 0 auto; padding: 60px 40px; }
.articles h2 { font-size: 1.8rem; margin-bottom: 32px; color: #43a047; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.article-card { background: #1a1a1a; border-radius: 12px; padding: 24px; text-decoration: none; color: #e0e0e0; box-shadow: 0 2px 8px rgba(0,0,0,0.3); transition: transform 0.2s, box-shadow 0.2s; border: 1px solid #222; display: block; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
.article-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #43a047; }
.article-card p { font-size: 0.95rem; color: #aaa; margin-bottom: 12px; }
.date { font-size: 0.8rem; color: #666; }
.article-page { max-width: 800px; margin: 60px auto; padding: 0 40px; }
.article-page h1 { font-size: 2rem; margin-bottom: 12px; color: #ffffff; }
.meta { display: flex; gap: 16px; color: #666; font-size: 0.9rem; margin-bottom: 32px; }
.content { font-size: 1.05rem; line-height: 1.8; color: #e0e0e0; }
.content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: #43a047; }
.content p { margin-bottom: 20px; }
.content a { color: #43a047; font-weight: 600; }
.affiliate-disclaimer { background: #1a1a1a; border-left: 4px solid #43a047; padding: 16px; border-radius: 8px; margin-top: 40px; font-size: 0.9rem; color: #aaa; }
footer { text-align: center; padding: 40px; color: #666; font-size: 0.9rem; border-top: 1px solid #222; margin-top: 60px; }
@media (max-width: 768px) {
  .hero { flex-direction: column; }
  .hero-left { padding: 40px 24px; }
  .hero-left h1 { font-size: 1.8rem; }
  .header { padding: 12px 20px; }
}
.hero-tags a { text-decoration: none; }
.hero-tags a span:hover { background: rgba(0,0,0,0.4); cursor: pointer; }
.article-hero { width: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; margin-bottom: 28px; }
.credit { font-size: 0.8rem; color: #666; margin-top: 28px; }
.credit a { color: #888; }
.foot-credit { font-size: 0.8rem; color: #555; margin-top: 4px; }
.article-card { padding: 0; overflow: hidden; }
.card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-body { padding: 22px; }

/* Affiliate links as CTA buttons */
.content a[href^="/go"] {
  display: inline-block;
  background: #ffd814;
  color: #131921 !important;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  margin: 6px 0;
  border: 1px solid #fcd200;
  transition: background 0.15s ease;
}
.content a[href^="/go"]:hover { background: #f7ca00; }
.content a[href^="/go"]::after { content: " \2192"; }

/* Mobile responsiveness */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  header { padding: 12px 16px; }
  nav { flex-wrap: wrap; gap: 10px; row-gap: 6px; }
  nav ul { gap: 14px; font-size: 0.92rem; flex-wrap: wrap; padding: 0; margin: 0; }
  .logo img { height: 34px; }
  .hero { flex-direction: column; }
  .hero-left { padding: 36px 20px; }
  .hero-left h1 { font-size: 1.9rem; }
  .hero-right { padding: 30px 20px; }
  .articles, .stats-wrap, .article-page { padding-left: 18px; padding-right: 18px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-hero { max-height: 280px; }
}

.faq { margin: 40px 0 10px; }
.faq h2 { color: #43a047; font-size: 1.4rem; margin-bottom: 16px; }
.faq-item { margin-bottom: 10px; background: #161616; border: 1px solid #262626; border-radius: 10px; overflow: hidden; }
.faq-item summary { font-size: 1.02rem; font-weight: 600; color: #fff; padding: 14px 16px; cursor: pointer; list-style: none; position: relative; padding-right: 40px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: #43a047; font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0; padding: 0 16px 14px; color: #cfcfcf; line-height: 1.55; }

.related { margin: 44px 0 10px; }
.related h2 { color: #43a047; font-size: 1.4rem; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { display: flex; flex-direction: column; background: #161616; border: 1px solid #262626; border-radius: 10px; overflow: hidden; text-decoration: none; transition: border-color 0.15s ease; }
.related-card:hover { border-color: #43a047; }
.related-card img { width: 100%; height: 110px; object-fit: cover; }
.related-title { padding: 10px 12px; color: #fff; font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } .related-card img { height: 160px; } }
