.artist-card {
    margin-top: 80px;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    /*background-image: url('../images/slide/slide1.png');*/
    /* background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 100%), url('../images/slide/slide1.png'); */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;

}

.container-artist {
    max-width: 1200px;
    display: flex;
    padding-bottom: 50px;
}

.detalles {
    width: 70%;
    /* max-width: 50%;   */
    display: flex;
    align-items: flex-end;
}


.item-artist {
    display: flex;
}

.img-artist {
    width: 35%;
    min-width: 35%;
}

.img-artist img {
    width: 100%;
    height: auto;
}

.texto-artist {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.texto-artist h1 {
    margin: 0;
    padding: 10px 0;
}

.texto-artist h1 a {
    color: white;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.8em;
}

.texto-artist h1 a:hover {
    color: #e81281;
}

.categorias {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0 10px 0;
}

.categorias span {
    background-color: #10e922;
    color: black;
    padding: 5px 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin: 2px 2px 2px 0;
}

.share {
    width: 100px;
    border: 0px;
    background-color:whitesmoke;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 0px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}


.social {
 width: 30%;
 display: flex;
 justify-content: center;
 align-items: flex-end;
 padding-bottom: 20px;
}

.list-social {
    display: flex;
    list-style: none;
}

.item-social {
    margin: 0 5px;
}

.item-social img {
    width: 70px;
    height: auto;
}

/* tracks */

.tracks {
    width: 100%;
    margin: 0 auto;
}

.tracks-container {
    width: 100%;
    max-width: 1200px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding-bottom: 20px;
}

.track-item {
    width: 100%;
    display: flex;
    margin: 5px 0;
    /* border: 1px solid whitesmoke; */
    height: 200px;
}

.action-play {
    position: relative;
}

.btn-play {
    width: 100px;
    height: 100px;
    position: absolute;
    cursor: pointer;
    left: 25%;
    top: 25%;
    transform: translate(50%, 0);
    z-index: 1;
}

.track-cover {
    /* width: 200px; */
    width: 20%;
}

.cover {
    /* max-width: 100%; */
    width: auto;
    height: 200px;
    opacity: 0.8;
    z-index: 0;
}

.track-detalles {
    display: flex;
    flex-wrap: inherit;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 200px;
    /* flex-grow: 1; */
    padding: 0px 10px;

}

.track-title {
 margin: 0;
}

.sub-track {
    color: white;
    font-weight: bold;
    margin-top: 8px;
}

.track-name h1 {
    color: white;
    font-size: 2.5em;
    text-transform: capitalize;
    word-wrap: break-word;
}

.track-categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content:flex-start;
    align-items: stretch;
    margin-top: 10px;
}

.categoria-item {
    background-color: #10e922;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    margin: 1px 2px 1px 0px;
}

.track-options {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding-right: 10px;
}

.share-card {
    width: 100%;
    border: 0px;
    background-color: #0ae3d0;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    margin: 5px 0;
}

.download-card {
    width: 100%;
    border: 0px;
    background-color: #e81281;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    margin: 5px 0;
}

.delimiter {
    border: 0;
    border-bottom: 1px solid #c3c3c3;
}

