.ai-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.75);
}

.ai-modal-content {
  background: #0e0e1a;
  color: white;
  margin: 10% auto;
  padding: 30px 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 25px #00f0ff88;
  position: relative;
}

.ai-modal-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.ai-modal-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ccc;
}

.ai-modal-content input {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  background: #1b1b2f;
  color: #fff;
  font-size: 16px;
}

.ai-modal-content button {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 25px;
}

.ai-modal-content button:hover {
  opacity: 0.9;
}

.ai-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}
