/* TechnoWonderboy Picks — dark, clean, readable */
:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --card: #1c2029;
  --border: #2a2f3a;
  --text: #e8eaf0;
  --muted: #9aa3b2;
  --accent: #ffb400;
  --accent-2: #2dd4bf;
  --link: #ffb400;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
.container { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; gap: 10px; }
.brand { text-decoration: none; color: var(--text); display: flex; flex-direction: column; }
.brand-name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-picks { color: var(--accent); }
.brand-tagline { font-size: 0.75rem; color: var(--muted); }
.main-nav ul { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; }
.main-nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.main-nav a:hover { color: var(--accent); }

/* Hero */
.hero { padding: 56px 0 32px; text-align: center; }
.hero h1 { font-size: 2.2rem; letter-spacing: -0.02em; margin-bottom: 14px; }
.hero-sub { max-width: 640px; margin: 0 auto 24px; color: var(--muted); }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; background: var(--accent); color: #141414;
  padding: 10px 20px; border-radius: 8px; font-weight: 700; text-decoration: none;
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn:hover { filter: brightness(1.08); }

/* Sections + cards */
.section { padding: 32px 0; }
.section h2 { font-size: 1.5rem; margin-bottom: 20px; letter-spacing: -0.01em; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.card-grid.three { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px; text-decoration: none; color: var(--text); transition: border-color .15s, transform .15s;
  display: flex; flex-direction: column; gap: 8px;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-bottom: 4px; }
.card h3 { font-size: 1.05rem; line-height: 1.4; }
.card p { color: var(--muted); font-size: 0.9rem; }
.card-meta { color: var(--muted); font-size: 0.78rem; }
.card.cat h3 { color: var(--accent); }

/* Post */
.post { padding: 32px 0 48px; }
.post-header { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.post-kicker { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; margin-bottom: 8px; }
.post h1 { font-size: 2rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.post-deck { color: var(--muted); font-size: 1.05rem; }
.post-meta { color: var(--muted); font-size: 0.85rem; margin-top: 12px; }
.video-embed { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.video-label { font-weight: 600; }

/* Post hero image */
.post-hero { margin: 0 0 24px; }
.post-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }

/* Post body typography */
.post-body { font-size: 1.02rem; }
.post-body h2 { font-size: 1.45rem; margin: 32px 0 14px; }
.post-body h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.post-body p { margin: 0 0 16px; }
.post-body ul, .post-body ol { margin: 0 0 16px; padding-left: 22px; }
.post-body li { margin-bottom: 6px; }
.post-body a { color: var(--link); }
.post-body blockquote { border-left: 3px solid var(--accent); padding-left: 14px; color: var(--muted); margin: 0 0 16px; }
.post-body img { max-width: 100%; border-radius: 10px; }
.post-body table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 0.92rem; }
.post-body th, .post-body td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.post-body th { background: var(--bg-soft); }

/* Email capture */
.email-capture { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin: 32px 0; text-align: center; }
.email-capture h3 { margin-bottom: 6px; }
.email-capture p { color: var(--muted); margin-bottom: 14px; font-size: 0.92rem; }

/* Tags */
.tags { margin: 24px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.tag { background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted); border-radius: 20px; padding: 4px 12px; font-size: 0.8rem; text-decoration: none; }
.tag:hover { color: var(--accent); border-color: var(--accent); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); margin-top: 32px; padding: 32px 0; background: var(--bg-soft); }
.footer-disclosure { color: var(--muted); font-size: 0.8rem; margin-bottom: 16px; max-width: 720px; }
.footer-nav ul { list-style: none; display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { color: var(--muted); font-size: 0.78rem; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .post h1 { font-size: 1.5rem; }
}
