:root{
  --bg: #0b1020;
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --border: rgba(255,255,255,0.10);
  --good: rgba(84, 214, 139, 0.95);
  --warn: rgba(255, 196, 77, 0.95);
  --bad: rgba(255, 90, 90, 0.95);
}

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

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1000px 600px at 20% 0%, rgba(72,115,255,0.25), transparent 55%),
              var(--bg);
  color: var(--text);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
}

.dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(72,115,255,0.95);
}

.title{
  font-size: 20px;
  font-weight: 700;
}

.subtitle{
  font-size: 13px;
  color: var(--muted);
}

.status{
  text-align:right;
}

.pill{
  font-weight: 800;
  letter-spacing: 0.8px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  display:inline-block;
  margin-bottom: 6px;
}

.meta{
  font-size: 12px;
  color: var(--muted);
}

.grid{
  padding: 24px;
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.card{
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  min-height: 180px;
}

.card.primary{
  background: linear-gradient(180deg, rgba(72,115,255,0.25), rgba(255,255,255,0.06));
  border-color: rgba(72,115,255,0.35);
  grid-row: 1 / span 2;
}

.label{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.player{
  margin-top: 20px;
  display:flex;
  align-items:center;
  gap: 24px;
}

.number{
  font-size: 72px;
  font-weight: 900;
  min-width: 110px;
}

.card.primary .number{
  font-size: 110px;
  min-width: 160px;
}

.name{
  font-size: 40px;
  font-weight: 900;
}

.card.primary .name{
  font-size: 64px;
}

.detail{
  margin-top: 10px;
  font-size: 18px;
  color: var(--muted);
}

.chips{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 900px){
  .grid{
    grid-template-columns: 1fr;
  }
  .card.primary{
    grid-row: auto;
  }
}