.bg-switcher-container {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
}

.bg-switcher {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 28, 40, 0.55);
  color: #e5edf7;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  outline: none;
}

.bg-switcher:hover {
  background: rgba(28, 38, 52, 0.65);
}

.bg-switcher option {
  background: #1b2430;
  color: #e5edf7;
}