.gptv-music-library {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e1b4b, #3b0764);
    color: #fff;
}
.gptv-music-library h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    text-align: center;
}
.gptv-music-library p {
    text-align: center;
    color: #e0b1cb;
    margin-bottom: 20px;
}
.gptv-category-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 20px;
}
.gptv-filter {
    background: #6b21a8;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
}
.gptv-filter.active, .gptv-filter:hover {
    background: #c084fc;
    transform: scale(1.05);
}
.gptv-track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.gptv-track-card {
    background: #2e1065;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}
.gptv-track-card:hover {
    transform: scale(1.03);
}
.gptv-track-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    background-color: #1e1b4b; /* Match card background or set to #000 */
    border-radius: 8px;
}


.gptv-premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #9333ea;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 1.2em;
}
.gptv-track-card h3 {
    font-size: 1.2em;
    margin: 10px 0;
}
.gptv-artist {
    font-size: 0.9em;
    color: #d8b4fe;
}
.gptv-audio-player {
    display: none;
}
.gptv-play-button, .gptv-action-button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}
.gptv-play-button {
    background: #4f46e5;
    color: #fff;
}
.gptv-play-button:hover {
    background: #7e22ce;
}
.gptv-action-button {
    background: #e11d48;
    color: #fff;
}
.gptv-action-button:hover {
    background: #be123c;
}
@media (max-width: 600px) {
    .gptv-track-grid {
        grid-template-columns: 1fr;
    }
    .gptv-category-filters {
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
}