body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: #6a1b9a;
  margin-bottom: 20px;
}

h1 {
  color: #6a1b9a;
  font-size: 24px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  font-weight: bold;
}

input, select, button {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  background-color: #6a1b9a;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #4a148c;
}

.results {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
  text-align: left;
}

#horoscopeResult, #compatibilityResult, #genderInsights {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}