.radio-stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.radio-station-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.radio-station-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.radio-station-card.playing {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
}

.station-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.station-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-icon {
    font-size: 48px;
}

.station-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.station-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.play-station-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.play-station-btn:hover {
    background: #005177;
}

.radio-station-card.playing .play-station-btn {
    background: #46b450;
}

/* Sticky Player */
#radio-sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

#radio-sticky-player.radio-player-hidden {
    transform: translateY(100%);
}

.player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

.player-station-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.player-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.player-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-text {
    flex: 1;
    min-width: 0;
}

.player-station-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-song-info {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: slideIn 0.5s ease;
}

.player-status {
    font-size: 12px;
    opacity: 0.8;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 0.95;
        transform: translateX(0);
    }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.player-btn {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.05);
}

.player-btn:active {
    transform: scale(0.95);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 12px;
    border-radius: 20px;
}

.volume-icon {
    font-size: 18px;
}

.volume-slider {
    width: 100px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.volume-slider::-webkit-slider-track {
    background: rgba(255,255,255,0.3);
    height: 4px;
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin-top: -5px;
}

.volume-slider::-moz-range-track {
    background: rgba(255,255,255,0.3);
    height: 4px;
    border-radius: 2px;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
}

.volume-value {
    font-size: 12px;
    min-width: 35px;
    font-weight: 600;
}

.player-close-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.player-close-btn:hover {
    background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .player-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .player-station-info {
        width: 100%;
    }
    
    .player-controls {
        width: 100%;
        justify-content: center;
    }
    
    .radio-stations-grid {
        grid-template-columns: 1fr;
    }
    
    .volume-control {
        flex: 1;
    }
}