/*Modal*/
/* Estilo para el fondo semi-transparente detrás de la modal */
.modal {
    display: none; /* La modal está oculta por defecto */
    position: fixed; /* La modal se posiciona en relación al viewport del navegador */
    z-index: 1; /* Asegura que la modal esté por encima del contenido */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Añade un desplazamiento para que se pueda desplazar el contenido de la modal si es demasiado grande */
    background-color: rgba(0,0,0,0.4); /* Un fondo negro semi-transparente */
  }
  
  /* Estilo para el contenido de la modal */
  .modal-contenido {
    margin: 7% auto; /* Coloca la modal en el centro de la pantalla */
    padding: 0px;
    width: 748px; /* Establece el ancho del contenido */
    height: 449px;
  }
  
  /* Estilo para el botón de cierre (x) */
  .cerrar {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  /* Cambia el color del botón de cierre al pasar el cursor por encima */
  .cerrar:hover,
  .cerrar:focus {
    color: #c3c3c3;
    text-decoration: none;
    cursor: pointer;
  }

  .enlace-artist {
    color: white;
    text-decoration: none;
  }

  .enlace-artist:hover {
    text-decoration: underline;
  }


/*Media Screen for Mobile*/
@media (max-width: 768px) {

    .artist-card {
        margin-top: 60px;
        width: 100%;
    }
    
    .container-artist {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        justify-items: center;
        padding: 0 10px;
        margin: 0;
    }
    
    .detalles {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 20px;
        margin: 0 auto;
    }
    
    
    .item-artist {
        display: flex;
        justify-content: center;
    }
    
    .img-artist {
        width: 40%;
        min-width: 40%;
        max-width: 40%;
    }
    
    .img-artist img {
        width: 100%;
        height: auto;
    }
    
    .texto-artist {
        min-width: 60%;
        padding-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .texto-artist h1 {
        margin: 0;
    }
    
    .texto-artist h1 a {
        color: white;
        text-decoration: none;
        text-transform: capitalize;
        font-size: 1em;
    }
    
    .texto-artist h1 a:hover {
        color: #e81281;
    }
    
    .categorias {
        display: flex;
        flex-wrap: wrap;
    }
    
    .categorias span {
        background-color: #10e922;
        color: black;
        padding: 5px 10px;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 11px;
        margin: 2px 2px 2px 0;
    }
    
    .share {
        width: 100px;
        border: 0px;
        background-color:whitesmoke;
        font-weight: bold;
        text-transform: uppercase;
        padding: 8px 0px;
        cursor: pointer;
        font-size: 12px;
        border-radius: 5px;
    }
    
    
    .social {
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: flex-end;
     margin: 0 auto;
    }
    
    .list-social {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        list-style: none;
        padding: 10px 0px;
    }
    
    .item-social {
        margin: 0 5px;
    }
    
    .item-social img {
        width: 40px;
        height: auto;
    }
    
    /* tracks */
    
    .tracks {
        width: 100%;
        margin: 0 auto;
    }
    
    .tracks-container {

        width: 100%;
        max-width: 100%;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        padding-bottom: 20px;
    }
    
    .track-item {
        width: 100%;
        max-width: 768px;
        display: flex;
        margin: 5px 0;
        border: 0px;
        height: fit-content;
    }
    
    .action-play {
        position: relative;
    }
    
    .btn-play {
        width: 40px;
        height: auto;
        position: absolute;
        cursor: pointer;
        left: 0;
        right: 0;
        margin: -1px 0px -10px 10px;
        z-index: 1;
    }
    
    .track-cover {
        width: 100px;
        min-width: 100px;
        height: fit-content;
    }
    
    .cover {
        max-width: 100%;
        min-width: 100%;
        width: 20%;
        height: auto;
        opacity: 0.8;
        z-index: 0;
    }
    
    .track-detalles {
        width: 60%;
        flex-grow: 1;
        padding: 0px 10px;
        height: 100px;
    }
    
    .track-title {
     margin: 0;
    }
    
    .track-name h1 {
        color: white;
        font-size: 0.5em;
        text-transform: capitalize;
    }
    
    .track-categorias {
        display: flex;
        flex-wrap: wrap;
        justify-content:flex-start;
        align-items: stretch;
        margin-top: 10px;
    }
    
    .categoria-item {
        background-color: #10e922;
        text-transform: uppercase;
        padding: 3px 6px;
        font-size: 9px;
        font-weight: bold;
        margin: 1px 2px 1px 0px;
    }
    
    .track-options {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        padding: 0;
        margin: 0 5px 0 0;
        width: 40%;
    }
    
    .share-card {
        border: 0px;
        background-color: #0ae3d0;
        font-weight: bold;
        text-transform: uppercase;
        padding: 5px;
        cursor: pointer;
        font-size: 11px;
        border-radius: 5px;
        margin: 5px 0;
    }
    
    .download-card {
        width: 100%;
        border: 0px;
        background-color: #e81281;
        font-weight: bold;
        text-transform: uppercase;
        padding: 5px;
        cursor: pointer;
        font-size: 11px;
        border-radius: 5px;
        margin: 5px 0;
        text-align: center;
    }

    .delimiter {
        border: 0;
        border-bottom: 1px solid #c3c3c3;
    }

    .enlace-artist {
        font-size: 11px;
      }

    /*Modal Contenido Youtube */
    .modal-contenido {
        margin: 7% auto; /* Coloca la modal en el centro de la pantalla */
        padding: 0px;
        max-width: 375px;
        width: 375px; /* Establece el ancho del contenido */
        height: auto;
    }

}