/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Corpo da página */
  body {
    background-color: #161f2d;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Cabeçalho e menu */
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  nav a {
    color: #fffb00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #00fbff;
  }
  
  
  /* Seção principal */
  section {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    max-width: 900px;
    margin: auto;
    color: #ffffff;
  }
  
  /* Título */
  h2 {
    font-size: 2em;
    color: #ffcc00;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #000;
  }
  
  /* Subtítulos */
  h3 {
    margin-top: 25px;
    color: #ffcc00;
  }
  
  /* Imagem da capa */
  img {
      text-align: center;
      margin: 0;
    width: 80%;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 2px solid #444;
  }
  
  /* Bloco de citação */
  blockquote {
    font-style: italic;
    background: #2c2c2c;
    padding: 10px 15px;
    border-left: 4px solid #4281bb;
    border-radius: 8px;
    margin: 20px 0;
    color: #ae5252;
  }
  
  /* Lista de curiosidades */
  ul {
    padding-left: 20px;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  /* Letra da música */
  pre {
    white-space: pre-wrap;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #333;
    color: #ffffff;
    overflow-x: auto;
  }
  
  /* Vídeo responsivo */
  iframe {
    border: none;
    border-radius: 10px;
  }