#splat-controls {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(34, 34, 34, 0.9);
  padding: 1em 1.5em;
  border-radius: 10px;
  color: #fff;
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

#splat-controls:hover {
  background: rgba(50, 50, 50, 0.95);
  transform: scale(1.03);
}