/* Language Switcher Styles */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: rgba(31, 41, 55, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.lang-btn:hover {
  background: rgba(55, 65, 81, 0.9);
  transform: scale(1.05);
}

.lang-btn.active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.flag {
  font-size: 28px;
  line-height: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .language-switcher {
    top: 15px;
    right: 15px;
    padding: 6px;
    gap: 6px;
  }
  
  .lang-btn {
    width: 42px;
    height: 42px;
  }
  
  .flag {
    font-size: 24px;
  }
}
