html,
body {
	margin: 0;
	padding: 0;
	font-family: "Inria Sans", sans-serif;
	background-color: #8F0C0F;
	color: #000;
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
}

::-webkit-scrollbar {
	background-color: #222;
	width: 10px;
	-webkit: 6px 6px 6px:#000;
}

::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: #8F0C0F;
	/*fACE MUDA AQUI*/

}

.container {
	width: 95%;
	max-width: 1300px;
	margin: 40px auto;
	padding: 10px;
	background-color: #000;
	text-align: center;
	box-sizing: border-box;
	border-radius: 12px;
}

         /* Container geral */
         .container-imagens {
         width: 60%;                 /* ocupa mais espaço no celular */
         max-width: 800px;
         margin: 40px auto;
         padding: 0;
         background-color: #000;
         box-sizing: border-box;
         border: 1px solid #222;      /* corrigido: faltava "solid" */
         border-radius: 20px;
         box-shadow: 0px -10px 40px #ff0000;
         }
         /* Tabela/box responsivo com enfeite */
         .responsive-table {
         width: 100%;
         padding: 0;
         border: 10px solid transparent;
         border-image: url("img/enfeite.gif") 30 round;
         border-radius: 20px;
         background-color: #000;
         overflow: hidden;           /* evita imagem ultrapassar */
         }
         /* Imagem principal */
         .responsive-table img {
         width: 100%;
         height: auto;               /* agora a altura se ajusta ao tamanho da tela */
         margin: 0;
         display: block;
         border-radius: 20px;
         }
         /* Para celular/tablet: remove borda decorativa */
         @media (max-width: 768px) {
         .responsive-table {
         border: none;
         border-image: none;
         border-radius: 10px;
         }
         }
         /* Enfeite lateral */
         .img-box.enfeite {
         width: 6px;
         height: auto;
         object-fit: cover;
         border-radius: 20px;
         }
         .img-box.enfeite img {
         width: 6px;
         height: 100%;
         object-fit: cover;
         border-radius: 20px;
         }
         /* Versos/imagens grandes */
         .img-box.versos {
         width: 100%;
         max-width: 100%;
         border-radius: 20px;
         margin: 0 auto;
         overflow: hidden;
         display: flex;
         justify-content: center;
         }
         .img-box.versos img {
         width: 100%;
         max-height: 400px;
         height: auto;
         border-radius: 20px;
         display: block;
         margin: 0 auto;
         }
         /* Ajuste para celular */
         @media (max-width: 768px) {
         .img-box.versos img {
         width: 100%;
         max-height: 280px;
         border-radius: 12px;
         }
         }
		 
#banner {
	margin: 20px 0;
}

#banner a {
	color: #8F0C0F;
	text-decoration: none;
	margin: 0 4px;
	font-weight: bold;
}

h1 {
	color: #8F0C0F;
	font-size: 32px;
	font-family: 'Merriweather', serif;
}
.footer-link {
  all: unset;
  display: block;            /* obrigatório para aparecer corretamente */
  text-align: center;
  font-size: 14px;
  color: #8F0C0F;
  margin-top: 20px;
  text-decoration: none;
}

.footer-link {
  all: unset;
  display: block;            /* obrigatório para aparecer corretamente */
  text-align: center;
  font-size: 14px;
  color: #8F0C0F;
  margin-top: 20px;
  text-decoration: none;
}

	}
}

body,
td,
th {
	color: #8F0C0F;
	font-weight: bold;
	font-family: "Inria Sans", sans-serif;
	font-size: 18px;
	/* NOME DO CANTOR */
	letter-spacing: 1px;
}

h2 {

	font-weight: normal;
	color: #abc3d4;
	/* Nome do cantor */

}

h6 {
	margin-bottom: 5px;
	/* Defina aqui o valor de margem inferior desejado */
}

a:link {
	color: #999;
}

a:visited {
	color: #888;
}

a:hover {
	color: #ff0000;
}

a:active {
	color: #ff0000;
}

a {
	font-weight: normal;
	font-size: 18px;
	color: #8F0C0F;
	text-decoration: none;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#video-container {
	width: 100%;
	max-width: 900px;
	margin: 20px auto;
	padding: 20px;
	background: #222;
	border: 2px solid #8F0C0F;
	border-radius: 10px;
	overflow-y: auto;
	max-height: 500px;
}

#trackList li {
	padding: 5px 10px;
	border-bottom: 1px solid #333;
	color: #ccc;
	transition: background 0.3s;
	text-align: left;
}

#trackList li:hover {
	background: #000;
	color: #fff;
}

#trackList li.activeTrack {
	background: #000;
	color: #ff0000;
	font-weight: bold;
}

@media (max-width: 768px) {
	#video-container {
		max-width: 88%;
		padding: 10px;
		max-height: 450px;
		overflow-y: auto;
		scrollbar-width: thin;
		/* Firefox */
	}

	/* Scroll fino para WebKit (Chrome, Safari, Edge) */
	#video-container::-webkit-scrollbar {
		width: 6px;
	}

	#video-container::-webkit-scrollbar-thumb {
		background-color: #8F0C0F;
		border-radius: 10px;
	}

	#trackList li {
		font-size: 14px;
	}
}

.music-link.selected:after {
	content: "\2713";
	/* Marca de selecao */
	margin-left: 5px;
}

.copy-icon {
	margin-left: 20px;
	cursor: pointer;
}

.copy-icon svg {
	color: #8F0C0F;
}

.copy-icon svg:hover {
	color: #ff0000;
}