:root{
  --bg:#0b0f14;
  --card:#121924;
  --text:#e9eef6;
  --muted:#a7b2c3;
  --line:#233046;
  --good:#2ecc71;
  --bad:#ff5c5c;
  --warn:#f1c40f;
  --btn:#4da3ff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 800px at 15% 0%, #182338 0%, var(--bg) 55%);
  color:var(--text);
}

.wrap{max-width:1100px;margin:0 auto;padding:18px}
.header{
  display:flex;
  align-items:center;
  gap:18px;
}
.logo{
  width:72px;height:72px;
  object-fit:contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.titleblock h1{margin:0;font-size:28px;letter-spacing:.2px}
.subtitle{margin:6px 0 0 0;color:var(--muted)}
.btn{
  margin-left:auto;
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  color:#06121f;
  background:linear-gradient(180deg, #79c3ff, var(--btn));
  font-weight:700;
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  margin:14px 0;
}

h2{margin:0 0 12px 0;font-size:20px}
h3{margin:0 0 10px 0;font-size:16px;color:var(--text)}
ol{margin:10px 0 0 20px}
code{
  padding:2px 6px;
  border-radius:10px;
  background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.08);
}
.muted{color:var(--muted)}
.small{font-size:12px}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 860px){
  .header{flex-wrap:wrap}
  .btn{margin-left:0}
  .grid{grid-template-columns:1fr}
}

.clean{list-style:none;padding:0;margin:0}
.clean li{margin:8px 0}

.tablewrap{
  overflow:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
  background: rgba(0,0,0,.20);
}
th,td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:middle;
}
th{color:#cfe3ff;font-size:13px;letter-spacing:.35px;text-transform:uppercase}
tr:last-child td{border-bottom:none}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
}
.dot{
  width:10px;height:10px;border-radius:999px;display:inline-block;
  background:var(--warn);
}
.good .dot{background:var(--good)}
.bad .dot{background:var(--bad)}
.warn .dot{background:var(--warn)}

.footer{padding-top:6px;padding-bottom:30px}
