/* Dil Seçimi Popup */
.language-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.language-popup-content {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.language-popup-content h2 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.5rem;
  text-align: center;
}

.language-popup-content p {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
  font-size: 1rem;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.lang-btn {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn:hover {
  border-color: #4a90e2;
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.lang-btn.active {
  border-color: #4a90e2;
  background: #4a90e2;
  color: white;
  font-weight: 600;
}

.language-popup-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobil uyumluluk */
@media (max-width: 600px) {
  .language-popup-content {
    padding: 20px;
    margin: 20px;
  }

  .language-popup-content h2 {
    font-size: 1.2rem;
  }

  .lang-btn {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

