/* 基础样式：尽量保持轻量但好看 */

:root{
  --bg0:#070A12;
  --bg1:#0B1632;
  --card:#0E1F3Fcc;
  --card2:#0E1F3F;
  --text:#E9F0FF;
  --muted:#A9B6D6;
  --line:#243A66;
  --accent:#6AE4FF;
  --accent2:#7C5CFF;
  --danger:#FF5B6E;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC",
    "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(124,92,255,.35), transparent 55%),
    radial-gradient(900px 450px at 80% 20%, rgba(106,228,255,.25), transparent 50%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

.page{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.card{
  width:min(980px, 100%);
  background: linear-gradient(180deg, rgba(14,31,63,.9), rgba(14,31,63,.7));
  border:1px solid rgba(36,58,102,.85);
  border-radius:18px;
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
  overflow:hidden;
  backdrop-filter: blur(10px);
}

.title{
  padding:26px 26px 14px 26px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(106,228,255,.35);
  background: rgba(106,228,255,.12);
  border-radius:999px;
  color:var(--accent);
  font-weight:700;
  letter-spacing:.08em;
  font-size:12px;
}

h1{
  margin:0;
  font-size:20px;
  font-weight:800;
  color:var(--text);
}

.meta{
  padding:0 26px 18px 26px;
  border-top: 1px solid rgba(36,58,102,.55);
  border-bottom: 1px solid rgba(36,58,102,.55);
}

.row{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:14px 0;
}

.row + .row{
  border-top:1px solid rgba(36,58,102,.35);
}

.label{
  width:160px;
  color:var(--muted);
  font-weight:700;
}

.value{
  flex:1;
  color:var(--text);
  font-size:15px;
}

.error{
  color:var(--danger);
  font-weight:800;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.grid{
  padding:18px 26px 8px 26px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}

.stat{
  background: rgba(7,10,18,.25);
  border: 1px solid rgba(36,58,102,.45);
  border-radius:14px;
  padding:14px 14px;
  min-height:72px;
}

.k{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}

.v{
  margin-top:10px;
  font-weight:800;
  font-size:14px;
  word-break:break-word;
}

.dot{
  opacity:.55;
  padding:0 8px;
}

.actions{
  padding:16px 26px 24px 26px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
}

.btn{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  font-weight:900;
  color:#061025;
  background: linear-gradient(135deg, var(--accent), rgba(124,92,255,.95));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 40px rgba(106,228,255,.16);
}

.btn.ghost{
  color:var(--text);
  background: rgba(7,10,18,.15);
  border:1px solid rgba(36,58,102,.65);
  box-shadow:none;
}

.footer{
  padding:16px 26px 20px 26px;
  color:var(--muted);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.footer a{
  color:var(--accent);
  text-decoration:none;
  border-bottom: 1px dashed rgba(106,228,255,.35);
}

.sep{ opacity:.5; }

@media (max-width: 860px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .label{ width:130px; }
}

@media (max-width: 460px){
  .grid{ grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .title{ flex-direction:column; gap:10px; }
}

