:root {
  --background-121212: #121212;
}

.lang-toggle {
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  color: var(--background-121212);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease, transform 0.2s ease-in-out;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 8%;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.lang-toggle:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.lang-toggle:active {
  transform: scale(0.95) rotate(-5deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}/*# sourceMappingURL=language.css.map */