:root{
  --bg:#0b1020;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.62);
  --radius:16px;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --mono:ui-monospace,Menlo,Consolas,monospace;
  --sans:ui-sans-serif,system-ui,Segoe UI,Roboto,Arial;
  --accent:#7dd3fc;
  --danger:#fca5a5;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1000px 650px at 20% 15%, rgba(125,211,252,.12), transparent 60%),
    radial-gradient(900px 650px at 80% 20%, rgba(167,139,250,.10), transparent 55%),
    var(--bg);
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px;
}

.wrap{width:100%;max-width:980px}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

h1{
  margin:0;
  font-size:24px;
  letter-spacing:-.02em;
}

.sub{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  padding:8px 12px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn:hover{background:rgba(255,255,255,.08)}

.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  margin-bottom:14px;
}

.title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.title-left{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
}

.icon{
  width:18px;
  height:18px;
  stroke:var(--accent);
  flex:none;
}

.badge{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--stroke);
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  white-space:nowrap;
}

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

@media (min-width: 820px){
  .grid{grid-template-columns:1fr 1fr}
}

.k{
  color:var(--muted);
  font-size:12px;
  margin-bottom:6px;
}

.field{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.value{
  width:min(520px, 100%);
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-family:var(--mono);
  font-size:14px;
  outline:none;
}

.help{
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}

details{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius:12px;
  padding:10px 12px;
}
summary{
  cursor:pointer;
  color:var(--text);
  list-style:none;
  user-select:none;
}
summary::-webkit-details-marker{display:none}
.summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.summary-hint{color:var(--muted);font-size:12px}

.hr{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:12px 0;
}

.notice{
  border:1px solid rgba(252,165,165,.28);
  background:rgba(252,165,165,.08);
  border-radius:14px;
  padding:12px 14px;
}
.notice .n-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin:0 0 6px 0;
}
.notice .n-body{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.4;
}
.notice svg{width:18px;height:18px;stroke:var(--danger)}
