body {
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  color: #f9f9f9;
  text-align: center;
  padding: 3rem 1rem;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  max-width: 600px;
  margin: auto;
}

h1 {
  font-size: 2.8rem;
  color: #e74c3c;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px black;
}

p {
  color: #bbb;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

input[type="text"] {
  padding: 14px;
  font-size: 18px;
  width: 260px;
  border-radius: 10px;
  border: none;
  text-align: center;
  box-shadow: 0 0 10px #000;
  margin-bottom: 15px;
}

button {
  padding: 12px 30px;
  font-size: 16px;
  background: #d35400;
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 10px #000;
  transition: background 0.3s ease;
}

button:hover {
  background: #e67e22;
}

#result {
  margin-top: 30px;
  font-size: 1.5rem;
  font-style: italic;
  color: #f1c40f;
}

a {
  text-decoration: none;
  font-weight: bold;
}
