.love-ai-container {
  max-width: 550px;
  margin: 30px auto;
  padding: 25px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 25px;
  box-shadow: 0 0 25px rgba(255, 20, 147, 0.3);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.love-ai-container h2 {
  color: #ff4fc3;
  font-size: 1.9em;
}

.subtitle {
  font-size: 0.9em;
  color: #ff99cc;
  margin-bottom: 20px;
}

.input-grid {
  text-align: left;
  margin-bottom: 15px;
}

.input-grid label {
  display: block;
  color: #ff9ecd;
  font-weight: 500;
  margin: 5px 0;
}

.input-grid input {
  width: 100%;
  padding: 8px;
  border: 2px solid #ff66b2;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #0f0f1a;
  color: #fff;
  font-size: 0.95em;
  transition: 0.3s;
}

.input-grid input:focus {
  border-color: #ff1493;
  box-shadow: 0 0 8px #ff66b2;
}

.button-box {
  margin-top: 10px;
}

.button-box button {
  background: linear-gradient(90deg, #ff1493, #ff69b4);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  margin: 5px;
  transition: all 0.3s;
}

.button-box button:hover {
  transform: scale(1.05);
}

.ai-progress {
  background: #222;
  height: 12px;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff66b2, #ff1493);
  transition: width 1s ease-in-out;
}

.result-section {
  background: #0f0f1a;
  padding: 20px;
  border-radius: 15px;
  box-shadow: inset 0 0 15px #ff1493;
  margin-top: 20px;
}

.result-section p {
  color: #ffb6c1;
  font-weight: 600;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .love-ai-container {
    width: 90%;
  }
}
