@import url("../../../styles/global.css");

main {
    max-width: unset;
    padding: unset;
    gap: 30px;

}

.banner > img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
}

.avatar-conteiner{
    width: 100%;
}


.avatar-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -100px;
    gap: 30px;
}

.avatar-info > img {
    width: 195px;
    height: 195px;
    border-radius: 100%;
}

.avatar-info > h3{
    font-family: var(--font-poppins);
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-normal);
}

.avatar-info > p{
    font-family: var(--font-poppins);
    font-size:var(--font-size-xl);
    line-height: var(--line-height-loose);

    text-align: center;
}

.random-tags{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 8px;
    flex-wrap: wrap;

}

.tags{
    display: flex;
    padding: 4px 10px 4px 10px;
    justify-content: center;

    border-radius: 100px;
    border: 1px solid var(--blueviolet-blueviolet);
    background: var(--blueviolet-blueviolet);

}
.tags > p{
    font-family: var(--font-abeezee);
    font-size: var(--font-size-base);
}

h2 {
    font-size: var(--font-size-5xl);
    font-family: var(--font-poppins);
    font-weight: 400;
    font-style: normal;
    padding: 0 30px;
}

.poster-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 30px;

}

.poster > img {
    border-radius: 5px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0);
    
}

.poster > img:hover {
    box-shadow: 0 0 2px 2px var(--blueviolet-800);
    transition: box-shadow 0.15s ease-in-out;
}

.poster > p {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;

    text-align: center;
    font-family: var(--font-poppins);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-loose);
    font-style: normal;
    margin-top: 10px;
}

.playlist-wrapper {
    display: flex;
    flex-direction: row;
    
    gap: 10px;
    margin-top: 30px;

}

.playlist-wrapper p {
    font-family: var(--font-poppins);
    font-size: var(--font-size-lg);

}

.playlist-wrapper img {
    width: 24px;
    height: 24px;

}

.playlist {
    width: 287px;
    height: 230px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 0 4px 20px 0 #0B0810;

    flex: 1;
}

.playlist1 {
    background: var(--pantie-blue-700);
    border: 1px solid var(--pantie-blue-700);

}
.playlist1:hover{
    box-shadow: 0 0 20px 5px var(--pantie-blue-700);
    transition: box-shadow 0.15s ease-in-out;
}

.playlist2 {
    background: var(--green-grass-700);
    border: 1px solid var(--green-grass-700);

}
.playlist2:hover{
    box-shadow: 0 0 20px 5px var(--green-grass-700);
    transition: box-shadow 0.15s ease-in-out;

}
.playlist3 {
    background: var(--clockwork-orange-700);
    border: 1px solid var(--clockwork-orange-700);

}
.playlist3:hover {
    box-shadow: 0 0 20px 5px var(--clockwork-orange-700);
    transition: box-shadow 0.15s ease-in-out;
}
   

.joguei-line {
    display: flex;
    font-family: var(--font-poppins);
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: var(--line-height-loose);
    font-style: normal;
    align-items: center;

    gap: 12px;

}

.add-more {
    display: flex;
    font-family: var(--font-poppins);
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: var(--line-height-loose);
    font-style: normal;
    align-items: center;

    gap: 12px;
}

.comments {
    width: 100%;
    display: flex;
    padding: 15px 30px;
    flex-direction: column;
    padding: 30px;
    gap: 15px;
    border-bottom: 1px solid var(--blueviolet-300);
    

    p {
        color: var(--grayscale-seasalt);

        /* Poppins Font/Poppins Regular/base */
        font-family: var(--font-poppins), sans-serif;
        font-size: var(--font-size-base);
        font-weight: var(--font-weight-regular);
        line-height: var(--line-height-loose);
    }
}

.comments-wrapper {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    padding: 0 20px;
}

.comments-wrapper .link {
    align-self: end;
}

.profile-comments {
    display: flex;
    align-items: center;
    padding: 0px 0px 15px 0px;
    gap: 12.17px;

    img {
        width: 45px;
        height: 45px;
        border-radius: 100%;
        object-fit: cover;
    }

    p {
        color: var(--neutrals-white);
        /* Poppins Font/Poppins Regular/2xl */
        font-family: var(--font-poppins), sans-serif;
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-regular);
        line-height: var(--line-height-loose);
    }
}

@media (max-width: 1200px) {
    .playlist-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 750px) {
    .left-sidebar {
        display: none;
    }
}

@media (max-width: 834px){
    .poster-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .avatar-info > img {
    width: 180px;
    height: 180px;
    }

}

@media (max-width: 393px){
    h2 {
        font-size: var(--font-size-4xl);
    }
    .avatar-info > img {
    width: 142px;
    height: 142px;
    }
    .avatar-info > h3 {
        font-size: var(--font-size-md);
    }
    .avatar-info > p {
        font-size: var(--font-size-base);
    }
    main > h2 {
        font-size: var(--font-size-4xl);
    }

}