/* 帧率检测 - 简约风格 */
#fps {
  position: fixed;
  /* 指定位置 */
  right: 10px;
  bottom: 10px;
  z-index: 1919810;
  
  /* 简约样式 */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--backdrop-filter) blur(8px);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  
  /* 简洁文字 */
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  
  /* 极简交互 */
  transition: opacity 0.2s ease;
}

/* 可选：悬停时稍微提亮 */
#fps:hover {
  background: rgba(255, 255, 255, 0.95);
}