/* Welcome Popup Styles */
.welcome-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.welcome-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.welcome-popup-content {
  position: relative;
  z-index: 10000;
  background: white;
  max-width: 800px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.welcome-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 58px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.welcome-popup-body {
  display: flex;
  flex-direction: column;
}

.popup-image {
  width: 100%;
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  height: auto;
  display: block;
}

.popup-footer {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eee;
}

.popup-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.input-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-box label {
  font-size: 14px;
  color: #333;
  user-select: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.popup-kapat-btn {
  background: #d4af37;
  color: white;
  border: none;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.popup-kapat-btn:hover {
  background: #c9a02d;
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-popup-content {
    max-width: 100%;
    width: 95%;
  }

  .welcome-popup-close {
    top: 10px;
    right: 10px;
    font-size: 24px;
  }

  .popup-footer {
    padding: 15px;
  }

  .popup-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .input-box label {
    font-size: 13px;
  }

  .popup-kapat-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
