body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background: #f4f1ec;
  color: #2e2e2e;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #3b2f2f, #5c4a4a);
  color: #fff;
  padding: 2rem;
  text-align: center;
  border-bottom: 4px solid #d4af37;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

main {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-top: 1.5rem;
  font-weight: bold;
  color: #3b2f2f;
}

form input[type="text"],
form select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

form small {
  display: block;
  margin-top: 0.25rem;
  color: #666;
  font-size: 0.9rem;
}

button[type="submit"] {
  background: #d4af37;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 2rem;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #bfa133;
}

.lore-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #3b2f2f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.lore-button:hover {
  background: #5c4a4a;
}

#loreSidebar {
  font-family: 'Georgia', serif;
  background: #fffbe6;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 16px;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 300px;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#loreSidebar h3 {
  margin-top: 0;
  color: #3b2f2f;
}

#closeLore {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #999;
  float: right;
}

#loreSidebar blockquote {
  margin-top: 10px;
  font-style: italic;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #3b2f2f;
  color: #fff;
  font-size: 0.9rem;
  border-top: 4px solid #d4af37;
}

.fantasy-banner {
  position: relative;
  margin: 2rem auto;
  max-width: 400px;
  border: 8px solid #3b2f2f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.fantasy-banner img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.faction-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(59, 47, 47, 0.85);
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-family: 'Georgia', serif;
}

.faction-overlay h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #d4af37;
}

.faction-overlay p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

