body {
  background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
  color: #ffd4aa;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 3rem;
}

h1 {
  color: #ffa14e;
  text-shadow: 0 0 10px #ff8c42;
}

textarea {
  width: 70%;
  height: 100px;
  padding: 1rem;
  background-color: #121212;
  color: #fff5e1;
  border: 2px solid #ff7733;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(255, 119, 51, 0.4);
}

input[type="submit"] {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #ff7733;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
input[type="submit"]:hover {
  background-color: #ff9966;
}

.scroll-reply {
  background: #1e1e1e;
  border-left: 4px solid #ff7733;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #fefefe;
}
.scroll-reply em {
  color: #ffaa88;
}
