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

header {
  text-align: center;
  margin-top: 70px;
}

h1 {
  color: #272044;
  font-size: 42px;
  margin-bottom: 40px;
}

main {
  max-width: 700px;
  margin: 0 auto;
}

form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

input {
  flex: 1;
  padding: 15px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-size: 16px;
}

input:focus {
  outline: none;
  border-color: #885df1;
}

button {
  background: #885df1;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #6f42e8;
}

footer {
  text-align: center;
  margin-top: 60px;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

footer a {
  color: #885df1;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

#result {
  background: white;
  margin-top: 30px;
  padding: 25px;
  border-left: 5px solid #885df1;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  color: #272044;
}

.generating {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.5;
  }
}
