body {
    background-color: #161f2d;
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
    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;
  }
  
  
  .musica-detalhe {
    max-width: 900px;
    margin: auto;
    background-color: #f0f4f8;
    color: #222;
    padding: 30px;
    border-radius: 15px;
  }
  
  .musica-box img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }
  
  .info-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  blockquote {
    background: #e0ecf3;
    border-left: 4px solid #5e9cd6;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-style: italic;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .letra {
    background: #fff;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    white-space: pre-wrap;
    border: 1px solid #ccc;
    overflow-x: auto;
  }
  