.playlist-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 4rem;
    background: radial-gradient(
        ellipse 135% 135% at 20% 40%,
        #000000 0%,
        #000000 25%,
        #004080 55%,
        #0066cc 100%
    );
    color: #ffffff;
    text-align: center;
}

.playlist-page__back {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.playlist-page__back:hover {
    color: #45b6fe;
}

.playlist-page__cover {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.playlist-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.playlist-page__description {
    max-width: 560px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    font-weight: normal;
}

.playlist-page__platforms {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.playlist-page__platforms a {
    display: block;
    transition: transform 0.2s ease;
}

.playlist-page__platforms a:hover {
    transform: scale(1.1);
}

.playlist-page__platforms img {
    width: 56px;
    height: 56px;
}

.playlist-page__cta {
    color: #45b6fe;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
}

.playlist-page__cta:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .playlist-page h1 {
        font-size: 1.8rem;
    }

    .playlist-page__description {
        font-size: 1rem;
    }

    .playlist-page__back {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 0.85rem;
    }

    .playlist-page__cover {
        width: 130px;
        height: 130px;
    }
}
