/* Bot leaderboard rows */
.botlb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.botlb-tabs button {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid #27272a;
  background: #000;
  color: #a1a1aa;
  padding: 8px 12px;
  cursor: pointer;
}
.botlb-tabs button.active {
  border-color: #5BA3F5;
  color: #5BA3F5;
}
.botlb-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.botlb-row {
  display: grid;
  grid-template-columns: 44px 44px 1fr auto auto;
  gap: 10px;
  align-items: center;
  border: 2px solid #27272a;
  background: #0a0a0a;
  padding: 10px 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.botlb-row.is-you {
  border-color: #FF6B00;
  background: #1a0c00;
  box-shadow: 0 0 0 1px #FF6B00, 4px 4px 0 #000;
}
.botlb-rank {
  font-family: "JetBrains Mono", monospace;
  color: #5BA3F5;
  font-weight: 700;
}
.botlb-ava {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid #27272a;
  background: #111;
}
.botlb-name {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}
.botlb-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: #71717a;
  letter-spacing: 0.06em;
}
.botlb-pts,
.botlb-rating {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  color: #fff;
  text-align: right;
  font-size: 16px;
  line-height: 1.1;
}
.botlb-pts span,
.botlb-rating span {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: #71717a;
  letter-spacing: 0.1em;
}
.botlb-you-pin {
  position: sticky;
  bottom: 0;
  margin-top: 12px;
  padding-top: 8px;
  background: linear-gradient(transparent, #0a0a0a 30%);
}
