body {
  font-family: 'Georgia', serif;
  background: #111;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
  padding: 10px;
}

.mea-culpa-regular {
  font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
  font-size:60px;
  color: white;
}


/* CONTENEDOR PRINCIPAL DEL CD */
.cd-container {
  background-image: url('portada-ChinaEtcheverry-2.png'); /* Ruta de tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  width: 700px;
  text-align: center;
  color: #eee;
  position: relative;
}

/* Capa oscura para mejorar legibilidad */
.cd-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.6); /* negro con opacidad */
  border-radius: 20px;
  z-index: 0;
}

/* Eleva todo el contenido por encima de la capa oscura */
.cd-container > * {
  position: relative;
  z-index: 1;
}

/* TÍTULO DEL ÁLBUM */
.album-title {
  font-size: 1.8em;
  margin-bottom: 5px;
  color: #f7c948;
}

/* COLUMNAS DE TEMAS */
.track-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

/* LISTA DE CANCIONES */
.tracklist {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  text-align: left;
}

.tracklist li {
  padding: 8px 12px;
  border-bottom: 1px solid #444;
  cursor: pointer;
  transition: background 0.2s;
}

.tracklist li:hover {
  background-color: #333;
  color: #f7c948;
}

/* TEXTO DE CANCIÓN ACTUAL */
#current-song {
  margin-top: 10px;
  font-style: italic;
  color: #ccc;
}

/* REPRODUCTOR DE AUDIO */
audio {
  width: 100%;
  margin-top: 15px;
}