:root{
  --bg:#0d0d12;--panel:#12121e;--muted:#9e9eb8;--mono:"JetBrains Mono", monospace;
}
*{box-sizing:border-box}
html,body,#app{height:100%;}
body{margin:0;background:var(--bg);color:#e0e0e0;font-family:var(--mono);-webkit-font-smoothing:antialiased}
.app{display:flex;flex-direction:column;min-height:100vh}
.header{display:flex;align-items:center;justify-content:space-between;padding:18px 24px;border-bottom:1px solid #1e1e2e;background:linear-gradient(135deg,#0d0d12,#12121e)}
.brand{display:flex;align-items:baseline;gap:12px}
.brand .logo{font-weight:700;font-size:20px}
.controls{display:flex;align-items:center;gap:10px}
.search{position:relative}
.search input{background:#16161f;border:1px solid #2a2a3e;color:inherit;padding:8px 12px 8px 32px;border-radius:6px;width:220px;font-size:13px}
.legend{background:#16161f;border:1px solid #2a2a3e;padding:6px 10px;border-radius:6px;font-size:12px;color:#888}
.main{display:flex;flex:1;overflow:hidden}
.sidebar{width:200px;background:#0a0a10;border-right:1px solid #1a1a28;overflow:auto;padding:10px 0}
.side-item{padding:10px 16px;cursor:pointer;display:flex;align-items:center;gap:8px;color:#666;font-size:13px;border-left:3px solid transparent}
.side-item.active{background:rgba(255,255,255,0.03);border-left-color:var(--accent);color:var(--accent)}
.content{flex:1;overflow:auto;padding:20px}
.card{background:var(--panel);border-radius:10px;padding:16px;border:1px solid rgba(255,255,255,0.03);box-shadow:0 6px 30px rgba(0,0,0,0.5)}
.meta{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.meta .badge{padding:4px 10px;border-radius:6px;font-weight:700}
.codebox{background:#0a0a12;border:1px solid #1e1e30;padding:10px 12px;border-radius:6px;white-space:pre;font-size:13px;color:#dfe6e9}
.table{margin-top:12px;border-radius:8px;overflow:hidden;border:1px solid #1a1a28}
.table .head{display:grid;grid-template-columns:1fr 1.3fr auto;background:#0e0e1a;padding:10px 16px;border-bottom:1px solid #1a1a28;color:#666;font-size:11px;letter-spacing:1px;text-transform:uppercase}
.row{display:grid;grid-template-columns:1fr 1.3fr auto;padding:10px 16px;align-items:center;border-bottom:1px solid #161622}
.row:last-child{border-bottom:none}
.fn{font-weight:600}
.desc{color:#9e9eb8}
.comp{font-weight:700;padding:4px 8px;border-radius:6px;white-space:nowrap}
.comp.o1{color:#55efc4;background:rgba(85,239,196,0.08);border:1px solid rgba(85,239,196,0.18)}
.comp.olog{color:#fdcb6e;background:rgba(253,203,110,0.08);border:1px solid rgba(253,203,110,0.18)}
.comp.onlog{color:#e17055;background:rgba(225,112,85,0.08);border:1px solid rgba(225,112,85,0.18)}
.comp.on{color:#ff7675;background:rgba(255,118,117,0.08);border:1px solid rgba(255,118,117,0.18)}
.empty{padding:36px;text-align:center;color:#444}
.count{margin-left:auto;font-size:12px;color:#777}
@media (max-width:780px){.sidebar{display:none}.search input{width:140px}}
