/* ZNZBR Project Hub - dark neon + glass cards */
:root{
  --bg0:#070A12;
  --bg1:#0B1220;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.10);
  --text:#E8EDF7;
  --muted:#A9B4C7;
  --accent:#7C5CFF;
  --good:#39d98a;
  --bad:#ff5c7a;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 15% 20%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 650px at 80% 30%, rgba(57,217,138,.18), transparent 55%),
    radial-gradient(1000px 800px at 50% 90%, rgba(255,92,122,.16), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{
  width:min(1200px, 92vw);
  margin:0 auto;
  padding:36px 0 60px;
}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(57,217,138,.85));
  box-shadow: 0 12px 30px rgba(124,92,255,.22);
  position:relative;
}
.logo:after{
  content:"";
  position:absolute; inset:2px;
  border-radius:12px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 55%);
}
.h1{
  font-size:20px;
  font-weight:750;
  letter-spacing:.2px;
}
.subtitle{
  font-size:12px;color:var(--muted);margin-top:2px;
}
.actions{display:flex; gap:10px; align-items:center;}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}
.input{
  width:min(420px, 50vw);
  color:var(--text);
  background:rgba(0,0,0,.25);
  border:1px solid var(--stroke);
  padding:10px 12px;
  border-radius:999px;
  outline:none;
}
.input:focus{border-color: rgba(124,92,255,.45); box-shadow:0 0 0 4px rgba(124,92,255,.12)}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 4;
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.04));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover{ transform: translateY(-3px); border-color: rgba(124,92,255,.35);}
.card .bar{
  height:4px;
  background: var(--accent);
}
.card .inner{ padding:16px 16px 14px;}
.card .title{
  display:flex; align-items:center; gap:10px;
  font-weight:760;
  margin-bottom:8px;
  letter-spacing:.2px;
}
.icon{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.thumb{
  width:34px;height:34px;border-radius:12px;
  object-fit:cover; border:1px solid rgba(255,255,255,.10);
}
.desc{ color: var(--muted); font-size:13px; line-height:1.4; min-height:36px;}
.tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px;}
.tag{
  font-size:12px;
  color:#D6DEEE;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.footer{
  margin-top:26px;
  color: var(--muted);
  font-size:12px;
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.notice{
  margin:18px 0;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  padding:12px 14px;
  border-radius: 14px;
}
.notice.good{border-color: rgba(57,217,138,.35)}
.notice.bad{border-color: rgba(255,92,122,.35)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  color: var(--text);
  font-weight: 650;
}
.btn:hover{border-color: rgba(124,92,255,.35)}
.btn.primary{
  border-color: rgba(124,92,255,.45);
  background: rgba(124,92,255,.14);
}
.btn.danger{
  border-color: rgba(255,92,122,.45);
  background: rgba(255,92,122,.12);
}
.small{font-size:12px;color:var(--muted)}
.hr{height:1px;background:rgba(255,255,255,.08);margin:14px 0}

@media (max-width: 980px){
  .card{grid-column: span 6;}
}
@media (max-width: 640px){
  .card{grid-column: span 12;}
  .actions{flex-wrap:wrap;justify-content:flex-end}
  .input{width: 92vw}
}
