body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f5ff;
  margin: 0;
  padding: 0;
}

/* Centered container */
.container {
  max-width: 700px;
  margin: 60px auto;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

h1 {
  text-align: center;
  margin-top: 0;
}

.intro {
  text-align: center;
  color: #555;
}

/* Form layout */
form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-row label {
  font-weight: bold;
  margin-bottom: 4px;
}

.form-row input {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Buttons */
.buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.buttons button {
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background: #4b6cff;
  color: #ffffff;
}

.buttons button#random-btn {
  background: #ff8b3d;
}

.buttons button:hover {
  opacity: 0.9;
}

/* Story output area */
#story-container {
  margin-top: 30px;
  padding: 15px;
  background: #eef2ff;
  border-radius: 8px;
}

#story-output {
  font-size: 1.1rem;
  line-height: 1.5;
}
