:root{
  --bg1:#0b1020;
  --bg2:#111a33;
  --card:rgba(255,255,255,0.06);
  --border:rgba(255,255,255,0.10);
  --text:#eef2ff;
  --muted:rgba(238,242,255,0.65);
  --accent:#7c3aed;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,Segoe UI,Roboto,Arial;
  color:var(--text);
}

.bg{
  min-height:100vh;
  background:
    radial-gradient(900px 600px at 20% 10%, #1d2b57, transparent 60%),
    linear-gradient(180deg,var(--bg1),var(--bg2));
}

.container{max-width:1100px;margin:0 auto;padding:24px}

.hero{margin-bottom:16px}

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

h1,h2{margin:0 0 10px 0}

.muted{color:var(--muted)}

.groupRow{padding:12px 0;border-top:1px solid rgba(255,255,255,0.06)}
.groupRow:first-child{border-top:0}

.groupHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.groupName{font-weight:800}

.chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:6px}

.chip{
  border:1px solid rgba(255,255,255,0.12);
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.table{
  width:100%;
  border-collapse:collapse;
}

.table th,.table td{
  padding:8px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.admin-gear{
  position:fixed;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.1);
  text-decoration:none;
  font-size:20px;
  color:white;
}

/* Footer */
.footer{
  margin-top:40px;
  padding:18px 12px;
  text-align:center;
  font-size:14px;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,0.08);
}
