:root{
  --bg:#0b1020;
  --text:#e5e7eb;
  --muted:#a7b0c0;
  --gold:#f7c948;
  --brand:#21ae3e;
  --border:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(33,174,62,.25), transparent 55%),
    radial-gradient(900px 500px at 90% 30%, rgba(247,201,72,.25), transparent 55%),
    var(--bg);
  color:var(--text);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.container{width:100%; max-width:1200px}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.35);
  padding:22px;
  position:relative;
  overflow:hidden;
}

.small{font-size:12px;color:var(--muted)}
a.link{color:#ffe08a; font-weight:900; text-decoration:none}

.pre{
  background:#070b16;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  font-size:12px;
  color:#d1d5db;
  overflow:auto;
  max-height:70vh;
}

/* tables */
.tbl{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:1100px;
  font-size:12px;
}
.tbl thead th{
  text-align:left;
  padding:10px 10px;
  color:#e5e7eb;
  border-bottom:1px solid rgba(255,255,255,.12);
  position:sticky;
  top:0;
  background: rgba(7,11,22,.9);
  backdrop-filter: blur(8px);
}
.tbl tbody td{
  padding:10px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#d1d5db;
  vertical-align:top;
}
.tbl tbody tr:hover{ background: rgba(255,255,255,.04); }

.miniBtn{
  display:inline-block;
  padding:7px 10px;
  border-radius:10px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#ffe08a;
  font-weight:900;
  text-decoration:none;
}
.miniBtn:hover{ background: rgba(255,255,255,.12); }

h3{
  color:#ffe08a;
  margin:16px 0 8px;
  font-size:14px;
}

.mapBox{
  margin-top:12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
.mapFrame{
  width:100%;
  height:320px;
  border:0;
}
