:root{
  --bg:#0b0f14;
  --card:#111826;
  --text:#e6edf3;
  --muted:#9aa7b2;
  --accent:#4fd1c5;
  --danger:#ff6b6b;
  --ok:#2ecc71;
  --border: rgba(255,255,255,.08);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(79,209,197,.12), transparent 60%),
              radial-gradient(900px 500px at 10% 10%, rgba(46,204,113,.10), transparent 60%),
              var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.container{max-width:1050px; margin:0 auto; padding:20px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 35%), var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.topbar{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; margin-bottom:16px;
}
.nav a{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background: rgba(255,255,255,.02);
}
.nav a:hover{border-color: rgba(79,209,197,.4)}
.logo{
  width:250px; height:250px; display:block; margin: 20px auto 20px auto;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.45));
}
.h1{font-size:22px; font-weight:700; margin:6px 0 14px 0; text-align:center;}
.sub{color:var(--muted); text-align:center; line-height:1.4; margin:0 0 18px 0}
.searchRow{display:flex; gap:10px; justify-content:center; flex-wrap:wrap}
.input{
  width:min(460px, 92vw);
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  font-size:16px;
}
.btn{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(79,209,197,.35);
  background: rgba(79,209,197,.12);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
.btn:hover{background: rgba(79,209,197,.18)}
.grid2{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media(min-width:900px){
  .grid2{grid-template-columns: 1fr 1fr;}
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.02);
  color:var(--muted);
  font-size:13px;
}
.list{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:10px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.pill.ok{border-color: rgba(46,204,113,.35)}
.pill.dn{border-color: rgba(255,107,107,.35)}
.pill:hover{border-color: rgba(79,209,197,.40)}
.footerNote{color:var(--muted); font-size:13px; margin-top:14px; line-height:1.4}

.chartWrap{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(0,0,0,.12);
}
#chartContainer{width:100%; height: 74vh; min-height:520px;}
