/* Font stile runico */
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');

/* Background Terra di Mezzo */
body {
  background: url('https://pasteimg.com/images/2026/01/23/Copilot_20260123_231243.png')
  no-repeat center center fixed;
  background-size: cover;
  color: #000000;
  font-family: 'MedievalSharp', cursive;
  text-shadow: 0 0 8px #000;
}

/* Effetto Anello */
.cover-heading {
  font-size: 3.2rem;
  color: #f8d57e;
  text-shadow: 0 0 12px #ffae00, 0 0 20px #ffae00;
  animation: glow 4s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 8px #ffae00; }
  to   { text-shadow: 0 0 20px #ffae00; }
}

/* Testo runico */
.lotr-quote {
  font-size: 1.3rem;
  color: #f0d9a0;
  text-shadow: 0 0 6px #000;
  margin-top: 20px;
  line-height: 1.8;
}

/* Footer stile pergamena */
.mastfoot p {
  color: #e8d7b8;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Effetto fade-in */
.fade-in {
  animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
