/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  background-color: #0b0b0c;
  color: #e2e2e2;
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
menu{
font-family: "Cinzel", serif;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;	

}
/* CONTENITORE */
main,
article {
  max-width: 70ch;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

/* PARAGRAFI */
p {
  margin: 0 0 1.6em 0;
  font-size: 1.2rem;
}

/* PRIMA LETTERA (opzionale, molto editoriale) */
p:first-of-type::first-letter {
  font-size: 3.2rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 0.15em;
  color: #ffffff;
}

/* TITOLI */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* GERARCHIA */
h1 {
  font-size: 2.4rem;
  margin: 0 0 2rem 0;
  text-align: center;
}

h2 {
  font-size: 1.9rem;
  margin: 3.5rem 0 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin: 3rem 0 1.2rem;
}

/* SOTTOTITOLO O SEZIONI */
h4 {
  font-size: 1.15rem;
  color: #cfcfcf;
}

/* ENFASI */
strong {
  color: #ffffff;
  font-weight: 700;
}

em {
  color: #d5d5d5;
  font-style: italic;
}

/* CITAZIONI */
blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background-color: #141416;
  border-left: 4px solid #8b0000;
  font-style: italic;
  color: #cccccc;
}
   pre {
            background-color: #000;
            color: #00ff00;
            padding: 20px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9em;
            overflow-x: auto;
            border-radius: 5px;
            line-height: 1.2;
            margin: 20px 0;
        }

  .system-alert {
            border: 2px solid #ff0000;
            color: #ff0000;
            background-color: #1a0000;
        }
        .system-info {
            color: #00fbff;
            background-color: #001a1a;
        }
        .countdown {
            font-family: 'Courier New', monospace;
            font-weight: bold;
            color: #ff0000;
            background: #eee;
            padding: 2px 5px;
        }
  .author-note {
            font-size: 0.9em;
            border-left: 3px solid #ccc;
            padding-left: 20px;
            margin-top: 50px;
            color: #666;
        }
        .teaser {
            text-align: center;
            font-weight: bold;
            margin-top: 30px;
        }

/* LINK */
a {
  color: #c94b4b;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 75, 75, 0.4);
}

a:hover {
  color: #ff6b6b;
  border-bottom-color: #ff6b6b;
}

/* SEPARATORE NARRATIVO */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #444,
    transparent
  );
  margin: 4rem 0;
}

/* MOBILE */
@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  main,
  article {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* DESKTOP GRANDI */
@media (min-width: 1200px) {
  body {
    font-size: 1.1rem;
  }
}
