:root{
  --gold:#d7b24c;
  --gold2:#b88a1e;
  --bg:#050505;
  --panel:rgba(0,0,0,.55);
  --stroke:rgba(215,178,76,.25);
  --text:#f3f3f3;
  --muted:#9aa0a6;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 50% 0%, rgba(215,178,76,.15), transparent 60%),
    radial-gradient(900px 600px at 20% 10%, rgba(215,178,76,.08), transparent 55%),
    linear-gradient(#020202, #0a0a0a 40%, #000);
  min-height:100vh;
}
.header{
  padding:26px 24px 10px;
  text-align:center;
}
.title{
  font-weight:900;
  letter-spacing:2px;
  font-size: clamp(44px, 6vw, 84px);
  color:var(--gold);
  text-transform:uppercase;
  text-shadow: 0 10px 30px rgba(0,0,0,.65);
}
.sub{
  margin-top:6px;
  color:var(--muted);
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  font-weight:600;
}
.shell{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:18px;
  padding: 18px 18px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.card{
  background:var(--panel);
  border:1px solid var(--stroke);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.rail .card{ margin-bottom:14px; }
.h3{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.9);
}
.pill{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid var(--stroke);
  color:var(--gold);
  font-size:12px;
  font-weight:700;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.45);
  color: var(--gold);
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{ border-color: rgba(215,178,76,.45); }
.tabs{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:12px;
}
.tab{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  cursor:pointer;
  color:var(--muted);
  font-weight:800;
}
.tab.active{ color: var(--gold); border-color: rgba(215,178,76,.5); }

table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:12px;
}
th, td{
  padding:10px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:14px;
}
th{
  color: rgba(215,178,76,.95);
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:12px;
}
.status{
  padding:4px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  display:inline-block;
}
.s-active{ background:rgba(0,140,60,.22); color:#4cff9b; border:1px solid rgba(76,255,155,.25); }
.s-elim{ background:rgba(160,0,0,.25); color:#ff8080; border:1px solid rgba(255,128,128,.25); }
.s-pend{ background:rgba(120,120,120,.25); color:#c6c6c6; border:1px solid rgba(200,200,200,.18); }

@media (max-width: 960px){
  .shell{ grid-template-columns: 1fr; }
}

