/* Footer Dinleme Linkleri CSS */

.listening-links {
    margin-top: 20px;
}

.listening-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.listening-links ul li {
    margin-bottom: 12px;
}

.listening-links ul li a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.listening-links ul li a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.listening-links ul li a i {
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.listening-links ul li a span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Özel ikonlar için renkler */
.listening-links ul li a i.fa-bolt {
    color: #ffa500; /* Winamp turuncu */
}

.listening-links ul li a i.fa-play-circle {
    color: #0078d4; /* Media Player mavi */
}

.listening-links ul li a i.fa-headphones {
    color: #ff6600; /* VLC turuncu */
}

.listening-links ul li a i.fab.fa-itunes {
    color: #ff2d92; /* iTunes pembe */
}

.listening-links ul li a i.fa-volume-up {
    color: #0066cc; /* Real Player mavi */
}

.listening-links ul li a i.fa-shield-alt {
    color: #28a745; /* SSL yeşil */
}

/* Responsive */
@media (max-width: 768px) {
    .listening-links ul li a {
        padding: 8px 12px;
    }
    
    .listening-links ul li a i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .listening-links ul li a span {
        font-size: 13px;
    }
}

/* Hover efektleri */
.listening-links ul li a:hover i.fa-bolt {
    animation: pulse 1s infinite;
}

.listening-links ul li a:hover i.fa-play-circle {
    animation: bounce 0.6s ease;
}

.listening-links ul li a:hover i.fa-headphones {
    animation: shake 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
} 