:root{
  --bg: #0b0e14;
  --panel:#101827;
  --text:#e6eaf2;
  --muted:#a6b0c3;
  --border: rgba(255,255,255,.10);
  --accent:#7c3aed;
  --btn:#1f2a44;
}
:root[data-theme="light"]{
  --bg:#f7f8fb;
  --panel:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border: rgba(15,23,42,.12);
  --accent:#5b21b6;
  --btn:#eef2ff;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:1100px; margin:0 auto; padding:28px 18px 64px}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 16px; border:1px solid var(--border);
  border-radius:16px; background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
:root[data-theme="light"] .topbar{background: rgba(15,23,42,.03)}
.brand{display:flex; align-items:center; gap:14px}
.brand img{height:46px; width:auto; display:block}
.brand h1{font-size:16px; margin:0; letter-spacing:.2px}
.toggle{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border:1px solid var(--border);
  border-radius:12px; background: transparent; color: var(--text);
  cursor:pointer;
}
.card{
  margin-top:20px;
  border:1px solid var(--border);
  border-radius:18px;
  background: rgba(255,255,255,.03);
  padding:20px;
}
:root[data-theme="light"] .card{background: rgba(15,23,42,.02)}
.hero{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:26px 14px 6px;
}
.hero img{max-width:260px; width:100%; height:auto}
.hero h2{margin:18px 0 8px; font-size:34px; line-height:1.15}
.hero p{margin:0; color:var(--muted); font-size:15px}
.btnrow{display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:18px}
.btn{
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--border); background: var(--btn);
  color: var(--text); cursor:pointer; font-weight:600;
}
.btn.primary{background: var(--accent); border-color: transparent}
.btn:disabled{opacity:.6; cursor:not-allowed}
.notice{
  margin-top:14px; border-left:4px solid var(--accent);
  padding:12px 14px; border-radius:12px;
  background: rgba(124,58,237,.12);
  color: var(--text);
}
:root[data-theme="light"] .notice{background: rgba(91,33,182,.08)}
.muted{color:var(--muted)}
.tablewrap{overflow:auto; border:1px solid var(--border); border-radius:14px; margin-top:14px}
table{width:100%; border-collapse:collapse; min-width:720px}
th,td{padding:12px 12px; border-bottom:1px solid var(--border); text-align:left; font-size:14px}
th{color:var(--muted); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:.08em}
tr:last-child td{border-bottom:none}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size:12px; font-weight:700;
}
.pill.ok{border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.10)}
.pill.no{border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.10)}
.denial-row td{background: rgba(239,68,68,.06)}
:root[data-theme="light"] .denial-row td{background: rgba(239,68,68,.08)}
.denial-details{display:flex; flex-direction:column; gap:4px; font-size:13px}
.footer{margin-top:24px; text-align:center; color:var(--muted); font-size:12px}
