/* Game details page — extends random_setup parchment via .setup-header */

.details-back {
  max-width: 640px;
  margin: 1.5rem auto;
  text-align: center;
}

/* Edit links */
.details-edit-link {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b5a382;
  text-decoration: none;
  transition: color 0.2s;
}
.details-edit-link:hover {
  color: #5a4a30;
}

.details-edit-row {
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(138, 115, 84, 0.15);
  text-align: right;
}

/* Inline in narrator-style-badge */
.narrator-style-badge .details-edit-link {
  margin-left: 0.5rem;
}

/* Text input (hero name) */
.details-input {
  width: 100%;
  background: rgba(255, 250, 240, 0.4);
  color: #3a2a14;
  border: 1px solid rgba(138, 115, 84, 0.35);
  padding: 0.5rem 0.75rem;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.details-input:focus {
  outline: none;
  border-color: #8a7354;
}

/* Character counter */
.char-counter {
  display: block;
  text-align: right;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.75rem;
  color: #8a7354;
  margin-top: 0.15rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
