/* reset & variables */
:root{
  --bg:#000000;
  --muted:#8b8b8b;
  --accent:#e74c89; /* small pink dot like diego */
  --card:#0f0f0f;
  --max:1100px;
}
*{box-sizing:border-box}
body.dark{ background:var(--bg); color:#efefef; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; }

/* hero */
.hero{
  min-height:92vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  padding:60px 20px;
}
.hero-inner{ max-width:var(--max); }
.hero-title{
font-family: 'Open Sans', sans-serif;
  font-weight:800;
  font-size:190px;
  line-height:0.95;
  margin:5;
  letter-spacing:0px;
  color: #fff;
  text-transform:none;
}
.hero-title .accent{ color:var(--accent); padding-left:6px; }
.hero-sub{ color:var(--muted); margin:18px 0 30px; font-size:18px; }
.cta {
  display: inline-block;
  padding: 12px 18px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px; /* Add space above button */
}
/* container & highlights */
.container{ max-width:var(--max); margin:0 auto; padding:60px 20px; }
.highlights{ display:block; gap:36px; }
.highlight{
  border-top:1px solid rgba(255,255,255,0.03);
  padding:36px 0;
  display:flex;
  align-items:flex-start;
}
.hl-left{ width:140px; flex:0 0 140px; color:var(--muted); font-size:14px; }
.hl-right{ flex:1; padding-left:18px; }
.hl-right h2{ margin:0; font-size:22px; color:#fff; }
.subtitle{ color:var(--muted); margin-top:8px; font-size:15px; }
.excerpt{ color:#dcdcdc; margin-top:12px; max-width:70ch; line-height:1.6; }
.hl-thumb img, .hl-thumb video{ margin-top:14px; max-width:320px; border-radius:8px; display:block; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* post single */
.topbar{ display:flex; justify-content:space-between; align-items:center; background:transparent; position:sticky; top:0; z-index:5; }
.brand{ color:#fff; font-weight:700; text-decoration:none; }
.post .post-header{ padding:40px 0 10px; }
.post-title{ font-size:44px; margin:0; font-weight:800; color:#fff; }
.post-sub{ color:var(--muted); margin-top:12px; font-size:20px; font-weight:500; }
.post-body{ margin-top:22px; color:#ddd; font-size:18px; }
.post-media img, .post-media video{ width:100%; max-width:100%; border-radius:8px; margin-top:28px }

/* footer */
.site-footer{ border-top:1px solid rgba(255,255,255,0.03); padding:40px 20px; margin-top:60px; color:var(--muted); }
.footer-inner{ display:flex; justify-content:space-between; align-items:center; gap:18px; }
.footer-nav a{ color:var(--muted); text-decoration:none; margin-left:18px }

/* responsive */
@media (max-width:900px){
  .hero-title{ font-size:48px; }
  .highlight{ flex-direction:column; }
  .hl-left{ width:auto; margin-bottom:8px; }
  .hero-sub{ font-size:15px; text-align:center; }
}
