body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url('./bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

.overlay {
  backdrop-filter: blur(0px);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

.selectors select {
  padding: 10px;
  font-size: 16px;
  margin: 10px 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 45%;
}

button {
  background-color: #ff85a2;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  color: white;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ff6b8a;
}

.mode-toggle {
  margin-bottom: 20px;
}

.mode-toggle button {
  background-color: #f0f0f0;
  color: #333;
  margin: 0 10px;
  padding: 8px 15px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mode-toggle button.active {
  background-color: #ff85a2;
  color: white;
}

#result {
  margin-top: 25px;
  font-size: 18px;
  color: #444;
  animation: fadeIn 1s ease-in-out;
  line-height: 1.5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
