/* /assets/css/style.css */
:root{
  --brand:#39ff14;
  --bg:#0b0b0b;
  --card:#151515;
  --text:#e7e7e7;
  --muted:#9aa0a6;
  --border:#202020;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  line-height:1.4;
}
a{color:var(--brand);text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:1100px;margin:0 auto;padding:16px}

.site-header{
  background:#0f0f0f;
  border-bottom:1px solid #1e1e1e;
}
.site-header .container{display:flex;align-items:center;justify-content:space-between;gap:12px}
.site-header h1{font-size:20px;font-weight:700}
.site-header h1 a{color:#fff}
.site-header nav a{margin-left:14px;opacity:.9}
.site-header nav a.active,
.site-header nav a:hover{opacity:1;border-bottom:2px solid var(--brand)}

.site-footer{
  border-top:1px solid #1e1e1e;
  background:#0f0f0f;
  padding:12px 0;
  margin-top:24px;
  font-size:14px;
  color:var(--muted);
}

h2{margin:16px 0 8px;font-size:22px}
h3{margin:8px 0 6px;font-size:18px}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:16px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.card .thumb img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.card-body{padding:12px}
.meta{font-size:12px;color:var(--muted);margin-bottom:6px;display:flex;gap:6px;flex-wrap:wrap}
.cat{color:var(--brand)}
.btn{
  display:inline-block;
  background:var(--brand);
  color:#001a00;
  padding:8px 12px;
  border-radius:10px;
  font-weight:700;
  margin-top:8px;
}

.pagination{margin:20px 0;text-align:center}
.pagination a{
  display:inline-block;
  margin:0 4px;
  padding:6px 10px;
  border:1px solid #222;
  border-radius:8px;
  color:#ddd;
}
.pagination a.active{
  background:var(--brand);
  color:#001a00;
  border-color:transparent;
}

.article .hero{
  width:100%;
  max-height:380px;
  object-fit:cover;
  border-radius:12px;
  margin:6px 0 12px;
}
.article .content{line-height:1.7;font-size:16px}
.article .content p{margin:0 0 10px}

.comments{margin-top:24px}
.comment{
  background:#131313;
  border:1px solid #222;
  border-radius:10px;
  padding:10px;
  margin:10px 0;
}
.comment .c-meta{font-size:12px;color:var(--muted);margin-bottom:6px}
.comment-form .row{display:flex;flex-direction:column;margin-bottom:10px}
.comment-form input,.comment-form textarea{
  background:#0f0f0f;
  border:1px solid #222;
  border-radius:8px;
  color:var(--text);
  padding:10px;
}
.notice{
  background:#0f1a0f;
  border:1px solid #274;
  padding:10px;
  border-radius:8px;
  color:#cfe;
  margin-bottom:8px;
}

/* Releases list specifics */
.releases .card-body h3{margin:6px 0}

/* small screens */
@media (max-width:540px){
  .site-header .container{flex-direction:column;align-items:flex-start}
  .card .thumb img{height:140px}
}
