/* Streaming Links Styling */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.streaming-links p {
    margin-bottom: 0;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}


.streaming-link i {
    font-size: 1.4rem;
}

.streaming-link.spotify {
    color: white;
    background-color: #1DB954; /* fallback */
    background: linear-gradient(135deg, #1DB954 0%, #1AA34A 50%, #0E9B3A 100%);
}

.streaming-link.spotify:hover {
    color: white;
    background: linear-gradient(135deg, #0E9B3A 0%, #1AA34A 50%, #1DB954 100%);
}

.streaming-link.youtube {
    color: white;
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.streaming-link.youtube:hover {
    color: white;
    background: linear-gradient(135deg, #cc0000 0%, #FF0000 100%);
}

.streaming-link.other {
    color: white;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.streaming-link.other:hover {
    color: white;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .streaming-links {
        flex-direction: column;
    }
    
    .streaming-link {
        width: 100%;
        justify-content: center;
    }
}
