/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: flex;
  flex-direction: row;
  gap: 0;
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(0,255,136,0.15);
  z-index: 10;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  flex-shrink: 0;
  overflow: hidden;
}

.stats-spacer {
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  flex-shrink: 0;
  background: var(--bg);
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex: 1;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-k {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 1px;
  line-height: 1;
}

.stat-v {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.stat-v.best {
  color: var(--green);
}

.stat-v.worst {
  color: var(--red);
}

.stat-v.hot {
  color: var(--gold);
}

.stat-v.cold {
  color: #64b5f6;
}

.stat-v.time {
  color: var(--accent);
  opacity: 0.7;
}
