.player {
    padding: 90px 0;
    backdrop-filter: blur(10%);
    position: relative;
    overflow: hidden;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle farthest-side, rgba(255, 0, 182, .15), hsla(0, 0%, 100%, 0));
        z-index: -1;
    }

}

.player__content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.player__texts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.player__subtitle {
    font-family: Now;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-wrap: pretty;
    font-size: clamp(2rem, (4vw), 3rem);
    opacity: .9;

    & span {
        color: var(--color-six);
        letter-spacing: 1.5px;
    }
}

.player__description {
    font-size: 1.3rem;
    line-height: 1.5;
    text-wrap: balance;
    margin-bottom: 1rem;
    color: #fff;
    opacity: .7;
}

.player__cta {
    max-width: 350px;
}

.player__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.player__item_num {
    display: none;
}

.player__list_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.player__item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0px;
    border-bottom: 1px solid rgba(79, 47, 192, 0.3);
}

.player__item:first-child {
    border-top: 1px solid rgba(79, 47, 192, 0.3);
}

.player__item_conteint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.player__item_num {
    font-size: 2rem;
}

.player__item_img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

.player__item_img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: blanchedalmond;
}

.player__item_title {
    font-size: 1rem;
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.player__item_title h4 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto';
}

.player__item_title p {
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    opacity: .7;
}

.player__item_btn-play button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(79, 47, 192, 0.5);
    cursor: pointer;
}

/* RESPONSIVE */
@media (width > 768px) {

    .player__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 4rem;
        padding-top: 4rem;
    }

    .player__texts {
        width: 50%;
        margin-bottom: 0;
    }

    .player__list {
        width: 40%;
    }

    .player__item_num {
        display: block;
    }

    .player__item_title {
        width: 90%;
    }

}


@media (width > 1200px) {

    .player {
        
        &::after {
            content: "";
            top: 15%;
            right: -10%;
            z-index: -1;
            width: 600px;
            height: 90%;
            position: absolute;
            background-image: radial-gradient(circle farthest-side, rgba(255, 0, 182, .15), hsla(0, 0%, 100%, 0));
        }

        &::before {
            top: 15%;
            left: -10%;
            width: 600px;
            height: 90%;
        }

    }
}