
:root{
  --bp-bg:#0b1220;
  --bp-panel:#0f1a33;
  --bp-panel2:#0c162d;
  --bp-text:#e7f0ff;
  --bp-muted:#9fb3d6;
  --bp-accent:#37ff8b;
  --bp-warn:#ffcc66;
  --bp-danger:#ff5d5d;
  --bp-line:rgba(255,255,255,.10);
  --bp-shadow: 0 12px 30px rgba(0,0,0,.35);
  --bp-radius:16px;
  --bp-font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--bp-font);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(55,255,139,.12), transparent 60%),
    radial-gradient(900px 480px at 100% 0%, rgba(0,153,255,.12), transparent 60%),
    linear-gradient(180deg, #081026 0%, #050a18 100%);
  color:var(--bp-text);
}
a{color:inherit}
.header{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid var(--bp-line);
  background:rgba(10,18,38,.7);
  backdrop-filter: blur(8px);
  position:sticky; top:0; z-index:5;
}
.brand{
  display:flex; gap:10px; align-items:center;
  font-weight:800; letter-spacing:.6px;
}
.badge{
  font-size:12px; color:var(--bp-muted);
  border:1px solid var(--bp-line);
  padding:6px 10px; border-radius:999px;
}
.wrap{max-width:1200px; margin:0 auto; padding:18px}
.grid{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:14px;
}
.card{
  background:linear-gradient(180deg, rgba(18,30,60,.9), rgba(11,20,42,.9));
  border:1px solid var(--bp-line);
  border-radius:var(--bp-radius);
  box-shadow:var(--bp-shadow);
  overflow:hidden;
}
.card h2{
  margin:0; padding:14px 14px 10px;
  font-size:14px; text-transform:uppercase; letter-spacing:.12em;
  color:var(--bp-muted);
  border-bottom:1px solid var(--bp-line);
  background:rgba(0,0,0,.12);
}
.pane{padding:14px}
.row{display:flex; gap:10px; align-items:center}
.row.space{justify-content:space-between}
.btn{
  border:1px solid var(--bp-line);
  background:rgba(255,255,255,.06);
  color:var(--bp-text);
  border-radius:12px;
  padding:10px 12px;
  font-weight:650;
  cursor:pointer;
  transition:.15s transform ease, .15s background ease;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.10)}
.btn.primary{border-color: rgba(55,255,139,.35); background: rgba(55,255,139,.14)}
.btn.danger{border-color: rgba(255,93,93,.35); background: rgba(255,93,93,.12)}
.btn.small{padding:8px 10px; font-size:13px}
.input, select, textarea{
  width:100%;
  background:rgba(0,0,0,.18);
  border:1px solid var(--bp-line);
  color:var(--bp-text);
  border-radius:12px;
  padding:10px 12px;
  outline:none;
}
label{font-size:12px; color:var(--bp-muted); display:block; margin:10px 0 6px}
.list{display:flex; flex-direction:column; gap:10px}
.item{
  border:1px solid var(--bp-line);
  border-radius:14px;
  padding:12px;
  background:rgba(255,255,255,.05);
  cursor:pointer;
}
.item:hover{background:rgba(255,255,255,.08)}
.item .top{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.item .addr{font-weight:750; line-height:1.2}
.item .meta{font-size:12px; color:var(--bp-muted)}
.tag{
  font-size:12px;
  border:1px solid var(--bp-line);
  padding:4px 8px;
  border-radius:999px;
  color:var(--bp-muted);
  white-space:nowrap;
}
.tag.ok{border-color: rgba(55,255,139,.35); color: rgba(55,255,139,.95)}
.tag.warn{border-color: rgba(255,204,102,.35); color: rgba(255,204,102,.95)}
.tag.bad{border-color: rgba(255,93,93,.35); color: rgba(255,93,93,.95)}
.split{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.sectionTitle{
  margin:0 0 10px;
  font-size:16px;
}
hr{border:0; border-top:1px solid var(--bp-line); margin:12px 0}
.accordion details{
  border:1px solid var(--bp-line);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  overflow:hidden;
  margin-bottom:10px;
}
.accordion summary{
  cursor:pointer;
  padding:12px 12px;
  font-weight:750;
  list-style:none;
}
.accordion summary::-webkit-details-marker{display:none}
.accordion .content{padding:0 12px 12px}
.checklist{
  display:grid; gap:10px;
}
.check{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px;
  border:1px solid var(--bp-line);
  border-radius:12px;
  background:rgba(0,0,0,.12);
}
.check input[type="checkbox"]{margin-top:3px; transform:scale(1.2)}
.smallMuted{font-size:12px; color:var(--bp-muted)}
.modalBack{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  display:none; align-items:center; justify-content:center;
  z-index:50;
}
.modal{
  width:min(520px, 92vw);
  border:1px solid var(--bp-line);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(18,30,60,.96), rgba(10,18,38,.96));
  box-shadow:var(--bp-shadow);
  overflow:hidden;
}
.modal header{
  padding:14px;
  border-bottom:1px solid var(--bp-line);
  display:flex; justify-content:space-between; align-items:center;
}
.modal header h3{margin:0; font-size:15px; letter-spacing:.06em; text-transform:uppercase; color:var(--bp-muted)}
.modal .body{padding:14px}
.modal .body ul{margin:8px 0 0 18px; color:var(--bp-muted)}
.footerBtns{display:flex; gap:10px; justify-content:flex-end; padding:0 14px 14px}
@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
}
