/* Welcome Modal Styles */
.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.welcome-modal.active {
  opacity: 1;
  visibility: visible;
}

.welcome-modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.welcome-modal.active .welcome-modal-content {
  transform: scale(1) translateY(0);
}

.welcome-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.welcome-modal-close:hover {
  background: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.welcome-modal-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 85vh;
  object-fit: contain;
  background: #f5f5f5;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .welcome-modal-content {
    max-width: 95%;
    border-radius: 8px;
  }

  .welcome-modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
    top: 10px;
    right: 10px;
  }

  .welcome-modal-image {
    max-height: 80vh;
  }
}

/* Animasyonlar */
@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleInModal {
  from {
    transform: scale(0.8) translateY(30px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
